From 142a159d569cfccc5817eb0e2c9219bbb1cf6118 Mon Sep 17 00:00:00 2001 From: Niek <100143256+SchoNie@users.noreply.github.com> Date: Wed, 18 Dec 2024 11:35:01 +0100 Subject: [PATCH] ci: bump python module docker version check ci: bump python module docker version check --- test/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/conftest.py b/test/conftest.py index d51793d..0df348b 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -557,5 +557,5 @@ try: except docker.errors.ImageNotFound: pytest.exit("The docker image 'nginxproxy/nginx-proxy:test' is missing") -if Version(docker.__version__) < Version("5.0.0"): - pytest.exit("This test suite is meant to work with the python docker module v5.0.0 or later") +if Version(docker.__version__) < Version("7.0.0"): + pytest.exit("This test suite is meant to work with the python docker module v7.0.0 or later")