Skip to content

Commit e4d51bf

Browse files
Copilotjohnthagen
andcommitted
Add Python 3.14 support and update default to 3.13
Co-authored-by: johnthagen <10340167+johnthagen@users.noreply.github.com>
1 parent a85cc3b commit e4d51bf

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-24.04
1111
strategy:
1212
matrix:
13-
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
13+
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13", "3.14" ]
1414
steps:
1515
- name: Checkout code
1616
uses: actions/checkout@v4

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.12
1+
3.13

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88

99
@session(
10-
python=["3.9", "3.10", "3.11", "3.12", "3.13"],
10+
python=["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"],
1111
uv_groups=["test"],
1212
)
1313
def test(s: Session) -> None:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ classifiers = [
1818
"Programming Language :: Python :: 3.11",
1919
"Programming Language :: Python :: 3.12",
2020
"Programming Language :: Python :: 3.13",
21+
"Programming Language :: Python :: 3.14",
2122
"Typing :: Typed",
2223
# Include this classifier to prevent accidentally publishing private code to PyPI.
2324
# https://pypi.org/classifiers/

0 commit comments

Comments
 (0)