Skip to content

Commit dbc090a

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 a73cf32 commit dbc090a

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
@@ -13,6 +13,7 @@ unreleased
1313

1414
* CHANGE the ``pkg_resources`` library is no longer required.
1515
* FIX the location of caching database to ``$XDG_CACHE_HOME``
16+
* NEW support python 3.14
1617

1718
0.13.0
1819
======

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)