This is an automated email from the ASF dual-hosted git repository. tomaz pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/libcloud.git
commit 19af04e2384452aa08ef100e92041e04d9e063b0 Author: Tomaz Muraus <[email protected]> AuthorDate: Sun May 3 17:04:13 2020 +0200 Python 3.8 is causing issues, for now, skip it. --- contrib/Dockerfile | 6 +++--- contrib/run_tests.sh | 3 +-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/contrib/Dockerfile b/contrib/Dockerfile index 5dcfb87..ad0a5fa 100644 --- a/contrib/Dockerfile +++ b/contrib/Dockerfile @@ -30,12 +30,12 @@ RUN set -e && \ python3.5 \ python3.6 \ python3.7 \ - python3.8 \ + #python3.8 \ python-dev \ python3.5-dev \ python3.6-dev \ python3.7-dev \ - python3.8-dev \ + #python3.8-dev \ pypy3 \ python-pip \ libvirt-dev \ @@ -52,4 +52,4 @@ COPY . /libcloud WORKDIR /libcloud -CMD ["tox", "-e", "lint,py3.5,py3.6,py3.7,py3.8,pypy3"] +CMD ["tox", "-e", "lint,py3.5,py3.6,py3.7,pypy3"] diff --git a/contrib/run_tests.sh b/contrib/run_tests.sh index 06840a3..895ee91 100755 --- a/contrib/run_tests.sh +++ b/contrib/run_tests.sh @@ -20,8 +20,7 @@ # The script needs docker to be installed. # # Script which builds a testing docker image and container, -# install the necessary packages: pypy, pip, python versions -# 2.7, 3.3, 3.4, 3.5 and 3.6 (corresponding dev packages as well) +# install the necessary packages # and run the tox tests within the container. # The script has to be run from libcloud root.
