Skip to content

Commit b42e16e

Browse files
committed
Drop cp315 until Python 3.15 reaches beta
1 parent 6651393 commit b42e16e

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

.github/workflows/test-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
os: [ubuntu-latest, macos-latest]
19-
python-version: ['3.12', '3.13', '3.14', '3.15']
19+
python-version: ['3.12', '3.13', '3.14']
2020

2121
steps:
2222
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ classifiers = [
3939
"Programming Language :: Python :: 3.12",
4040
"Programming Language :: Python :: 3.13",
4141
"Programming Language :: Python :: 3.14",
42-
"Programming Language :: Python :: 3.15",
4342
"Programming Language :: Python :: Implementation :: CPython",
4443
"Topic :: Software Development :: Libraries :: Python Modules",
4544
"Topic :: Scientific/Engineering",
@@ -104,10 +103,8 @@ kh57 = [
104103
# CI/CD - cibuildwheel configuration
105104
# ============================================================================
106105
[tool.cibuildwheel]
107-
build = ["cp312-*", "cp313-*", "cp314-*", "cp315-*"]
108-
109-
# opt into pre-release CPython so cp315 wheels build until 3.15 is stable
110-
enable = ["cpython-prerelease"]
106+
# cp315 will be added when Python 3.15 reaches beta and cibuildwheel accepts it as a selector.
107+
build = ["cp312-*", "cp313-*", "cp314-*"]
111108

112109
skip = [
113110
"*-musllinux_*",

0 commit comments

Comments
 (0)