From 67caf977c6600c678505dae7dae78b4681d6c05a Mon Sep 17 00:00:00 2001 From: Marius Kittler Date: Mon, 12 Jun 2023 14:58:40 +0200 Subject: [PATCH] Fix CI checks by avoiding incompatible Python modules Avoid installing urllib3>=2 for CI runs as the responses module is not compatible with that version yet (leading to failing tests because mocking HTTP responses in not working correctly). Supposedly https://github.com/getsentry/responses/issues/635 is the relevant upstream issue. --- requirements-dev.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements-dev.txt b/requirements-dev.txt index 9116be1..c99cc92 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -9,3 +9,4 @@ ruamel.yaml beautifulsoup4 black jsonschema +urllib3<2 # responses needs <2, see https://github.com/getsentry/responses/issues/635