Skip to content

Commit 61d3701

Browse files
mattipauvipy
authored andcommitted
include 3.8.0rc1 in manylinux1 (#360)
* include 3.8.0rc1 in manylinux1 * add keyserver * update key for 3.8 * fixes from review
1 parent d2a2ea1 commit 61d3701

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

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.16 3.4.10 3.5.7 3.6.9 3.7.4"
4+
CPYTHON_VERSIONS="2.7.16 3.4.10 3.5.7 3.6.9 3.7.4 3.8.0rc1"
55

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

docker/build_scripts/build_utils.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ function build_cpython {
7676
local py_dist_dir=$(pyver_dist_dir $py_ver)
7777
curl -fsSLO $PYTHON_DOWNLOAD_URL/$py_dist_dir/Python-$py_ver.tgz
7878
curl -fsSLO $PYTHON_DOWNLOAD_URL/$py_dist_dir/Python-$py_ver.tgz.asc
79-
gpg --verify Python-$py_ver.tgz.asc
79+
gpg --verify --no-auto-key-locate Python-$py_ver.tgz.asc
8080
if [ $(lex_pyver $py_ver) -lt $(lex_pyver 3.3) ]; then
8181
do_cpython_build $py_ver ucs2
8282
do_cpython_build $py_ver ucs4
@@ -94,6 +94,8 @@ function build_cpythons {
9494
# Import public keys used to verify downloaded Python source tarballs.
9595
# https://www.python.org/static/files/pubkeys.txt
9696
gpg --import ${MY_DIR}/cpython-pubkeys.txt
97+
# Add version 3.8 release manager's key https://keybase.io/ambv/
98+
gpg --keyserver keys.gnupg.net --recv-keys E3FF2839C048B25C084DEBE9B26995E310250568
9799
for py_ver in $@; do
98100
build_cpython $py_ver
99101
done

0 commit comments

Comments
 (0)