Skip to content

Commit 43ee8b7

Browse files
authored
Add: Python 3.14 support (#693)
1 parent 5fd2d3a commit 43ee8b7

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/prerelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ jobs:
435435
strategy:
436436
matrix:
437437
os: [ubuntu-24.04, macos-14, windows-2022]
438-
python-version: ["38", "39", "310", "311", "312", "313", "313t"]
438+
python-version: ["38", "39", "310", "311", "312", "313", "313t", "314", "314t"]
439439
steps:
440440
- name: Checkout
441441
uses: actions/checkout@v6

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,7 @@ jobs:
734734
strategy:
735735
matrix:
736736
os: [ubuntu-24.04, macos-14, windows-2022]
737-
python-version: ["38", "39", "310", "311", "312", "313", "313t"]
737+
python-version: ["38", "39", "310", "311", "312", "313", "313t", "314", "314t"]
738738
steps:
739739
- name: Check out refreshed version
740740
uses: actions/checkout@v6

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# - `macos` wheels for x86_64, arm64, and universal2;
44
# - `windows` wheels for AMD64, and ARM64. But not x86.
55
# - `manylinux` and `musllinux` wheels for Linux on x86_64, aarch64. But not i686, ppc64le, s390x;
6-
# * for CPython versions from 3.7 to 3.13.
6+
# * for CPython versions from 3.7 to 3.14.
77
# * for PyPy versions from 3.7 to 3.10.
88
# = meaning 7 platforms * 11 Python versions = 77 builds.
99
[build-system]
@@ -90,4 +90,4 @@ before-build = [
9090
# https://black.readthedocs.io/en/latest/usage_and_configuration/the_basics.html#where-black-looks-for-the-file
9191
[tool.black]
9292
line-length = 120 # Set line length to the same value as in `.clang-format` for modern wide screens
93-
target-version = ['py36', 'py313']
93+
target-version = ['py36', 'py314']

0 commit comments

Comments
 (0)