From ce4ce0676a94e2a7089b8f8a584699deaa05a1c9 Mon Sep 17 00:00:00 2001 From: Nicolas Duchon Date: Mon, 2 Aug 2021 14:44:21 +0200 Subject: [PATCH 1/2] ci: update docker and docker-compose pip packages --- test/requirements/python-requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/requirements/python-requirements.txt b/test/requirements/python-requirements.txt index bdeb4f0..35bdb2b 100644 --- a/test/requirements/python-requirements.txt +++ b/test/requirements/python-requirements.txt @@ -1,5 +1,5 @@ backoff==1.11.1 -docker-compose==1.28.5 -docker==4.4.4 +docker-compose==1.29.2 +docker==5.0.0 pytest==6.2.4 requests==2.26.0 From 90a7218622c9104ea811f90c4fe77c9f52acccf4 Mon Sep 17 00:00:00 2001 From: Nicolas Duchon Date: Mon, 2 Aug 2021 14:48:40 +0200 Subject: [PATCH 2/2] ci: update contest.py --- test/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/conftest.py b/test/conftest.py index b738c83..b460135 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -488,5 +488,5 @@ try: except docker.errors.ImageNotFound: pytest.exit("The docker image 'nginxproxy/nginx-proxy:test' is missing") -if docker.__version__ != "4.4.4": - pytest.exit("This test suite is meant to work with the python docker module v4.4.4") +if docker.__version__ != "5.0.0": + pytest.exit("This test suite is meant to work with the python docker module v5.0.0")