From b7fc10ee7cfba81d150c06c78e1dfcf6ba09f46b Mon Sep 17 00:00:00 2001 From: Alexander King Date: Fri, 22 Dec 2023 12:02:48 -0600 Subject: [PATCH] Bump requests pin Python 3.12 is incompatible with the version of `urllib3` pulled in by `requests<2.21`. Bumping the requests pin to `requests<2.26` resolves this issue. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 560ecfc..36d8c61 100644 --- a/setup.py +++ b/setup.py @@ -100,7 +100,7 @@ def get_version(version_file): "python-dateutil >= 2.7.5", "PyYAML >= 6.0.0", "redis >= 3.2.0", - "requests <2.21,>=2.6.1", + "requests <2.26,>=2.6.1", "schedule >= 0.4.2", "setuptools >= 24.2.0", "tqdm >= 4.30.0",