Skip to content

Commit

Permalink
chore: skip PyPy 3.7 7.3.8 updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut committed Feb 24, 2022
1 parent e9fc333 commit a0341ab
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion bin/update_pythons.py
Expand Up @@ -109,7 +109,12 @@ def __init__(self, arch_str: ArchStr):
response = requests.get("https://downloads.python.org/pypy/versions.json")
response.raise_for_status()

releases = [r for r in response.json() if r["pypy_version"] != "nightly"]
releases = [
r
for r in response.json()
if r["pypy_version"] != "nightly"
and f'{r["python_version"]}-{r["pypy_version"]}' != "3.7.12-7.3.8"
]
for release in releases:
release["pypy_version"] = Version(release["pypy_version"])
release["python_version"] = Version(release["python_version"])
Expand Down

0 comments on commit a0341ab

Please sign in to comment.