Skip to content

Commit ce8bb7c

Browse files
authored
Merge pull request #77 from yozik04/py_3.14
Test with Python 3.13 and 3.14
2 parents e66eadf + e06027b commit ce8bb7c

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
- "3.10"
2525
- "3.11"
2626
- "3.12"
27+
- "3.13"
28+
- "3.14"
2729

2830
steps:
2931
- uses: actions/checkout@v5

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["setuptools>=46.4.0"]
33
build-backend = "setuptools.build_meta"
44

55
[tool.black]
6-
target-version = ["py39", "py310", "py311", "py312"]
6+
target-version = ["py39", "py310", "py311", "py312", "py313", "py314"]
77
exclude = 'generated'
88

99
[tool.isort]

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ classifiers =
2121
Programming Language :: Python :: 3.10
2222
Programming Language :: Python :: 3.11
2323
Programming Language :: Python :: 3.12
24+
Programming Language :: Python :: 3.13
25+
Programming Language :: Python :: 3.14
2426
license = LGPL 3
2527

2628
[options]

tox.ini

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

0 commit comments

Comments
 (0)