From 505f9b58ccadd823ee46c8d308793950bb8ace3b Mon Sep 17 00:00:00 2001 From: danielpodwysocki <48068081+danielpodwysocki@users.noreply.github.com> Date: Tue, 9 Jan 2024 15:19:10 +0100 Subject: [PATCH] fix: allow ansible-core versions newer than 2.13 ansible-core 2.13 and the corresponding ansible 6.0.0 had been deprecated. This allows users to use ansible-doctor with any modern enough version of ansible, while not breaking legacy setups. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5f24b08..b9c5e0c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,7 @@ pathspec = "0.12.1" python = "^3.8.0" python-json-logger = "2.0.7" "ruamel.yaml" = "0.18.5" -ansible-core = "2.13" +ansible-core = "^2.13" [tool.poetry.scripts] ansible-doctor = "ansibledoctor.cli:main"