Skip to content

Commit ccb8810

Browse files
remove cpython 3.3 support
update supported cpythons to latest versions add convenience build script Signed-off-by: Trishank K Kuppusamy <[email protected]>
1 parent 2eef55e commit ccb8810

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

build.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
3+
docker/build_scripts/prefetch.sh openssl curl
4+
docker -D build --rm -t example/manylinux1_i686 -f docker/Dockerfile-i686 docker/
5+
docker -D build --rm -t example/manylinux1_x86_64 -f docker/Dockerfile-x86_64 docker/
6+
docker system prune -f

docker/README.rst

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ order to fetch the remaining sources.
77

88
To build the Docker images, you will need to fetch the tarballs to
99
``docker/sources/`` prior to building. This can be done with the
10-
provided prefetch script, after which you can proceed with building:
10+
provided prefetch script, after which you can proceed with building.
11+
Please run `./build.sh` from the _root_ directory (not this one).
1112

12-
```console
13-
$ bash docker/build_utils/prefetch.sh openssl curl
14-
$ docker build --rm -t example/manylinux1_i686 -f docker/Dockerfile-i686 docker/
15-
$ docker build --rm -t example/manylinux1_x86_64 -f docker/Dockerfile-x86_64 docker/
16-
```

docker/build_scripts/build_env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# source me
22

33
PYTHON_DOWNLOAD_URL=https://www.python.org/ftp/python
4-
CPYTHON_VERSIONS="2.7.14 3.3.7 3.4.7 3.5.4 3.6.4"
4+
CPYTHON_VERSIONS="2.7.14 3.4.8 3.5.5 3.6.5"
55

66
# openssl version to build, with expected sha256 hash of .tar.gz
77
# archive.

0 commit comments

Comments
 (0)