Skip to content

Commit 21fecef

Browse files
committed
Add support for Python 3.14
1 parent d9e4b11 commit 21fecef

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
- '3.11'
2828
- '3.12'
2929
- '3.13'
30+
- '3.14'
3031
steps:
3132
- uses: actions/checkout@main
3233
- uses: actions/setup-python@main

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import nox
22

33

4-
@nox.session(python=["3.9", "3.10", "3.11", "3.12", "3.13"])
4+
@nox.session(python=["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"])
55
def tests(session):
66
session.run("python", "-m", "unittest")

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ classifiers =
1616
Programming Language :: Python :: 3.11
1717
Programming Language :: Python :: 3.12
1818
Programming Language :: Python :: 3.13
19+
Programming Language :: Python :: 3.14
1920
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
2021
Operating System :: OS Independent
2122
python_requires = '>=3.9'

0 commit comments

Comments
 (0)