From 5de425d5682452f1dce2e79d8b18773b6bb72761 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Wed, 7 Feb 2024 09:10:00 -0600 Subject: [PATCH] Add Python 3.12 to test matrix (#134) --- .github/workflows/canary-weekly.yml | 2 +- .github/workflows/tests.yml | 2 +- noxfile.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/canary-weekly.yml b/.github/workflows/canary-weekly.yml index 3c06b7b..289d460 100644 --- a/.github/workflows/canary-weekly.yml +++ b/.github/workflows/canary-weekly.yml @@ -35,7 +35,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.10", "3.11"] + python-version: ["3.10", "3.11", "3.12"] steps: - name: Checkout repository diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 26d99ab..c54c27e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -30,7 +30,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.9', '3.10'] + python-version: ['3.9', '3.10', '3.11', '3.12'] steps: - name: Checkout repository diff --git a/noxfile.py b/noxfile.py index 8473fe3..6ea68e3 100644 --- a/noxfile.py +++ b/noxfile.py @@ -4,7 +4,7 @@ @nox.session(venv_backend="conda") @nox.parametrize( "python", - [(python) for python in ("3.7", "3.8", "3.9", "3.10")], + [(python) for python in ("3.9", "3.10", "3.11", "3.12")], ) def tests(session): session.conda_install("conda", "conda-build")