Skip to content

Commit 3561661

Browse files
committed
Add support for Python 3.13 and 3.14
1 parent cfac692 commit 3561661

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
fail-fast: false
3535
matrix:
3636
os: [ windows-latest, ubuntu-latest ]
37-
python: [ "3.8", "3.10", "3.11", "3.12", "pypy-3.11" ]
37+
python: [ "3.8", "3.10", "3.11", "3.12", "3.13", "3.14", "pypy-3.11" ]
3838

3939
steps:
4040
- uses: actions/checkout@v5

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ repos:
33
rev: v2.4.1
44
hooks:
55
- id: codespell
6-
- repo: https://github.com/asottile/blacken-docs
6+
- repo: https://github.com/adamchainz/blacken-docs
77
rev: 1.20.0
88
hooks:
99
- id: blacken-docs
10-
additional_dependencies: [black==22.12.0]
10+
additional_dependencies: [black==25.11.0]
1111
- repo: https://github.com/pre-commit/pre-commit-hooks
1212
rev: v6.0.0
1313
hooks:

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ classifiers = [
2727
"Programming Language :: Python :: 3.10",
2828
"Programming Language :: Python :: 3.11",
2929
"Programming Language :: Python :: 3.12",
30+
"Programming Language :: Python :: 3.13",
31+
"Programming Language :: Python :: 3.14",
3032
"Programming Language :: Python :: Implementation :: CPython",
3133
"Programming Language :: Python :: Implementation :: PyPy",
3234
"Topic :: Software Development :: Libraries",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist=py{38,39,310,311,312,pypy311},docs,linting
2+
envlist=py{38,39,310,311,312,313,314,py311},docs,linting
33
isolated_build = true
44

55
[testenv]

0 commit comments

Comments
 (0)