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 8483f8adb47bf87ba392f832cf9b111138e08fb3 Author: Tomaz Muraus <to...@tomaz.me> AuthorDate: Fri Jan 31 10:49:19 2025 +0100 fix: Update cryptography test dependency to avoid security check GHA workflow failure due to known vulnerability. --- requirements-tests.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/requirements-tests.txt b/requirements-tests.txt index f12f02d32..ef45f4af6 100644 --- a/requirements-tests.txt +++ b/requirements-tests.txt @@ -5,10 +5,11 @@ pytest==8.1.1 pytest-xdist==3.5.0 pytest-timeout==2.2.0 pytest-benchmark[histogram]==4.0.0 -cryptography==42.0.5 +cryptography==44.0.0 # NOTE: Only needed by nttcis loadbalancer driver -pyopenssl==24.1.0 +# We need to use >= 25.0.0 to be compatible with cryptography >= 43 +pyopenssl==25.0.0 # Required by subset of tests fasteners