File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
1
# source me
2
2
3
3
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 "
5
5
6
6
# openssl version to build, with expected sha256 hash of .tar.gz
7
7
# archive.
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ function build_cpython {
76
76
local py_dist_dir=$( pyver_dist_dir $py_ver )
77
77
curl -fsSLO $PYTHON_DOWNLOAD_URL /$py_dist_dir /Python-$py_ver .tgz
78
78
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
80
80
if [ $( lex_pyver $py_ver ) -lt $( lex_pyver 3.3) ]; then
81
81
do_cpython_build $py_ver ucs2
82
82
do_cpython_build $py_ver ucs4
@@ -94,6 +94,8 @@ function build_cpythons {
94
94
# Import public keys used to verify downloaded Python source tarballs.
95
95
# https://www.python.org/static/files/pubkeys.txt
96
96
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
97
99
for py_ver in $@ ; do
98
100
build_cpython $py_ver
99
101
done
You can’t perform that action at this time.
0 commit comments