diff --git a/.github/workflows/install-git-url.yml b/.github/workflows/install-git-url.yml index 5d7918a..694e4b0 100644 --- a/.github/workflows/install-git-url.yml +++ b/.github/workflows/install-git-url.yml @@ -32,6 +32,7 @@ jobs: - '3.10' - '3.11' - '3.12' + - '3.13' - 'pypy-3.8' - 'pypy-3.9' - 'pypy-3.10' diff --git a/.github/workflows/install-zip-url.yml b/.github/workflows/install-zip-url.yml index b4a80fa..536e4a4 100644 --- a/.github/workflows/install-zip-url.yml +++ b/.github/workflows/install-zip-url.yml @@ -32,6 +32,7 @@ jobs: - '3.10' - '3.11' - '3.12' + - '3.13' - 'pypy-3.8' - 'pypy-3.9' - 'pypy-3.10' diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7c263b5..6614b1f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,6 +28,7 @@ jobs: - '3.10' - '3.11' - '3.12' + - '3.13' - 'pypy-3.8' - 'pypy-3.9' - 'pypy-3.10' diff --git a/CHANGELOG.md b/CHANGELOG.md index e1a7efe..1bb9431 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +v3.2.0 (in development) +----------------------- +- Support Python 3.13 + v3.1.2 (2024-07-20) ------------------- - Drop support for Python 3.7 diff --git a/docs/changelog.rst b/docs/changelog.rst index 6969d36..4ed9bec 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -3,6 +3,11 @@ Changelog ========= +v3.2.0 (in development) +----------------------- +- Support Python 3.13 + + v3.1.2 (2024-07-20) ------------------- - Drop support for Python 3.7 diff --git a/pyproject.toml b/pyproject.toml index fb46e97..70b5ef9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,6 +31,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "License :: OSI Approved :: MIT License", diff --git a/src/versioningit/__init__.py b/src/versioningit/__init__.py index d92f0dc..6499e60 100644 --- a/src/versioningit/__init__.py +++ b/src/versioningit/__init__.py @@ -43,7 +43,7 @@ for more information. """ -__version__ = "3.1.2" +__version__ = "3.2.0.dev1" __author__ = "John Thorvald Wodder II" __author_email__ = "versioningit@varonathe.org" __license__ = "MIT" diff --git a/tox.ini b/tox.ini index 414e19f..53ae9d3 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = lint,typing,py38,py39,py310,py311,py312,pypy3,py-oldsetup +envlist = lint,typing,py38,py39,py310,py311,py312,py313,pypy3,py-oldsetup skip_missing_interpreters = True isolated_build = True minversion = 3.3.0