From 924b95b47b219bfb4ab8d640a371b79e17287d8d Mon Sep 17 00:00:00 2001 From: Alex Kavanagh Date: Tue, 26 May 2020 14:23:16 +0100 Subject: [PATCH] Unpin juju (libjuju) from < 2.8 python-libjuju was broken at 2.8 and thus zaza and zaza-openstack-tests needed to be pinned to < 2.8. This patch releases that so that the latest versions of libjuju are used in testing. This may get pinned again before the next release window. --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 1f685cf..fa0e460 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ aiounittest async_generator boto3 -juju<2.8.0 +juju juju_wait PyYAML<=4.2,>=3.0 flake8>=2.2.4 diff --git a/setup.py b/setup.py index 3e781da..6d08832 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ install_require = [ 'cryptography', 'hvac<0.7.0', 'jinja2', - 'juju<2.8.0', + 'juju', 'juju-wait', 'lxml', 'PyYAML',