Skip to content

Bump types-docker from 7.0.0.20240523 to 7.0.0.20240524 #2094

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 24, 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.20240523",
"types-docker==7.0.0.20240524",
"types-pillow==10.2.0.20240520",
"types-pyyaml==6.0.12.20240311",
"types-requests==2.32.0.20240523",
Expand Down
2 changes: 1 addition & 1 deletion tests/mock_vws/test_docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
network.reload()
images_to_remove: set[Image] = set()
for container in network.containers:
network.disconnect(container=container) # pyright: ignore[reportUnknownMemberType]
network.disconnect(container=container)

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

View check run for this annotation

Codecov / codecov/patch

tests/mock_vws/test_docker.py#L92

Added line #L92 was not covered by tests
container.stop() # pyright: ignore[reportUnknownMemberType]
container.remove(v=True, force=True) # pyright: ignore[reportUnknownMemberType]
assert container.image is not None
Expand Down
Loading