diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-12-14 08:25:20 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-12-14 08:25:20 -0500 |
commit | f3238eea7e403d13a217b30579b1a1c2cbff62e3 (patch) | |
tree | ef2f248ce4cefa434c26b62fe540597ee6a90108 /.github | |
parent | dff1ff4751e8b272457e5aba7934f69394c3382b (diff) | |
download | python-coveragepy-git-nedbat/pypy37.tar.gz |
build: need to use pypy-3.7 instead of pypy3 on GHAnedbat/pypy37
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/testsuite.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml index 50b7e320..1fd6df4c 100644 --- a/.github/workflows/testsuite.yml +++ b/.github/workflows/testsuite.yml @@ -39,11 +39,11 @@ jobs: - "3.9" - "3.10" - "3.11.0-alpha.2" - - "pypy3" + - "pypy-3.7" exclude: # Windows PyPy doesn't seem to work? - os: windows-latest - python-version: "pypy3" + python-version: "pypy-3.7" fail-fast: false steps: |