Skip to content

Commit 1b0ed00

Browse files
committed
Update wheel builder scripts
1 parent 7f3f0a4 commit 1b0ed00

File tree

2 files changed

+16
-8
lines changed

2 files changed

+16
-8
lines changed

build_manylinux1_32.sh renamed to build_manylinux2014_x86-32.sh

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
#!/bin/bash
22

3-
# Builds "manylinux1" packages for geomdl
4-
# Setup Docker: http://support.divio.com/local-development/docker/how-to-use-a-directory-outside-cusers-with-docker-toolboxdocker-for-windows
5-
# Run Docker: docker run -it -v /home/docker/projects:/io quay.io/pypa/manylinux1_i686 /bin/bash
3+
# Builds "manylinux2014" packages for geomdl
4+
# How-to build:
5+
# 1) Run Docker: docker run -it -v {local dir}:/project quay.io/pypa/manylinux2014_i686 /bin/bash
6+
# 2) {local dir} is the directory of the geomdl project
7+
# 3) Change directory inside container prompt: cd /project
8+
# 4) Run script ./build_manylinux2014_x86-32.sh
9+
#
610

711
MODULE_NAME="geomdl"
812
PLATFORM_NAME="linux_i686"
9-
PYTHON_VERSIONS="cp27-cp27m cp35-cp35m cp36-cp36m cp37-cp37m"
13+
PYTHON_VERSIONS="cp36-cp36m cp37-cp37m cp38-cp38m"
1014
GIT_TAG_FULL=`git describe --tags`
1115
GIT_TAG="${GIT_TAG_FULL:1}"
1216

build_manylinux1_64.sh renamed to build_manylinux2014_x86-64.sh

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
#!/bin/bash
22

3-
# Builds "manylinux1" packages for geomdl
4-
# Setup Docker: http://support.divio.com/local-development/docker/how-to-use-a-directory-outside-cusers-with-docker-toolboxdocker-for-windows
5-
# Run Docker: docker run -it -v /home/docker/projects:/io quay.io/pypa/manylinux1_x86_64 /bin/bash
3+
# Builds "manylinux2014" packages for geomdl
4+
# How-to build:
5+
# 1) Run Docker: docker run -it -v {local dir}:/project quay.io/pypa/manylinux2014_x86_64 /bin/bash
6+
# 2) {local dir} is the directory of the geomdl project
7+
# 3) Change directory inside container prompt: cd /project
8+
# 4) Run script ./build_manylinux2014_x86-64.sh
9+
#
610

711
MODULE_NAME="geomdl"
812
PLATFORM_NAME="linux_x86_64"
9-
PYTHON_VERSIONS="cp27-cp27m cp35-cp35m cp36-cp36m cp37-cp37m"
13+
PYTHON_VERSIONS="cp36-cp36m cp37-cp37m cp38-cp38m"
1014
GIT_TAG_FULL=`git describe --tags`
1115
GIT_TAG="${GIT_TAG_FULL:1}"
1216

0 commit comments

Comments
 (0)