Skip to content

Commit 5e5702e

Browse files
committed
FIX: Python 3.14 is missing, we now build with that specific version
1 parent 5ea1f5e commit 5e5702e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/windows.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,18 @@ jobs:
7474
cat site.cfg
7575
7676
- uses: actions/setup-python@v5
77+
with:
78+
python-version: '3.14.0'
7779
- name: Install cibuildwheel
78-
run: python -m pip install cibuildwheel
80+
run: python -m pip install --upgrade cibuildwheel
7981
- name: Build wheels
8082
working-directory: mysqlclient
8183
env:
8284
CIBW_PROJECT_REQUIRES_PYTHON: '>=3.9'
8385
CIBW_ARCHS: 'AMD64'
86+
CIBW_BUILD: 'cp3*-win_amd64'
8487
CIBW_TEST_COMMAND: 'python -c "import MySQLdb; print(MySQLdb.version_info)" '
85-
run: 'python -m cibuildwheel --output-dir dist' # We removed '--prerelease-pythons', Python 3.14 is still flagged as prerelease but has been released
88+
run: 'python -m cibuildwheel --output-dir dist'
8689

8790
- name: Build sdist
8891
working-directory: mysqlclient

0 commit comments

Comments
 (0)