Skip to content

Commit c5dcdf7

Browse files
authored
Add support for Python 3.15 (#74)
2 parents f8fc381 + e31913f commit c5dcdf7

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## 2.2.0
44

5+
* Add support for Python 3.15 by @hugovk in https://github.com/python/blurb/pull/74
56
* Keep sections in importance order by @hugovk in https://github.com/python/blurb/pull/75
67

78
## 2.1.0

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)