File tree Expand file tree Collapse file tree 2 files changed +16
-8
lines changed Expand file tree Collapse file tree 2 files changed +16
-8
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
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
+ #
6
10
7
11
MODULE_NAME=" geomdl"
8
12
PLATFORM_NAME=" linux_i686"
9
- PYTHON_VERSIONS=" cp27-cp27m cp35-cp35m cp36-cp36m cp37-cp37m"
13
+ PYTHON_VERSIONS=" cp36-cp36m cp37-cp37m cp38-cp38m "
10
14
GIT_TAG_FULL=` git describe --tags`
11
15
GIT_TAG=" ${GIT_TAG_FULL: 1} "
12
16
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
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
+ #
6
10
7
11
MODULE_NAME=" geomdl"
8
12
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 "
10
14
GIT_TAG_FULL=` git describe --tags`
11
15
GIT_TAG=" ${GIT_TAG_FULL: 1} "
12
16
You can’t perform that action at this time.
0 commit comments