Skip to content

Commit f2dc466

Browse files
committed
doc: refactor CIBW_BEFORE_ALL examples to working versions
1 parent 0618bab commit f2dc466

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/setup.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@ Please take into account the build is performed on a wide variety of linux distr
6262

6363
```sh
6464
# run a command to set up the build system
65-
export CIBW_BEFORE_ALL='apt install libpng-dev'
65+
export CIBW_BEFORE_ALL='uname -a'
6666

6767
cibuildwheel --platform linux
6868
```
6969

7070
> CMD (Windows)
7171

7272
```bat
73-
set CIBW_BEFORE_ALL='apt install libpng-dev'
73+
set CIBW_BEFORE_ALL='uname -a'
7474

7575
cibuildwheel --platform linux
7676
```
@@ -83,7 +83,7 @@ Please take into account the build is performed on a wide variety of linux distr
8383

8484
```
8585
[tool.cibuildwheel]
86-
before-all = "apt install libpng-dev"
86+
before-all = "uname -a"
8787
```
8888

8989
Then invoke cibuildwheel, like:

0 commit comments

Comments
 (0)