From a058554b9bcf88f12ad09ab9fb93b267a214368f Mon Sep 17 00:00:00 2001 From: Sorin Sbarnea Date: Tue, 1 Nov 2022 16:32:45 +0000 Subject: [PATCH] Fix offline mode (#2647) Fixes: #2646 --- .pre-commit-config.yaml | 4 ++-- requirements.txt | 2 +- setup.cfg | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 219bd4eacb..9ec2edb43b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -141,7 +141,7 @@ repos: # empty args needed in order to match mypy cli behavior args: [--strict] additional_dependencies: - - ansible-compat>=2.2.3 + - ansible-compat>=2.2.4 - ansible-core - black - filelock @@ -167,7 +167,7 @@ repos: hooks: - id: pylint additional_dependencies: - - ansible-compat>=2.2.3 + - ansible-compat>=2.2.4 - ansible-core - black - docutils diff --git a/requirements.txt b/requirements.txt index 5b627b6b74..e8688f3d2f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,7 +5,7 @@ # pip-compile --extra=docs --extra=test --no-annotate --output-file=requirements.txt --strip-extras --unsafe-package=ansible-core setup.cfg # alabaster==0.7.12 -ansible-compat==2.2.3 +ansible-compat==2.2.4 ansible-pygments==0.1.1 astroid==2.12.12 attrs==22.1.0 diff --git a/setup.cfg b/setup.cfg index 0abb759483..5532ee7428 100644 --- a/setup.cfg +++ b/setup.cfg @@ -67,7 +67,7 @@ zip_safe = False # These are required in actual runtime: install_requires = - ansible-compat>=2.2.3 # GPLv3 + ansible-compat>=2.2.4 # GPLv3 ansible-core>=2.12.0 # GPLv3 black>=22.1.0 # MIT filelock # The Unlicense