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 <[email protected]> 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
