Skip to content

Commit d5aa452

Browse files
committed
Test against Python 3.14
1 parent 66a32ce commit d5aa452

File tree

6 files changed

+13
-2
lines changed

6 files changed

+13
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
- '3.11'
3030
- '3.12'
3131
- '3.13'
32+
- '3.14'
3233
- 'pypy-3.8'
3334
- 'pypy-3.9'
3435
- 'pypy-3.10'

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v3.4.0 (in development)
2+
-----------------------
3+
- Support Python 3.14
4+
15
v3.3.0 (2025-06-27)
26
-------------------
37
- Added `{normalized_version}` to the fields available to the `write` and

docs/changelog.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
Changelog
44
=========
55

6+
v3.4.0 (in development)
7+
-----------------------
8+
- Support Python 3.14
9+
10+
611
v3.3.0 (2025-06-27)
712
-------------------
813
- Added ``{normalized_version}`` to the fields available to the ``write`` and

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ classifiers = [
3232
"Programming Language :: Python :: 3.11",
3333
"Programming Language :: Python :: 3.12",
3434
"Programming Language :: Python :: 3.13",
35+
"Programming Language :: Python :: 3.14",
3536
"Programming Language :: Python :: Implementation :: CPython",
3637
"Programming Language :: Python :: Implementation :: PyPy",
3738
"Framework :: Hatch",

src/versioningit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<https://versioningit.rtfd.io> for more information.
4545
"""
4646

47-
__version__ = "3.3.0"
47+
__version__ = "3.4.0.dev1"
4848
__author__ = "John Thorvald Wodder II"
4949
__author_email__ = "[email protected]"
5050
__license__ = "MIT"

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = lint,typing,py38,py39,py310,py311,py312,py313,pypy3,py-oldsetup
2+
envlist = lint,typing,py38,py39,py310,py311,py312,py313,py314,pypy3,py-oldsetup
33
skip_missing_interpreters = True
44
isolated_build = True
55
minversion = 3.3.0

0 commit comments

Comments
 (0)