diff options
author | Andrew Donnellan <ajd@linux.ibm.com> | 2019-10-24 14:12:27 +1100 |
---|---|---|
committer | Daniel Axtens <dja@axtens.net> | 2019-10-24 14:36:11 +1100 |
commit | 681609f9511c13b2d7013b72d5067eeb2fa8669c (patch) | |
tree | 9d3c817f39c07c1e5e7113074fe04f2e3e812bdc /tools | |
parent | 2c2f52ea627dcde967391d65e03d102b41f3bc07 (diff) | |
download | patchwork-681609f9511c13b2d7013b72d5067eeb2fa8669c.tar patchwork-681609f9511c13b2d7013b72d5067eeb2fa8669c.tar.gz |
Python 3.8 support
Enable Python 3.8 in our tests and list it as a supported version.
Signed-off-by: Andrew Donnellan <ajd@linux.ibm.com>
Signed-off-by: Daniel Axtens <dja@axtens.net>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/docker/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile index 6167813..5ef1120 100644 --- a/tools/docker/Dockerfile +++ b/tools/docker/Dockerfile @@ -49,7 +49,8 @@ RUN curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-instal RUN pyenv latest install 2.7 && \ pyenv latest install 3.5 && \ pyenv latest install 3.6 && \ - pyenv latest install 3.7 + pyenv latest install 3.7 && \ + pyenv latest install 3.8 RUN pyenv global $(pyenv versions --bare | tac) RUN pip install tox tox-pyenv |