Skip to content

Commit fb9e8d9

Browse files
committed
Add Python 3.14 support.
1 parent c959bb8 commit fb9e8d9

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
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
platform: [ubuntu-latest, macos-latest, windows-latest]
22-
python-version: ['3.10', '3.11', '3.12', '3.13']
22+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
2323

2424
steps:
2525

pyproject.toml

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

tox.ini

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

55
[testenv]
66
basepython =
77
py310: python3.10
88
py311: python3.11
99
py312: python3.12
1010
py313: python3.13
11+
py314: python3.14
1112

1213
passenv = CI,GITHUB_WORKFLOW
1314

0 commit comments

Comments
 (0)