From 05f289f912db2b16905afbab02061f65c32446da Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 25 Feb 2020 21:14:16 +0530 Subject: [PATCH] Make py 3.8 available in the CI docker image --- .circleci/images/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/images/Dockerfile b/.circleci/images/Dockerfile index 41b512590..9b03e981b 100644 --- a/.circleci/images/Dockerfile +++ b/.circleci/images/Dockerfile @@ -40,6 +40,7 @@ RUN pip3 install sphinx ADD install-python.py /tmp/install-python.py RUN python3 /tmp/install-python.py py3.5 https://www.python.org/ftp/python/3.5.6/Python-3.5.6.tar.xz RUN python3 /tmp/install-python.py py3.7 https://www.python.org/ftp/python/3.7.2/Python-3.7.2.tar.xz +RUN python3 /tmp/install-python.py py3.8 https://www.python.org/ftp/python/3.8.1/Python-3.8.1.tar.xz # Install kitty bundle ENV SW=/home/circleci/sw