Skip to content

Commit 25b7240

Browse files
committed
Add Python 3.14 support.
1 parent 28f9cd5 commit 25b7240

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
fail-fast: false
3434
matrix:
3535
os: [ubuntu-latest, windows-latest, macos-latest]
36-
python-version: ["3.10", "3.11", "3.12", "3.13"]
36+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
3737

3838
steps:
3939
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ classifiers = [
4040
"Programming Language :: Python :: 3.11",
4141
"Programming Language :: Python :: 3.12",
4242
"Programming Language :: Python :: 3.13",
43+
"Programming Language :: Python :: 3.14",
4344
"License :: OSI Approved :: BSD License",
4445
"Intended Audience :: Science/Research",
4546
"Topic :: Scientific/Engineering",
@@ -105,10 +106,10 @@ dependencies = [
105106
name.echo.features = ["echo"]
106107

107108
[[tool.hatch.envs.hatch-test.matrix]]
108-
python = ["3.10", "3.11", "3.12", "3.13"]
109+
python = ["3.10", "3.11", "3.12", "3.13", "3.14"]
109110

110111
[[tool.hatch.envs.hatch-test.matrix]]
111-
python = ["3.10", "3.11", "3.12", "3.13"]
112+
python = ["3.10", "3.11", "3.12", "3.13", "3.14"]
112113
feature = ["echo"]
113114

114115
[tool.ruff]

0 commit comments

Comments
 (0)