Skip to content

Commit 42f36f8

Browse files
committed
Add support for Python 3.15
1 parent df1d9bd commit 42f36f8

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
17+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.15"]
1818
os: [windows-latest, macos-latest, ubuntu-latest]
1919

2020
steps:

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: 3.12",
2323
"Programming Language :: Python :: 3.13",
2424
"Programming Language :: Python :: 3.14",
25+
"Programming Language :: Python :: 3.15",
2526
]
2627
dynamic = [ "version" ]
2728
dependencies = [
@@ -76,4 +77,4 @@ lint.ignore = [
7677
lint.isort.required-imports = [ "from __future__ import annotations" ]
7778

7879
[tool.pyproject-fmt]
79-
max_supported_python = "3.14"
80+
max_supported_python = "3.15"

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
requires =
33
tox>=4.2
44
env_list =
5-
py{313, 312, 311, 310}
5+
py{315, 314, 313, 312, 311, 310}
66

77
[testenv]
88
extras =

0 commit comments

Comments
 (0)