Skip to content

Commit a633bc7

Browse files
committed
Add support for Python 3.13
1 parent 189d892 commit a633bc7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/test.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: ["pypy3.10", "3.8", "3.9", "3.10", "3.11", "3.12"]
14+
python-version: ["pypy3.10", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1515
os: [macos-latest, ubuntu-latest]
1616

1717
steps:
@@ -24,7 +24,6 @@ jobs:
2424
allow-prereleases: true
2525
cache: pip
2626

27-
2827
- name: Install dependencies
2928
run: |
3029
python -m pip install -U pip

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ classifiers = [
2525
"Programming Language :: Python :: 3.10",
2626
"Programming Language :: Python :: 3.11",
2727
"Programming Language :: Python :: 3.12",
28+
"Programming Language :: Python :: 3.13",
2829
"Programming Language :: Python :: Implementation :: CPython",
2930
"Programming Language :: Python :: Implementation :: PyPy",
3031
"Topic :: Software Development :: Documentation",

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires =
33
tox>=4.2
44
env_list =
55
lint
6-
py{py3, 312, 311, 310, 39, 38}
6+
py{py3, 313, 312, 311, 310, 39, 38}
77

88
[testenv]
99
extras =
@@ -23,7 +23,7 @@ deps =
2323
pass_env =
2424
PRE_COMMIT_COLOR
2525
commands =
26-
pre-commit run --all-files
26+
pre-commit run --all-files --show-diff-on-failure
2727

2828
[testenv:py310]
2929
deps =

0 commit comments

Comments
 (0)