From 0acb773127af2bf084edf5541521cf721c332d46 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Tue, 7 Oct 2025 19:40:32 +0200 Subject: [PATCH] Install more deps for type checking. --- antsibull-nox.toml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/antsibull-nox.toml b/antsibull-nox.toml index 199c56bc..3e17501e 100644 --- a/antsibull-nox.toml +++ b/antsibull-nox.toml @@ -30,11 +30,13 @@ yamllint_config_plugins_examples = ".yamllint-examples" run_mypy = true mypy_ansible_core_package = "ansible-core>=2.19.0" mypy_config = ".mypy.ini" -# mypy_extra_deps = [ -# "cryptography", -# "types-mock", -# "types-PyYAML", -# ] +mypy_extra_deps = [ + "docker", + "paramiko", + "urllib3", + "requests", + "types-PyYAML", +] [sessions.docs_check] validate_collection_refs="all"