We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e067040 commit 44b1ef4Copy full SHA for 44b1ef4
.github/workflows/code.yml
@@ -90,7 +90,8 @@ jobs:
90
- name: Install Python Dependencies
91
# 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==2.23.3
+ # Python 3.14 isn't supported on lower versions of cibuildwheel, so conditionally install when required
94
+ run: pip install build "cibuildwheel==2.23.3; python_version < '3.14'" "cibuildwheel; python_version >= '3.14'"
95
96
- name: Build Wheel
97
run: cibuildwheel --output-dir dist
0 commit comments