summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBert JW Regeer <bertjw@regeer.org>2022-01-16 21:44:26 -0700
committerBert JW Regeer <bertjw@regeer.org>2022-01-16 21:59:45 -0700
commit6eacb791ae36cffd6b8ff4e55d68c6c78e34c806 (patch)
tree01d3083c240a4956819f7361901caea56eacb89d
parent17ae760ad7359725b572439747c0efcc5cb0abc0 (diff)
downloadwaitress-6eacb791ae36cffd6b8ff4e55d68c6c78e34c806.tar.gz
Update test matrix for Python versions
-rw-r--r--.github/workflows/ci-tests.yml10
1 files changed, 4 insertions, 6 deletions
diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml
index 108a543..f28f6ca 100644
--- a/.github/workflows/ci-tests.yml
+++ b/.github/workflows/ci-tests.yml
@@ -15,11 +15,13 @@ jobs:
strategy:
matrix:
py:
- - "3.6"
- "3.7"
- "3.8"
- "3.9"
- - "pypy3"
+ - "3.10"
+ - "pypy-3.8"
+ # Pre-release
+ - "3.11.0-alpha - 3.11.0"
os:
- "ubuntu-latest"
- "windows-latest"
@@ -27,16 +29,12 @@ jobs:
architecture:
- x64
- x86
-
exclude:
# Linux and macOS don't have x86 python
- os: "ubuntu-latest"
architecture: x86
- os: "macos-latest"
architecture: x86
- # Building on PyPy3 on Windows is broken
- - os: "windows-latest"
- py: "pypy3"
name: "Python: ${{ matrix.py }}-${{ matrix.architecture }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}