diff --git a/pyproject.toml b/pyproject.toml index 781fbb5ce..926999138 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -85,7 +85,7 @@ optional-dependencies.dev = [ "sphinxcontrib-spelling==8", "sybil==6.1.1", "tenacity==8.4.2", - "types-docker==7.1.0.20240628", + "types-docker==7.1.0.20240629", "types-pillow==10.2.0.20240520", "types-pyyaml==6.0.12.20240311", "types-requests==2.32.0.20240622", diff --git a/tests/mock_vws/test_docker.py b/tests/mock_vws/test_docker.py index 2560beef6..81b99a068 100644 --- a/tests/mock_vws/test_docker.py +++ b/tests/mock_vws/test_docker.py @@ -163,7 +163,6 @@ def test_build_and_run( name=target_manager_container_name, publish_all_ports=True, network=custom_bridge_network.name, - version="auto", ) vws_container = client.containers.run( image=vws_image, @@ -174,7 +173,6 @@ def test_build_and_run( environment={ "TARGET_MANAGER_BASE_URL": target_manager_internal_base_url, }, - version="auto", ) vwq_container = client.containers.run( image=vwq_image, @@ -185,7 +183,6 @@ def test_build_and_run( environment={ "TARGET_MANAGER_BASE_URL": target_manager_internal_base_url, }, - version="auto", ) for container in (target_manager_container, vws_container, vwq_container):