You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2021/11/12 15:20:43 UTC

[libcloud] 09/09: Add a workaround for more-itertools upstream change which broke tests under Python 3.5.

This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch 3.4.x
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit 28d3785c996bd8ff56b508518bb06dbe3f4466eb
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Wed Nov 10 17:38:55 2021 +0100

    Add a workaround for more-itertools upstream change which broke tests
    under Python 3.5.
---
 requirements-tests.txt | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/requirements-tests.txt b/requirements-tests.txt
index 09b3c18..7c71878 100644
--- a/requirements-tests.txt
+++ b/requirements-tests.txt
@@ -22,3 +22,6 @@ cryptography==35.0.0; python_version >= '3.6'
 # NOTE: Only needed by nttcis loadbalancer driver
 pyopenssl==20.0.1; python_version <= '3.5'
 pyopenssl==21.0.0; python_version >= '3.6'
+# Newer version of itertools doesn't support Python 3.5 anymore
+more-itertools==8.10.0; python_version <= '3.5'
+more-itertools==8.11.0; python_version >= '3.6'