Skip to content

Commit 5735393

Browse files
authored
Test Python 3.14 in CI (#302)
1 parent d5f513b commit 5735393

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ["3.10", "3.11", "3.12", "3.13"]
19+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2020

2121
name: Python ${{ matrix.python-version}}
2222
steps:

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
PROJECT_ROOT = Path(__file__).parent
88

99

10-
@nox.session(python=["3.10", "3.11", "3.12", "3.13"])
10+
@nox.session(python=["3.10", "3.11", "3.12", "3.13", "3.14"])
1111
def tests(session: Session) -> None:
1212
session.install(".[test]")
1313
venvroot = Path(session.bin).parent

0 commit comments

Comments
 (0)