Skip to content

Commit a55bba7

Browse files
committed
Add Python 3.13 support.
1 parent 018bffc commit a55bba7

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/test-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
platform: [ubuntu-latest, macos-latest, windows-latest]
18-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.8', 'pypy-3.9']
18+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', pypy-3.8', 'pypy-3.9']
1919

2020
steps:
2121

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ classifiers = [
3939
"Programming Language :: Python :: 3.10",
4040
"Programming Language :: Python :: 3.11",
4141
"Programming Language :: Python :: 3.12",
42+
"Programming Language :: Python :: 3.13",
4243
"Programming Language :: Python :: Implementation :: PyPy",
4344
"Topic :: Desktop Environment :: File Managers",
4445
"Topic :: Software Development :: Build Tools",

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{38,39,310,311,312},
3+
py{38,39,310,311,312,313},
44

55
[testenv]
66
basepython =
@@ -9,6 +9,7 @@ basepython =
99
py310: python3.10
1010
py311: python3.11
1111
py312: python3.12
12+
py313: python3.13
1213

1314
passenv = CI,GITHUB_WORKFLOW
1415

0 commit comments

Comments
 (0)