Skip to content

Commit 57067a3

Browse files
mrijkMaurits Rijk
andauthored
Python 3.14 support (#50)
* Python 3.14 support * Declare stable --------- Co-authored-by: Maurits Rijk <maurits.rijk@surf.nl>
1 parent 47de9c1 commit 57067a3

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.10.3
2+
current_version = 1.10.4
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?

.github/workflows/test-package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: ["3.11", "3.12", "3.13"]
16+
python-version: ["3.11", "3.12", "3.13", "3.14"]
1717
fail-fast: false
1818

1919
steps:

nwastdlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#
1414
"""The NWA-stdlib module."""
1515

16-
__version__ = "1.10.3"
16+
__version__ = "1.10.4"
1717

1818
from nwastdlib.f import const, identity
1919

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,13 @@ classifiers = [
1919
"Topic :: Software Development :: Libraries",
2020
"Topic :: Software Development",
2121
"Typing :: Typed",
22-
"Development Status :: 3 - Alpha",
22+
"Development Status :: 5 - Production/Stable",
2323
"Environment :: Web Environment",
2424
"Intended Audience :: Developers",
2525
"Intended Audience :: Telecommunications Industry",
2626
"License :: OSI Approved :: Apache Software License",
2727
"Programming Language :: Python :: 3 :: Only",
28+
"Programming Language :: Python :: 3.14",
2829
"Programming Language :: Python :: 3.13",
2930
"Programming Language :: Python :: 3.12",
3031
"Programming Language :: Python :: 3.11",
@@ -39,7 +40,7 @@ requires = [
3940
"structlog>=22.1.0",
4041
]
4142
description-file = "README.md"
42-
requires-python = ">=3.11,<3.14"
43+
requires-python = ">=3.11,<3.15"
4344

4445
[tool.flit.metadata.urls]
4546
Documentation = "https://workfloworchestrator.org/"

0 commit comments

Comments
 (0)