diff options
| author | Bert JW Regeer <xistence@0x58.com> | 2022-02-05 20:01:24 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-05 20:01:24 -0700 |
| commit | 2efb1345e6a4a2d6beab374c98f9337f26f2fc3a (patch) | |
| tree | e85dd64335c958d5fa7200ecfc375d29c624f8de /.github/workflows/ci-tests.yml | |
| parent | 0b24ac16cc04746b25cf460f1497c157f6d3d6f4 (diff) | |
| parent | b492e302a5dfe471acb065a79f5b4ec7651f34d3 (diff) | |
| download | pyramid-2efb1345e6a4a2d6beab374c98f9337f26f2fc3a.tar.gz pyramid-2efb1345e6a4a2d6beab374c98f9337f26f2fc3a.tar.bz2 pyramid-2efb1345e6a4a2d6beab374c98f9337f26f2fc3a.zip | |
Merge pull request #3689 from ergo/master
Add support for Python 3.10
Diffstat (limited to '.github/workflows/ci-tests.yml')
| -rw-r--r-- | .github/workflows/ci-tests.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 625c6a60f..acae984af 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -15,11 +15,11 @@ jobs: strategy: matrix: py: - - "3.6" - "3.7" - "3.8" - "3.9" - - "pypy3" + - "3.10" + - "pypy-3.8" os: - "ubuntu-latest" - "windows-latest" @@ -33,7 +33,7 @@ jobs: - os: "ubuntu-latest" pytest-args: "--cov" - os: "ubuntu-latest" - py: "pypy3" + py: "pypy-3.8" pytest-args: "" exclude: @@ -44,7 +44,7 @@ jobs: architecture: x86 # PyPy3 on Windows doesn't seem to work - os: "windows-latest" - py: "pypy3" + py: "pypy-3.8" name: "Python: ${{ matrix.py }}-${{ matrix.architecture }} on ${{ matrix.os }}" runs-on: ${{ matrix.os }} |
