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 ce151d9 commit 7d978b7Copy full SHA for 7d978b7
.github/workflows/cibuildwheel.yml
@@ -30,6 +30,9 @@ jobs:
30
31
- name: Build wheels
32
uses: pypa/[email protected]
33
+ env:
34
+ CIBW_ENVIRONMENT: ${{ matrix.os == 'macos-13' && 'MACOSX_DEPLOYMENT_TARGET=13.0' || '' }}
35
+ CIBW_ENVIRONMENT_LINUX: 'PATH=$PATH:$HOME/.cargo/bin'
36
37
- uses: actions/upload-artifact@v4
38
with:
pyproject.toml
@@ -101,5 +101,4 @@ skip = "pp*" # skip PyPy
101
102
[tool.cibuildwheel.linux]
103
# cibuildwheel runs linux in containers so we need to install rust there
104
-before-all = "curl -sSf https://sh.rustup.rs | sh -s -- --default-toolchain stable -y"
105
-environment = { PATH = "$PATH:$HOME/.cargo/bin" }
+before-all = "curl -sSf https://sh.rustup.rs | sh -s -- --default-toolchain stable -y"
0 commit comments