From 6e3ac120f9081c497c4fb25559ea35ffa51c96ac Mon Sep 17 00:00:00 2001 From: Jordan Cook Date: Wed, 8 Nov 2023 13:00:07 -0600 Subject: [PATCH] Add tests for python 3.12 --- .github/workflows/build.yml | 2 +- noxfile.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 506229da..ba8db257 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v4 diff --git a/noxfile.py b/noxfile.py index a101574d..490f5f66 100644 --- a/noxfile.py +++ b/noxfile.py @@ -24,7 +24,7 @@ ] -@session(python=['3.7', '3.8', '3.9', '3.10']) +@session(python=['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']) def test(session): """Run tests for a specific python version""" test_paths = session.posargs or ['test']