Skip to content

Commit ea11f86

Browse files
committed
python: support Python 3.14
Fedora Rawhide has it. CI doesn't test it because Github doesn't have 3.14 Python setup yet.
1 parent 641f94c commit ea11f86

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ may want to subscribe to `GitHub's tag feed
1212
unreleased
1313

1414
* CHANGE the ``pkg_resources`` library is no longer required.
15+
* NEW support python 3.14
1516

1617
0.13.0
1718
======

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@ classifiers = [
2020
"Programming Language :: Python :: 3.11",
2121
"Programming Language :: Python :: 3.12",
2222
"Programming Language :: Python :: 3.13",
23+
"Programming Language :: Python :: 3.14",
2324
"Topic :: Communications",
2425
"Topic :: Utilities",
2526
]
26-
requires-python = ">=3.9,<3.14"
27+
requires-python = ">=3.9,<3.15"
2728
dependencies = [
2829
"click>=3.2",
2930
"click_log>=0.2.0",

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ python =
2222
3.11: py311
2323
3.12: py312
2424
3.13: py313
25+
3.14: py314
2526

2627
[testenv:docs]
2728
allowlist_externals = make

0 commit comments

Comments
 (0)