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