Skip to content

Commit 0b0351f

Browse files
committed
Add support for Python 3.13
1 parent b94aac6 commit 0b0351f

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
@@ -28,6 +28,7 @@ jobs:
2828
- '3.10'
2929
- '3.11'
3030
- '3.12'
31+
- '3.13'
3132
- 'pypy-3.8'
3233
- 'pypy-3.9'
3334
- '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.2.0 (in development)
2+
-----------------------
3+
- Support Python 3.13
4+
15
v3.1.2 (2024-07-20)
26
-------------------
37
- Drop support for Python 3.7

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.2.0 (in development)
7+
-----------------------
8+
- Support Python 3.13
9+
10+
611
v3.1.2 (2024-07-20)
712
-------------------
813
- Drop support for Python 3.7

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ classifiers = [
3131
"Programming Language :: Python :: 3.10",
3232
"Programming Language :: Python :: 3.11",
3333
"Programming Language :: Python :: 3.12",
34+
"Programming Language :: Python :: 3.13",
3435
"Programming Language :: Python :: Implementation :: CPython",
3536
"Programming Language :: Python :: Implementation :: PyPy",
3637
"License :: OSI Approved :: MIT License",

src/versioningit/__init__.py

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

46-
__version__ = "3.1.2"
46+
__version__ = "3.2.0.dev1"
4747
__author__ = "John Thorvald Wodder II"
4848
__author_email__ = "versioningit@varonathe.org"
4949
__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,pypy3,py-oldsetup
2+
envlist = lint,typing,py38,py39,py310,py311,py312,pypy3,py-oldsetup,py313
33
skip_missing_interpreters = True
44
isolated_build = True
55
minversion = 3.3.0

0 commit comments

Comments
 (0)