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/10/22 15:01:55 UTC

[libcloud] branch trunk updated (e15f0e6 -> 9273a34)

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

tomaz pushed a change to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git.


    from e15f0e6  Update tox config.
     new 15bd841  Use latest version of pytest under Python >= 3.6 since it contains a bug fix for running under Python 3.10.
     new 9273a34  Use newer version of cryptography under Python >= 3.6.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 requirements-tests.txt | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

[libcloud] 01/02: Use latest version of pytest under Python >= 3.6 since it contains a bug fix for running under Python 3.10.

Posted by to...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 15bd84117bcdb398b831a1a3b668e522d576e7cb
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Fri Oct 22 16:55:56 2021 +0200

    Use latest version of pytest under Python >= 3.6 since it contains a bug
    fix for running under Python 3.10.
---
 requirements-tests.txt | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/requirements-tests.txt b/requirements-tests.txt
index fa6949b..086690d 100644
--- a/requirements-tests.txt
+++ b/requirements-tests.txt
@@ -7,7 +7,9 @@ codecov==2.1.10
 coverage==4.5.4
 requests
 requests_mock
-pytest==5.3.2
+# 5.3.2 is latest version which still supports Python 3.5, >= 6.2.5 is needed for Python 3.10
+pytest==5.3.2; python_version <= '3.5'
+pytest==6.2.5; python_version >= '3.6'
 cryptography==3.2.1
 # NOTE: Only needed by nttcis loadbalancer driver
 pyopenssl==19.1.0

[libcloud] 02/02: Use newer version of cryptography under Python >= 3.6.

Posted by to...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 9273a34486b1907c08afc5543dfe36a8771a0de8
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Fri Oct 22 17:01:11 2021 +0200

    Use newer version of cryptography under Python >= 3.6.
---
 requirements-tests.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/requirements-tests.txt b/requirements-tests.txt
index 086690d..0be0ae3 100644
--- a/requirements-tests.txt
+++ b/requirements-tests.txt
@@ -10,6 +10,7 @@ requests_mock
 # 5.3.2 is latest version which still supports Python 3.5, >= 6.2.5 is needed for Python 3.10
 pytest==5.3.2; python_version <= '3.5'
 pytest==6.2.5; python_version >= '3.6'
-cryptography==3.2.1
+cryptography==3.2.1; python_version <= '3.5'
+cryptography==35.0.0; python_version >= '3.6'
 # NOTE: Only needed by nttcis loadbalancer driver
 pyopenssl==19.1.0