Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9e6b11a

Browse files
authored
Merge pull request GoogleCloudPlatform#190 from dlorenc/update36
Update to Python 3.6.5.
2 parents 8d34b50 + bae0483 commit 9e6b11a

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

python-interpreter-builder/scripts/build-python-3.6.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ set -x
66
# Get the source
77
mkdir -p /opt/sources
88
cd /opt/sources
9-
wget --no-verbose https://www.python.org/ftp/python/3.6.4/Python-3.6.4.tgz
9+
wget --no-verbose https://www.python.org/ftp/python/3.6.5/Python-3.6.5.tgz
1010
# SHA-256 generated via `shasum -a 256 [file]`
1111
shasum --check <<EOF
12-
7dc453e1a93c083388eb1a23a256862407f8234a96dc4fae0fc7682020227486 Python-3.6.4.tgz
12+
53a3e17d77cd15c5230192b6a8c1e031c07cd9f34a2f089a731c6f6bd343d5c6 Python-3.6.5.tgz
1313
EOF
14-
tar xzf Python-3.6.4.tgz
14+
tar xzf Python-3.6.5.tgz
1515

16-
cd Python-3.6.4
16+
cd Python-3.6.5
1717

1818
# Explanation of flags:
1919
#
@@ -146,8 +146,8 @@ find "$PREFIX"/lib/python3.6/test \
146146

147147
# Clean-up sources
148148
cd /opt
149-
rm /opt/sources/Python-3.6.4.tgz
150-
rm -r /opt/sources/Python-3.6.4
149+
rm /opt/sources/Python-3.6.5.tgz
150+
rm -r /opt/sources/Python-3.6.5
151151

152152
# Archive and copy to persistent external volume
153153
tar czf /workspace/runtime-image/interpreter-3.6.tar.gz /opt/python3.6

tests/no-virtualenv/no-virtualenv.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ commandTests:
4343
expectedOutput: ["/usr/local/bin/python3\n"]
4444
- name: "default python3 version"
4545
command: ["python3", "--version"]
46-
expectedOutput: ["Python 3.6.4\n"]
46+
expectedOutput: ["Python 3.6.5\n"]
4747
- name: "default pip3 installation"
4848
command: ["which", "pip3"]
4949
expectedOutput: ["/usr/local/bin/pip3\n"]

tests/virtualenv/virtualenv_python36.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ commandTests:
2525
- name: "virtualenv36 python version"
2626
setup: [["virtualenv", "-p", "python3.6", "/env"]]
2727
command: ["python", "--version"]
28-
expectedOutput: ["Python 3.6.4\n"]
28+
expectedOutput: ["Python 3.6.5\n"]
2929

3030
- name: "virtualenv36 pip installation"
3131
setup: [["virtualenv", "-p", "python3.6", "/env"]]

0 commit comments

Comments
 (0)