We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
CIBW_BEFORE_ALL
1 parent 0618bab commit f2dc466Copy full SHA for f2dc466
docs/setup.md
@@ -62,15 +62,15 @@ Please take into account the build is performed on a wide variety of linux distr
62
63
```sh
64
# run a command to set up the build system
65
- export CIBW_BEFORE_ALL='apt install libpng-dev'
+ export CIBW_BEFORE_ALL='uname -a'
66
67
cibuildwheel --platform linux
68
```
69
70
> CMD (Windows)
71
72
```bat
73
- set CIBW_BEFORE_ALL='apt install libpng-dev'
+ set CIBW_BEFORE_ALL='uname -a'
74
75
76
@@ -83,7 +83,7 @@ Please take into account the build is performed on a wide variety of linux distr
83
84
85
[tool.cibuildwheel]
86
- before-all = "apt install libpng-dev"
+ before-all = "uname -a"
87
88
89
Then invoke cibuildwheel, like:
0 commit comments