From d26f72744af5f4cfeb8974ec67438d120703838a Mon Sep 17 00:00:00 2001 From: kwadronaut <kwadronaut@autistici.org> Date: Sun, 26 Mar 2023 13:00:06 +0200 Subject: [PATCH] relaxe ansible core venv The conflict is caused by: The user requested ansible-core==2.12.10 ansible 6.2.0 depends on ansible-core~=2.13.2 To fix this you could try to: 1. loosen the range of package versions you've specified 2. remove package versions to allow pip attempt to solve the dependency conflict /closes #62 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index ecee867f..fa4186a1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ ansible==6.2.0 -ansible-core==2.12.10 +ansible-core==2.* cffi==1.15.1 cryptography==38.0.4 Jinja2==3.1.2 -- GitLab