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

Skip to content

Commit e212b24

Browse files
committed
Updating to 3.7.9
1 parent ec33a7e commit e212b24

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

python-interpreter-builder/scripts/build-python-3.7.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.7.7/Python-3.7.7.tgz
9+
wget --no-verbose https://www.python.org/ftp/python/3.7.9/Python-3.7.9.tgz
1010
# SHA-256 generated via `shasum -a 256 [file]`
1111
shasum --check <<EOF
12-
8c8be91cd2648a1a0c251f04ea0bb4c2a5570feb9c45eaaa2241c785585b475a Python-3.7.7.tgz
12+
39b018bc7d8a165e59aa827d9ae45c45901739b0bbb13721e4f973f3521c166a Python-3.7.9.tgz
1313
EOF
14-
tar xzf Python-3.7.7.tgz
14+
tar xzf Python-3.7.9.tgz
1515

16-
cd Python-3.7.7
16+
cd Python-3.7.9
1717

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

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

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

tests/virtualenv/virtualenv_python37.yaml

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

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

0 commit comments

Comments
 (0)