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 6b6f899 commit 4b0c322Copy full SHA for 4b0c322
.github/workflows/cibuildwheel.yml
@@ -21,7 +21,10 @@ jobs:
21
- name: Build wheels
22
uses: pypa/[email protected]
23
env:
24
- CIBW_SOME_OPTION: value
+ # Set up rust
25
+ CIBW_BEFORE_ALL_LINUX: curl -sSf https://sh.rustup.rs | sh -s -- -y
26
+ CIBW_BEFORE_ALL_WINDOWS: rustup target add i686-pc-windows-msvc
27
+ CIBW_ENVIRONMENT_LINUX: "PATH=$HOME/.cargo/bin:$PATH"
28
with:
29
package-dir: .
30
output-dir: wheelhouse
pyproject.toml
@@ -7,7 +7,8 @@ requires = [
7
8
[tool.cibuildwheel]
9
build = "*"
10
-skip = "pp* cp36* cp37* cp38*"
+# No rust on musllinux
11
+skip = "pp* cp36* cp37* cp38* *-musllinux_i686"
12
test-skip = ""
13
free-threaded-support = false
14
0 commit comments