From 83d81471f275cefcad2ee8cd59568a3ff44c19cc Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Thu, 7 Oct 2021 18:05:48 -0400 Subject: [PATCH] ci: fix pypy & use Python 3.10.0 --- .github/workflows/codeqa-test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/codeqa-test.yml b/.github/workflows/codeqa-test.yml index 59731424..924659e3 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