Skip to content
Merged
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
13 changes: 11 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ jobs:
- "3.12"
- "3.13"
- "3.13t"
# CPython 3.14 final is scheduled for October 2025:
# https://peps.python.org/pep-0719/
- "3.14"
- "3.14t"
# CPython 3.15 final is scheduled for October 2026:
# https://peps.python.org/pep-0790/
- "3.15-dev"

# PyPy versions:
# - https://github.com/actions/setup-python/blob/main/docs/advanced-usage.md
Expand Down Expand Up @@ -72,6 +73,10 @@ jobs:
python: "3.13"
- os: windows-latest
python: "3.13t"
- os: windows-latest
python: "3.14"
- os: windows-latest
python: "3.14t"

# macOS
# Python 3.9 is the oldest version available on macOS/arm64.
Expand All @@ -87,6 +92,10 @@ jobs:
python: "3.13"
- os: macos-latest
python: "3.13t"
- os: macos-latest
python: "3.14"
- os: macos-latest
python: "3.14t"

# Ubuntu: test deadsnakes Python versions which are not supported by
# GHA python-versions.
Expand Down
2 changes: 1 addition & 1 deletion docs/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ functions for old Python versions.

Supported Python versions:

* Python 3.6 - 3.14
* Python 3.6 - 3.15
* PyPy 2.7 and PyPy 3.6 - 3.10

Python 2.7 and Python 3.5 are no longer officially supported since GitHub
Expand Down
5 changes: 5 additions & 0 deletions runtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@
"python3.11",
"python3.12",
"python3.13",
"python3.13t",
"python3.14",
"python3.14t",
"python3.15",
"python3.15t",

# PyPy
"pypy",
Expand Down
Loading