From 7e5c511a370604075a6df7e016937f472895b34a Mon Sep 17 00:00:00 2001 From: Daniel Pawlik Date: Wed, 21 Oct 2020 14:21:33 +0200 Subject: [PATCH] Set mininum urllib3 version There is a problem on executing unit tests: "ImportError: cannot import name 'IPV6_ADDRZ_RE'". To avoid such error, the best way is to set minimum version of urllib3 [1]. [1] https://github.com/boto/botocore/issues/2186#issuecomment-712467507 Change-Id: Ie1eaee065959068c3967e0c22cfda07571090356 --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 14aaf8cb6..c3b601b72 100644 --- a/requirements.txt +++ b/requirements.txt @@ -21,3 +21,4 @@ google-api-python-client azure-mgmt-compute<17.0.0 azure-mgmt-network<16.0.0 azure-mgmt-resource<15.0.0 +urllib3>=1.25.4