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
Copy file name to clipboardExpand all lines: dev/notes/building_bdist_with_manylinux.txt
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -8,18 +8,18 @@ Create a temporary folder, enter it and clone the new release:
8
8
9
9
Start the manylinux docker container (this will download the container, mount the current folder as "io", and start an interactive session):
10
10
11
-
sudo docker run -ti -v $(pwd):/io quay.io/pypa/manylinux1_x86_64 /bin/bash
11
+
sudo docker run -ti -v $(pwd):/io quay.io/pypa/manylinux2010_x86_64 /bin/bash
12
12
13
13
This will drop you into the manylinux container terminal. The /opt/python folder in the container holds the various versions of python. This example targets python 3.7. Adjust the paths as appropriate to build bdists for different python versions.
This will compile the wheel and repair any library references to produce the manylinux wheel files in a folder ./wheelhouse. e.g. raysect-0.7.1-cp37-cp37m-manylinux1_x86_64.whl and raysect-0.6.0-cp37-cp37m-manylinux2010_x86_64.whl.
20
+
This will compile the wheel and repair any library references to produce the manylinux wheel files in a folder ./wheelhouse. e.g. raysect-0.8.1-cp37-cp37m-manylinux1_x86_64.whl and raysect-0.8.1-cp37-cp37m-manylinux2010_x86_64.whl.
21
21
22
-
These can then be uploaded to pypi (just the manylinux1 packages for now).
22
+
These can then be uploaded to pypi (just the manylinux2010 packages for now).
0 commit comments