Skip to content

Commit 2a36194

Browse files
committed
python: support Python 3.14
Fedora Rawhide has it. Also add 3.13 to the CI testing matrix.
1 parent df65456 commit 2a36194

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ["3.9", "3.10", "3.11", "3.12"]
19+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
2020
tox-test: ["default"]
2121

2222
steps:

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)