Skip to content

Commit

Permalink
Revert "chore: skip PyPy 3.7 7.3.8 updates" (#1037)
Browse files Browse the repository at this point in the history
This reverts commit a0341ab.
  • Loading branch information
mayeut authored Apr 2, 2022
1 parent 7d097cb commit dc10f1a
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions bin/update_pythons.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,7 @@ 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"
and f'{r["python_version"]}-{r["pypy_version"]}' != "3.7.12-7.3.8"
]
releases = [r for r in response.json() if r["pypy_version"] != "nightly"]
for release in releases:
release["pypy_version"] = Version(release["pypy_version"])
release["python_version"] = Version(release["python_version"])
Expand Down

0 comments on commit dc10f1a

Please sign in to comment.