Skip to content

Commit 9d54759

Browse files
Update Python 3.7 to Python 3.7.3
c.f. https://www.python.org/downloads/release/python-373/
1 parent 691b5be commit 9d54759

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ WORKDIR /root
77

88
SHELL [ "/bin/bash", "-c" ]
99

10-
ARG PYTHON_VERSION_TAG=3.7.2
10+
ARG PYTHON_VERSION_TAG=3.7.3
1111
ARG LINK_PYTHON_TO_PYTHON3=1
1212

1313
# Existing lsb_release causes issues with modern installations of Python3

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ all: image py_3.6.8
55
image:
66
docker build -f Dockerfile \
77
--cache-from matthewfeickert/docker-python3-ubuntu:latest \
8-
--build-arg PYTHON_VERSION_TAG=3.7.2 \
8+
--build-arg PYTHON_VERSION_TAG=3.7.3 \
99
--build-arg LINK_PYTHON_TO_PYTHON3=1 \
1010
-t matthewfeickert/docker-python3-ubuntu:latest \
11-
-t matthewfeickert/docker-python3-ubuntu:3.7.2 \
11+
-t matthewfeickert/docker-python3-ubuntu:3.7.3 \
1212
--compress .
1313

1414
py_3.6.8:

install_python.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ function main() {
9898
# 1: the Python version tag
9999
# 2: bool of if should symlink python and pip to python3 versions
100100

101-
PYTHON_VERSION_TAG=3.7.2
101+
PYTHON_VERSION_TAG=3.7.3
102102
LINK_PYTHON_TO_PYTHON3=0 # By default don't link so as to reserve python for Python 2
103103
if [[ $# -gt 0 ]]; then
104104
PYTHON_VERSION_TAG="${1}"

0 commit comments

Comments
 (0)