Skip to content

Commit de7043e

Browse files
authored
Merge pull request #11 from thombashi/add-py314
Add support for Python 3.14
2 parents 8d4fad5 + 998a550 commit de7043e

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/lint_and_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
fail-fast: false
8787
matrix:
8888
python-version:
89-
["3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.10"]
89+
["3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "pypy3.10"]
9090
os: [ubuntu-latest, macos-latest, windows-latest]
9191
timeout-minutes: 20
9292

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ exclude = '''
2626
| docs/conf.py
2727
'''
2828
line-length = 100
29-
target-version = ['py39', 'py310', 'py311', 'py312']
29+
target-version = ['py39', 'py310', 'py311', 'py312', 'py313', 'py314']
3030

3131
[tool.isort]
3232
include_trailing_comma = true

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ def get_release_command_class() -> dict[str, type[setuptools.Command]]:
8585
"Programming Language :: Python :: 3.11",
8686
"Programming Language :: Python :: 3.12",
8787
"Programming Language :: Python :: 3.13",
88+
"Programming Language :: Python :: 3.14",
8889
"Programming Language :: Python :: 3 :: Only",
8990
"Programming Language :: Python :: Implementation :: CPython",
9091
"Programming Language :: Python :: Implementation :: PyPy",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{39,310,311,312,313}
3+
py{39,310,311,312,313,314}
44
pypy3
55
build
66
cov

0 commit comments

Comments
 (0)