Skip to content

Commit

Permalink
Add support for pypy3.7 in py_versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Feb 17, 2021
1 parent 899f5b2 commit 166b516
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions repo_helper/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -482,6 +482,14 @@ def set_gh_actions_versions(py_versions: Iterable[str]) -> List[str]:
py_versions[py_versions.index("3.10")] = "3.10.0-alpha.5"
if "pypy3" in py_versions:
py_versions[py_versions.index("pypy3")] = "pypy-3.6"
if "pypy36" in py_versions:
py_versions[py_versions.index("pypy36")] = "pypy-3.6"
if "pypy3.6" in py_versions:
py_versions[py_versions.index("pypy3.6")] = "pypy-3.6"
if "pypy37" in py_versions:
py_versions[py_versions.index("pypy37")] = "pypy-3.7"
if "pypy3.7" in py_versions:
py_versions[py_versions.index("pypy3.7")] = "pypy-3.7"
if "rustpython" in py_versions:
py_versions.remove("rustpython")

Expand Down

0 comments on commit 166b516

Please sign in to comment.