Skip to content

Commit 6c27124

Browse files
authored
Declare Python 3.14 support (#23)
1 parent 3ba1457 commit 6c27124

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.github/workflows/linting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
workflow_dispatch:
1010

1111
env:
12-
DEFAULT_PYTHON: "3.13"
12+
DEFAULT_PYTHON: "3.14"
1313

1414
jobs:
1515
ruff:

.github/workflows/release.yml

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

99
env:
10-
DEFAULT_PYTHON: "3.13"
10+
DEFAULT_PYTHON: "3.14"
1111

1212
jobs:
1313
build-release:

.github/workflows/testing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ on:
99
workflow_dispatch:
1010

1111
env:
12-
DEFAULT_PYTHON: "3.13"
12+
DEFAULT_PYTHON: "3.14"
1313

1414
jobs:
1515
pytest:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python: ["3.12", "3.13"]
19+
python: ["3.12", "3.13", "3.14"]
2020
steps:
2121
- name: Check out code
2222
uses: actions/checkout@v4

.github/workflows/typing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
workflow_dispatch:
1010

1111
env:
12-
DEFAULT_PYTHON: "3.13"
12+
DEFAULT_PYTHON: "3.14"
1313

1414
jobs:
1515
mypy:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ classifiers = [
1313
"Natural Language :: English",
1414
"Programming Language :: Python :: 3.12",
1515
"Programming Language :: Python :: 3.13",
16+
"Programming Language :: Python :: 3.14",
1617
"Programming Language :: Python :: 3",
1718
]
1819

0 commit comments

Comments
 (0)