We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e067040 commit 169d664Copy full SHA for 169d664
1 file changed
.github/workflows/code.yml
@@ -90,7 +90,12 @@ 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
+ shell: bash
99
100
- name: Build Wheel
101
run: cibuildwheel --output-dir dist
0 commit comments