Skip to content

Commit

Permalink
Add Python 3.12 to test matrix (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
jezdez authored Feb 7, 2024
1 parent 732c9b2 commit 5de425d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/canary-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 5de425d

Please sign in to comment.