From 5bcac04248e9e3995af4e99ae6cf9f61e3fc5fef Mon Sep 17 00:00:00 2001 From: Gordon Hart Date: Wed, 10 May 2023 15:48:33 -0400 Subject: [PATCH 1/3] Pin requests to <2.30 to avoid installation issues --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b1a5acf3d..f57ed0a08 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,8 +31,8 @@ pandas = ">=1.1,<1.6" pandera = ">=0.9.0" pydantic = ">=1.8" dacite = ">=1.6" -requests = ">=2.20" -requests-toolbelt = ">=1" +requests = ">=2.20,<2.30" +requests-toolbelt = "*" importlib-metadata = { version = "<5.0", python = "<3.8" } tqdm = ">=4,<5" Pillow = "^9.1.1" From a52580c1ad64e1032bac123b8225d42274e53766 Mon Sep 17 00:00:00 2001 From: Gordon Hart Date: Wed, 10 May 2023 15:49:30 -0400 Subject: [PATCH 2/3] Add comment --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f57ed0a08..5dac3e3f0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,7 @@ pandas = ">=1.1,<1.6" pandera = ">=0.9.0" pydantic = ">=1.8" dacite = ">=1.6" -requests = ">=2.20,<2.30" +requests = ">=2.20,<2.30" # TODO: revert upper bound when urllib3 situation sorts out: https://github.com/psf/requests/issues/6443 requests-toolbelt = "*" importlib-metadata = { version = "<5.0", python = "<3.8" } tqdm = ">=4,<5" From 704409afbec3cba887d376c8927c73a41e1acfcb Mon Sep 17 00:00:00 2001 From: Gordon Hart Date: Thu, 11 May 2023 10:27:52 -0400 Subject: [PATCH 3/3] Update comment to point to more active issue on psf/requests --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5dac3e3f0..874ab1e0b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,7 @@ pandas = ">=1.1,<1.6" pandera = ">=0.9.0" pydantic = ">=1.8" dacite = ">=1.6" -requests = ">=2.20,<2.30" # TODO: revert upper bound when urllib3 situation sorts out: https://github.com/psf/requests/issues/6443 +requests = ">=2.20,<2.30" # TODO: revert upper bound when urllib3 situation sorts out: https://github.com/psf/requests/issues/6432 requests-toolbelt = "*" importlib-metadata = { version = "<5.0", python = "<3.8" } tqdm = ">=4,<5"