Skip to content

Commit 0c0e849

Browse files
Merge pull request #198 from BEMServer/add_python_314
Add python 3.14 support
2 parents 193e197 + e5d1a7c commit 0c0e849

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.github/workflows/build-release.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
- {name: '3.11', python: '3.11', tox: py311}
1616
- {name: '3.12', python: '3.12', tox: py312}
1717
- {name: '3.13', python: '3.13', tox: py313}
18+
- {name: '3.14', python: '3.14', tox: py314}
1819
steps:
1920
- uses: actions/checkout@v4
2021
- uses: actions/setup-python@v5

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ classifiers = [
2121
"Programming Language :: Python :: 3.11",
2222
"Programming Language :: Python :: 3.12",
2323
"Programming Language :: Python :: 3.13",
24+
"Programming Language :: Python :: 3.14",
2425
]
2526
requires-python = ">=3.11"
2627
dependencies = [

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = lint,py311,py312,py313
2+
envlist = lint,py311,py312,py313,py314
33
skip_missing_interpreters = True
44

55
[testenv]

0 commit comments

Comments
 (0)