Skip to content

Commit 166b516

Browse files
committed
Add support for pypy3.7 in py_versions.
1 parent 899f5b2 commit 166b516

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

repo_helper/utils.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -482,6 +482,14 @@ def set_gh_actions_versions(py_versions: Iterable[str]) -> List[str]:
482482
py_versions[py_versions.index("3.10")] = "3.10.0-alpha.5"
483483
if "pypy3" in py_versions:
484484
py_versions[py_versions.index("pypy3")] = "pypy-3.6"
485+
if "pypy36" in py_versions:
486+
py_versions[py_versions.index("pypy36")] = "pypy-3.6"
487+
if "pypy3.6" in py_versions:
488+
py_versions[py_versions.index("pypy3.6")] = "pypy-3.6"
489+
if "pypy37" in py_versions:
490+
py_versions[py_versions.index("pypy37")] = "pypy-3.7"
491+
if "pypy3.7" in py_versions:
492+
py_versions[py_versions.index("pypy3.7")] = "pypy-3.7"
485493
if "rustpython" in py_versions:
486494
py_versions.remove("rustpython")
487495

0 commit comments

Comments
 (0)