Skip to content

Commit c7d3a84

Browse files
authored
Add support for Python 3.15 (#171)
1 parent d70f262 commit c7d3a84

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/main.yml

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

1919
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)