Skip to content

Commit 322b376

Browse files
committed
Support new GitHub Actions syntax for pypy.
1 parent 2fd6ff8 commit 322b376

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

repo_helper/utils.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -468,5 +468,8 @@ def set_gh_actions_versions(py_versions: Iterable[str]) -> List[str]:
468468
if "3.10" in py_versions:
469469
py_versions.remove("3.10")
470470
py_versions.append("3.10.0-alpha.3")
471+
if "pypy3" in py_versions:
472+
py_versions.remove("pypy3")
473+
py_versions.append("pypy-3.6")
471474

472475
return py_versions

0 commit comments

Comments
 (0)