aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/tools
diff options
context:
space:
mode:
authorGravatar Mehrdad Afshari <mmx@google.com>2018-06-01 11:07:44 -0700
committerGravatar Mehrdad Afshari <mmx@google.com>2018-06-01 11:12:10 -0700
commit4bdc6902223d78752aa70ad744764eddfa08fa41 (patch)
tree8bb2d943331bc774f1daed33a49fe05c62e7e824 /templates/tools
parent45cd1f8a51485c66a82a955a4361db3a55797b39 (diff)
Use Python3.5 instead of Python3.4 on Debian 9
Diffstat (limited to 'templates/tools')
-rw-r--r--templates/tools/dockerfile/test/python_pyenv_x64/Dockerfile.template6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/tools/dockerfile/test/python_pyenv_x64/Dockerfile.template b/templates/tools/dockerfile/test/python_pyenv_x64/Dockerfile.template
index b408b74c77..1e013b742c 100644
--- a/templates/tools/dockerfile/test/python_pyenv_x64/Dockerfile.template
+++ b/templates/tools/dockerfile/test/python_pyenv_x64/Dockerfile.template
@@ -20,9 +20,9 @@
<%include file="../../gcp_api_libraries.include"/>
<%include file="../../python_deps.include"/>
<%include file="../../apt_get_pyenv.include"/>
- # Install pip and virtualenv for Python 3.4
- RUN curl https://bootstrap.pypa.io/get-pip.py | python3.4
- RUN python3.4 -m pip install virtualenv
+ # Install pip and virtualenv for Python 3.5
+ RUN curl https://bootstrap.pypa.io/get-pip.py | python3.5
+ RUN python3.5 -m pip install virtualenv
<%include file="../../run_tests_addons.include"/>
# Define the default command.