Skip to content

Commit 09a7596

Browse files
authored
Support Python 3.14 (#403)
1 parent 7e4f560 commit 09a7596

File tree

5 files changed

+10
-3
lines changed

5 files changed

+10
-3
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
- '3.11'
2626
- '3.12'
2727
- '3.13'
28+
- '3.14'
2829

2930
steps:
3031
- uses: actions/checkout@v5

CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Changelog
33
=========
44

5+
Unreleased
6+
----------
7+
8+
* Support Python 3.14.
9+
510
1.19.1 (2024-10-23)
611
-------------------
712

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Use **pip**:
2929
3030
python -m pip install blacken-docs
3131
32-
Python 3.9 to 3.13 supported.
32+
Python 3.9 to 3.14 supported.
3333

3434
Black 22.1.0+ supported.
3535

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ classifiers = [
2929
"Programming Language :: Python :: 3.11",
3030
"Programming Language :: Python :: 3.12",
3131
"Programming Language :: Python :: 3.13",
32+
"Programming Language :: Python :: 3.14",
3233
"Typing :: Typed",
3334
]
3435
dependencies = [
@@ -84,7 +85,7 @@ lint.extend-safe-fixes = [
8485
lint.isort.required-imports = [ "from __future__ import annotations" ]
8586

8687
[tool.pyproject-fmt]
87-
max_supported_python = "3.13"
88+
max_supported_python = "3.14"
8889

8990
[tool.pytest.ini_options]
9091
addopts = """\

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, 39}
5+
py{314, 313, 312, 311, 310, 39}
66

77
[testenv]
88
runner = uv-venv-lock-runner

0 commit comments

Comments
 (0)