Skip to content

Commit 25334b6

Browse files
committed
Add support for Python 3.15
1 parent c8893e0 commit 25334b6

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.github/workflows/test.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

1919
steps:
2020
- uses: actions/checkout@v6

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 2.2.0
4+
5+
* Add support for Python 3.15 by @hugovk in https://github.com/python/blurb/pull/74
6+
37
## 2.1.0
48

59
- Add the `-i` / `--issue` option to the 'blurb add' command.

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ classifiers = [
2525
"Programming Language :: Python :: 3.12",
2626
"Programming Language :: Python :: 3.13",
2727
"Programming Language :: Python :: 3.14",
28+
"Programming Language :: Python :: 3.15",
2829
]
2930
dynamic = [
3031
"version",
@@ -50,4 +51,4 @@ version-file = "src/blurb/_version.py"
5051
local_scheme = "no-local-version"
5152

5253
[tool.pyproject-fmt]
53-
max_supported_python = "3.14"
54+
max_supported_python = "3.15"

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[tox]
22
requires =
3-
tox>=4.2
3+
tox>=4.32
44
env_list =
5-
py{314, 313, 312, 311, 310}
5+
py{310-315}
66

77
[testenv]
88
extras =

0 commit comments

Comments
 (0)