Skip to content

Bump types-docker from 7.0.0.20240519 to 7.0.0.20240523 #2092

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ optional-dependencies.dev = [
"sybil==6.1.1",
"tenacity==8.3.0",
"torch==2.3.0",
"types-docker==7.0.0.20240519",
"types-docker==7.0.0.20240523",
"types-pillow==10.2.0.20240520",
"types-pyyaml==6.0.12.20240311",
"types-requests==2.32.0.20240523",
Expand Down
4 changes: 2 additions & 2 deletions tests/mock_vws/test_docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
Yields:
A custom bridge network.
"""
client = docker.from_env() # pyright: ignore[reportUnknownMemberType]
client = docker.from_env()

Check warning on line 70 in tests/mock_vws/test_docker.py

View check run for this annotation

Codecov / codecov/patch

tests/mock_vws/test_docker.py#L70

Added line #L70 was not covered by tests
try:
network = client.networks.create( # pyright: ignore[reportUnknownMemberType]
name="test-vws-bridge-" + uuid.uuid4().hex,
Expand Down Expand Up @@ -112,7 +112,7 @@
application.
"""
repository_root = request.config.rootpath
client = docker.from_env() # pyright: ignore[reportUnknownMemberType]
client = docker.from_env()

Check warning on line 115 in tests/mock_vws/test_docker.py

View check run for this annotation

Codecov / codecov/patch

tests/mock_vws/test_docker.py#L115

Added line #L115 was not covered by tests

dockerfile = repository_root / "src/mock_vws/_flask_server/Dockerfile"

Expand Down
Loading