Skip to content

Commit 7bb758f

Browse files
authored
Add support for Python 3.15 (#275)
1 parent 38c9968 commit 7bb758f

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ jobs:
1616
matrix:
1717
python-version:
1818
- "pypy3.11"
19+
- "3.15t"
20+
- "3.15"
1921
- "3.14t"
2022
- "3.14"
2123
- "3.13t"

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ classifiers = [
2828
"Programming Language :: Python :: 3.12",
2929
"Programming Language :: Python :: 3.13",
3030
"Programming Language :: Python :: 3.14",
31+
"Programming Language :: Python :: 3.15",
3132
"Programming Language :: Python :: Implementation :: CPython",
3233
"Programming Language :: Python :: Implementation :: PyPy",
3334
"Topic :: Text Processing",
@@ -100,7 +101,7 @@ lint.isort.required-imports = [ "from __future__ import annotations" ]
100101
lint.pydocstyle.convention = "google"
101102

102103
[tool.pyproject-fmt]
103-
max_supported_python = "3.14"
104+
max_supported_python = "3.15"
104105

105106
[tool.pytest.ini_options]
106107
addopts = "--color=yes"

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ env_list =
55
docs
66
lint
77
mypy
8-
py{py3, 314, 313, 312, 311, 310}
8+
py{py3, 315, 314, 313, 312, 311, 310}
99

1010
[testenv]
1111
extras =

0 commit comments

Comments
 (0)