Skip to content

Commit 20c94e8

Browse files
committed
Fix skipping build testenv on PyPy 3.6 and 3.7
1 parent e257abe commit 20c94e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

repo_helper/files/ci_cd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ def get_gh_actions_matrix(self) -> Dict[str, Tuple[str, Optional[str], bool]]:
207207
else:
208208
envs = [tox_py_version]
209209

210-
if not (py_version in {"3.6", "pypy3.6", "3.7", "pypy3.7"} and config["use_flit"]):
210+
if not (py_version in {"3.6", "pypy36", "3.7", "pypy37"} and config["use_flit"]):
211211
envs.append("build")
212212

213213
output[str(gh_py_version)] = (','.join(envs), None, metadata["experimental"])

0 commit comments

Comments
 (0)