From 42d5caea6d7766694ef078a3abbdebe4715a0bf2 Mon Sep 17 00:00:00 2001 From: Felipe Reyes Date: Fri, 17 Mar 2023 17:01:21 -0300 Subject: [PATCH] Unpin dependencies - Unpin lxml for python >= 3.8 - Unpin pyparsing for python <= 3.5 Fixes: #530 --- requirements.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index aa383d4..8529212 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,9 @@ # pin lxml < 4.6.3 for py35 as no wheels exist for 4.6.3 (deprecated platform) # This is necessary for Xenial builders # BUG: https://github.com/openstack-charmers/zaza-openstack-tests/issues/530 -lxml<4.6.3 -pyparsing<3.0.0 # pin for aodhclient which is held for py35 +lxml<4.6.3; python_version < '3.8' +lxml; python_version >= '3.8' +pyparsing<3.0.0; python_version <= '3.5' # pin for aodhclient which is held for py35 aiounittest async_generator # pyopenssl depends on a newer version of cryptography since 22.1.0