Skip to content

Commit c90328b

Browse files
committed
Add support for Python 3.13
1 parent 82012b0 commit c90328b

File tree

5 files changed

+8
-2
lines changed

5 files changed

+8
-2
lines changed

.github/workflows/test.yml

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
- '3.10'
2424
- '3.11'
2525
- '3.12'
26+
- '3.13'
2627
- 'pypy-3.9'
2728
- 'pypy-3.10'
2829
toxenv: [py]

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v0.8.0 (in development)
2+
-----------------------
3+
- Support Python 3.13
4+
15
v0.7.2 (2024-07-11)
26
-------------------
37
- Fix crash when `$MAIL` is set but file is empty

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ classifiers = [
2929
"Programming Language :: Python :: 3.10",
3030
"Programming Language :: Python :: 3.11",
3131
"Programming Language :: Python :: 3.12",
32+
"Programming Language :: Python :: 3.13",
3233
"Programming Language :: Python :: Implementation :: CPython",
3334
"Programming Language :: Python :: Implementation :: PyPy",
3435
"License :: OSI Approved :: MIT License",

src/jwodder_ps1/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
Visit <https://github.com/jwodder/ps1.py> for more information.
2020
"""
2121

22-
__version__ = "0.7.2"
22+
__version__ = "0.8.0.dev1"
2323
__author__ = "John Thorvald Wodder II"
2424
__author_email__ = "[email protected]"
2525
__license__ = "MIT"

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = lint,typing,py39,py310,py311,py312,pypy3
2+
envlist = lint,typing,py39,py310,py311,py312,py313,pypy3
33
skip_missing_interpreters = True
44
isolated_build = True
55
minversion = 3.3.0

0 commit comments

Comments
 (0)