Skip to content

Commit 8ee7029

Browse files
authored
Fix building Python 3.14 wheels (#107)
* Add renamed file * Finalise
1 parent 6d386ad commit 8ee7029

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/release-wheels.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/setup-python@v5
2121
name: Install Python
2222
with:
23-
python-version: '3.10'
23+
python-version: '3.13'
2424

2525
- name: Build sdist
2626
run: |
@@ -161,12 +161,12 @@ jobs:
161161
- uses: actions/setup-python@v5
162162
name: Install Python
163163
with:
164-
python-version: '3.9'
164+
python-version: '3.13'
165165

166166
- name: Install cibuildwheel
167167
run: |
168168
python -m pip install -U pip
169-
python -m pip install cibuildwheel>=2.21
169+
python -m pip install cibuildwheel>=3.1.3
170170
171171
- name: Build wheels (non-MacOS arm64)
172172
env:
@@ -222,10 +222,10 @@ jobs:
222222
- uses: actions/setup-python@v5
223223
name: Install Python
224224
with:
225-
python-version: '3.9'
225+
python-version: '3.13'
226226

227227
- name: Install cibuildwheel
228-
run: python -m pip install cibuildwheel>=2.21 wheel>=0.42
228+
run: python -m pip install cibuildwheel>=3.1.3
229229

230230
- name: Build wheels
231231
env:
File renamed without changes.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ requires = [
88
build-backend = "poetry.core.masonry.api"
99

1010
[tool.poetry.build]
11-
script = "build.py"
11+
script = "build_package.py"
1212
generate-setup-file = true
1313

1414
[tool.poetry]

0 commit comments

Comments
 (0)