We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cf79ae commit e946c48Copy full SHA for e946c48
.github/workflows/code.yml
@@ -88,7 +88,9 @@ jobs:
88
python-version: "3.12"
89
90
- name: Install Python Dependencies
91
- run: pip install build cibuildwheel>=2.16.2
+ # cibuildwheel 3.0.0 dropped support for Python 3.7. We still want to
92
+ # support 3.7 for the time being.
93
+ run: pip install build cibuildwheel\<3.0.0
94
95
- name: Build Wheel
96
run: cibuildwheel --output-dir dist
0 commit comments