Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/create_tests_package_lists.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.13", "3.12", "3.11", "3.10", "3.9"]
python-version: ["3.14", "3.13", "3.12", "3.11", "3.10", "3.9"]
include:
- os: macos-latest
python-version: "3.13"
python-version: "3.14"
- os: windows-latest
python-version: "3.13"
python-version: "3.14"
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.13", "3.12", "3.11", "3.10", "3.9"]
python-version: ["3.14", "3.13", "3.12", "3.11", "3.10", "3.9"]
include:
- os: windows-latest
python-version: "3.13"
python-version: "3.14"
- os: macos-latest
python-version: "3.13"
python-version: "3.14"

steps:
- uses: actions/checkout@v6
Expand Down
1 change: 1 addition & 0 deletions changelog.d/1684.feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added explicit support for Python 3.14
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import nox

PYTHON_ALL_VERSIONS = ["3.13", "3.12", "3.11", "3.10", "3.9"]
PYTHON_ALL_VERSIONS = ["3.14", "3.13", "3.12", "3.11", "3.10", "3.9"]
PYTHON_DEFAULT_VERSION = "3.13"
DOC_DEPENDENCIES = [
"jinja2",
Expand Down
Loading