From ff5c038d36fe0df0dde2e64d1c45635985b18463 Mon Sep 17 00:00:00 2001 From: Pierre Lalanne Date: Tue, 26 Sep 2023 13:06:17 +0200 Subject: [PATCH] chore(env): # Pin urllib3 to prevent bad dependencies resolvins on MacOS with Python3.10 --- Pipfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pipfile b/Pipfile index b5b66216..70102865 100644 --- a/Pipfile +++ b/Pipfile @@ -15,7 +15,7 @@ isort = "*" pre-commit = "*" pytest = "*" vcrpy = ">=4.3.0,!=4.3.1,<4.4.0" # v4.3.1 broke decode_compressed_response -urllib3 = "<2" # pin until https://github.com/kevin1024/vcrpy/issues/688 is fixed +urllib3 = "1.26.16" # pin until https://github.com/kevin1024/vcrpy/issues/688 is fixed scriv = { version = "*", extras = ["toml"] } responses = ">=0.23.1,<0.24.0" pyright = "==1.1.313"