diff options
| author | Henry Schreiner <HenrySchreinerIII@gmail.com> | 2021-10-07 18:22:38 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-08 01:22:38 +0300 |
| commit | 0acd203cd896afec7f715aa2ff5980a403459a3b (patch) | |
| tree | 70d9075ca0be40e710c77d813ea510dbec199bc9 | |
| parent | 7ab18e4eb9ab30f60a82fad33357be666ca26637 (diff) | |
| download | wheel-git-0acd203cd896afec7f715aa2ff5980a403459a3b.tar.gz | |
CI: Fixed PyPY and used Python 3.10.0 (#423)
| -rw-r--r-- | .github/workflows/codeqa-test.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/codeqa-test.yml b/.github/workflows/codeqa-test.yml index 5973142..924659e 100644 --- a/.github/workflows/codeqa-test.yml +++ b/.github/workflows/codeqa-test.yml @@ -21,16 +21,16 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-10.15, macos-11, windows-latest] - python-version: ["2.7", "3.6", "3.9", "3.10-dev", pypy2, pypy3] + python-version: ["2.7", "3.6", "3.9", "3.10", "pypy-2.7", "pypy-3.7"] exclude: - os: macos-11 - python-version: pypy2 + python-version: pypy-2.7 - os: windows-latest - python-version: 2.7 + python-version: "2.7" - os: windows-latest - python-version: pypy2 + python-version: pypy-2.7 - os: windows-latest - python-version: pypy3 + python-version: pypy-3.7 runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 |
