We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e067040 commit a5a877aCopy full SHA for a5a877a
1 file changed
.github/workflows/code.yml
@@ -90,7 +90,11 @@ 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: |
95
+ pip install build
96
+ [ ${{matrix.python }} == "cp314" ] && pip install cibuildwheel || pip install cibuildwheel==2.23.3
97
+ pip freeze
98
99
- name: Build Wheel
100
run: cibuildwheel --output-dir dist
0 commit comments