Skip to content

Commit f818056

Browse files
authored
Support Python 3.14 (#684)
1 parent 456f787 commit f818056

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
3.16.0 (2024-10-25)
611
-------------------
712

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Install with:
110110
111111
python -m pip install pytest-randomly
112112
113-
Python 3.9 to 3.13 supported.
113+
Python 3.9 to 3.14 supported.
114114

115115
Usage
116116
=====

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ classifiers = [
3333
"Programming Language :: Python :: 3.11",
3434
"Programming Language :: Python :: 3.12",
3535
"Programming Language :: Python :: 3.13",
36+
"Programming Language :: Python :: 3.14",
3637
"Typing :: Typed",
3738
]
3839
dependencies = [
@@ -94,7 +95,7 @@ lint.extend-safe-fixes = [
9495
lint.isort.required-imports = [ "from __future__ import annotations" ]
9596

9697
[tool.pyproject-fmt]
97-
max_supported_python = "3.13"
98+
max_supported_python = "3.14"
9899

99100
[tool.pytest.ini_options]
100101
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)