summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Socol <me@jamessocol.com>2022-11-05 16:39:06 -0400
committerJames Socol <me@jamessocol.com>2022-11-05 16:52:36 -0400
commit8ce382b93c21a1d8bc1ea15f7a100c2039ff8550 (patch)
tree0fe8100f02977ab5a448a5489dca7104d9ed883d
parent7eee2152e0575cc70ebaad9bc201f38c4a2879bd (diff)
downloadpystatsd-8ce382b93c21a1d8bc1ea15f7a100c2039ff8550.tar.gz
Have actions test on Python 3.10 and 3.11
These tests will fail for now, but will get me set up to fix the issues.
-rw-r--r--.github/workflows/ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 6fd6ea6..084bd1f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -9,7 +9,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest] # [macos-latest, ubuntu-latest, windows-latest]
- python: ['3.7', '3.8', '3.9', 'pypy-3.9'] # Nose fails on Python 3.10+
+ python: ['3.7', '3.8', '3.9', '3.10', '3.11', 'pypy-3.9'] # Nose fails on Python 3.10+
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3