Skip to content

Commit a0341ab

Browse files
committed
chore: skip PyPy 3.7 7.3.8 updates
1 parent e9fc333 commit a0341ab

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

bin/update_pythons.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,12 @@ def __init__(self, arch_str: ArchStr):
109109
response = requests.get("https://downloads.python.org/pypy/versions.json")
110110
response.raise_for_status()
111111

112-
releases = [r for r in response.json() if r["pypy_version"] != "nightly"]
112+
releases = [
113+
r
114+
for r in response.json()
115+
if r["pypy_version"] != "nightly"
116+
and f'{r["python_version"]}-{r["pypy_version"]}' != "3.7.12-7.3.8"
117+
]
113118
for release in releases:
114119
release["pypy_version"] = Version(release["pypy_version"])
115120
release["python_version"] = Version(release["python_version"])

0 commit comments

Comments
 (0)