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 4ea33e9 commit ff11f32Copy full SHA for ff11f32
.github/workflows/wheels.yml
@@ -2,7 +2,7 @@ name: Wheels
2
3
on:
4
push:
5
- branches:
+ branches:
6
- main
7
pull_request:
8
branches:
@@ -24,6 +24,13 @@ jobs:
24
with:
25
python-version: '3.10'
26
27
+ # Set the MACOSX_DEPLOYMENT_TARGET for macOS builds
28
+ - name: Set MACOSX_DEPLOYMENT_TARGET for macOS
29
+ if: runner.os == 'macOS'
30
+ run: |
31
+ echo "Setting MACOSX_DEPLOYMENT_TARGET to 10.15"
32
+ echo "MACOSX_DEPLOYMENT_TARGET=10.15" >> $GITHUB_ENV
33
+
34
- name: Install cibuildwheel
35
run: python -m pip install cibuildwheel==2.22.0
36
0 commit comments