From 8ebe49882400c3e9e2a4fc4a3502e4986fff8abc Mon Sep 17 00:00:00 2001 From: Pradeep Nallu <39759371+PradeepNallu@users.noreply.github.com> Date: Fri, 8 Jul 2022 13:35:10 +0530 Subject: [PATCH] [NOTICKET] Add python 3.9 support to shopkeep/pyenv (#21) --- pyenv/Dockerfile | 3 ++- pyenv/README.md | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pyenv/Dockerfile b/pyenv/Dockerfile index 865d0f0..bda8239 100644 --- a/pyenv/Dockerfile +++ b/pyenv/Dockerfile @@ -23,8 +23,9 @@ RUN pyenv install 2.7.15 RUN pyenv install 3.5.5 RUN pyenv install 3.6.5 RUN pyenv install 3.7.0 +RUN pyenv install 3.9.13 RUN pyenv rehash -RUN pyenv global 3.7.0 3.6.5 3.5.5 2.7.15 +RUN pyenv global 3.9.13 3.7.0 3.6.5 3.5.5 2.7.15 # install build and test dependencies RUN pip install --upgrade pip tox wheel diff --git a/pyenv/README.md b/pyenv/README.md index 2a5dfa9..e03fd19 100644 --- a/pyenv/README.md +++ b/pyenv/README.md @@ -10,6 +10,7 @@ The following Python versions are available in this image: - 3.5.5 - 3.6.5 - 3.7.0 +- 3.9.13 ## Available libraries