summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2022-06-04 21:37:40 -0400
committerJason R. Coombs <jaraco@jaraco.com>2022-06-04 21:45:42 -0400
commit10bf1b1fb9e09e9836bea9e2edec620cd9eea7f9 (patch)
treeb64d5ed4b55c7578618b0667436219185a7af943
parent1a6b828304e7a8896b55d9ebf83f481ba7ebd568 (diff)
downloadcherrypy-git-10bf1b1fb9e09e9836bea9e2edec620cd9eea7f9.tar.gz
Add Python 3.11 into the matrix using workaround from actions/setup-python#213. Drop 3.9 from matrix for efficiency.
-rw-r--r--.github/workflows/main.yml8
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index b54fd6a1..6468ee0d 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -7,9 +7,11 @@ jobs:
strategy:
matrix:
python:
- - 3.7
- - 3.9
- - "3.10"
+ # Build on pre-releases until stable, then stable releases.
+ # actions/setup-python#213
+ - ~3.7.0-0
+ - ~3.10.0-0
+ - ~3.11.0-0
platform:
- ubuntu-latest
- macos-latest