We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ea1f5e commit 5e5702eCopy full SHA for 5e5702e
1 file changed
.github/workflows/windows.yaml
@@ -74,15 +74,18 @@ jobs:
74
cat site.cfg
75
76
- uses: actions/setup-python@v5
77
+ with:
78
+ python-version: '3.14.0'
79
- name: Install cibuildwheel
- run: python -m pip install cibuildwheel
80
+ run: python -m pip install --upgrade cibuildwheel
81
- name: Build wheels
82
working-directory: mysqlclient
83
env:
84
CIBW_PROJECT_REQUIRES_PYTHON: '>=3.9'
85
CIBW_ARCHS: 'AMD64'
86
+ CIBW_BUILD: 'cp3*-win_amd64'
87
CIBW_TEST_COMMAND: 'python -c "import MySQLdb; print(MySQLdb.version_info)" '
- 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'
89
90
- name: Build sdist
91
0 commit comments