We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a1e3efb + 2a83588 commit fd0aae3Copy full SHA for fd0aae3
docs/setup.md
@@ -61,15 +61,15 @@ You should see the builds taking place. You can experiment with options using en
61
62
```sh
63
# run a command to set up the build system
64
- export CIBW_BEFORE_ALL='apt install libpng-dev'
+ export CIBW_BEFORE_ALL='uname -a'
65
66
cibuildwheel --platform linux
67
```
68
69
> CMD (Windows)
70
71
```bat
72
- set CIBW_BEFORE_ALL='apt install libpng-dev'
+ set CIBW_BEFORE_ALL='uname -a'
73
74
75
@@ -82,7 +82,7 @@ You should see the builds taking place. You can experiment with options using en
82
83
84
[tool.cibuildwheel]
85
- before-all = "apt install libpng-dev"
+ before-all = "uname -a"
86
87
88
Then invoke cibuildwheel, like:
0 commit comments