Skip to content

Commit 5b04139

Browse files
committed
Don't require Python 3.10 to pass on Windows.
1 parent 5f87558 commit 5b04139

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

repo_helper_github/__init__.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -542,10 +542,9 @@ def compile_required_checks(repo: RepoHelper) -> Iterator[str]:
542542
continue
543543

544544
for version in set_gh_actions_versions(py_versions):
545-
if version == "pypy-3.7":
546-
continue
547-
if version == "pypy-3.9":
548-
continue
545+
if platform == "Windows":
546+
if version in {"pypy-3.7", "pypy-3.9", "pypy-3.10"}:
547+
continue
549548

550549
with suppress(InvalidVersion):
551550
if Version(version).is_prerelease:

0 commit comments

Comments
 (0)