From 1d74de5814555d5f804d4cf4a21dbf35f22a4a7e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Feb 2025 03:41:13 -0800 Subject: [PATCH] Bump mypy from 1.14.1 to 1.15.0 (#5207) * Bump mypy from 1.14.1 to 1.15.0 Bumps [mypy](https://github.com/python/mypy) from 1.14.1 to 1.15.0. - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md) - [Commits](https://github.com/python/mypy/compare/v1.14.1...v1.15.0) --- updated-dependencies: - dependency-name: mypy dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * Updated type ignore for mypy 1.15.0 --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Michael R. Crusoe --- requirements-dev.txt | 2 +- src/toil/wdl/wdltoil.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 0f003ca742..5b977c929a 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -9,7 +9,7 @@ astroid>=3,<4 sphinx-autodoc-typehints>=1.24.0,<4 sphinxcontrib-autoprogram==0.1.9 cwltest>=2.2.20211116163652 -mypy==1.14.1 +mypy==1.15.0 types-aws-xray-sdk types-boto<2.49.18.20241020 types-Flask-Cors diff --git a/src/toil/wdl/wdltoil.py b/src/toil/wdl/wdltoil.py index 5f34031b7d..d83bbaf5c0 100755 --- a/src/toil/wdl/wdltoil.py +++ b/src/toil/wdl/wdltoil.py @@ -3803,7 +3803,7 @@ def patch_prepare_mounts_singularity() -> list[tuple[str, str, bool]]: # miniwdl depends on docker so this should be available but check just in case pass # docker stubs are still WIP: https://github.com/docker/docker-py/issues/2796 - from docker.types import Mount # type: ignore[import-untyped] + from docker.types import Mount # type: ignore[import-not-found] def patch_prepare_mounts_docker( logger: logging.Logger,