You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -104,31 +104,34 @@ By default, `develop` will create a debug build, while `install` will create a r
104
104
105
105
### Binary wheels on linux
106
106
107
-
To build binary wheels on linux, you need to use the [manylinux docker container](https://github.com/pypa/manylinux). You also need a `build-wheels.sh` similar to [the one in the example](https://github.com/PyO3/setuptools-rist/blob/master/html-py-ever/build-wheels.sh), which will be run in that container.
107
+
To build binary wheels on linux, you need to use the [manylinux docker container](https://github.com/pypa/manylinux). You also need a `build-wheels.sh` similar to [the one in the example](https://github.com/PyO3/setuptools-rust/blob/master/html-py-ever/build-wheels.sh), which will be run in that container.
108
108
109
-
First, pull the `manylinux1` Docker image:
109
+
First, pull the `manylinux2014` Docker image:
110
110
111
111
```bash
112
-
docker pull quay.io/pypa/manylinux1_x86_64
112
+
docker pull quay.io/pypa/manylinux2014_x86_64
113
113
```
114
114
115
115
Then use the following command to build wheels for supported Python versions:
116
116
117
117
```bash
118
-
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /io/build-wheels.sh
118
+
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux2014_x86_64 /io/build-wheels.sh
You can then upload the `manylinux1` wheels to pypi using [twine](https://github.com/pypa/twine).
132
+
You can then upload the `manylinux2014` wheels to pypi using [twine](https://github.com/pypa/twine).
133
+
134
+
It is possible to use any of the `manylinux` docker images: `manylinux1`, `manylinux2010` or `manylinux2014`. (Just replace `manylinux2014` in the above instructions with the alternative version you wish to use.)
0 commit comments