From b7bc30c447d357ea4e8b205c7e4d6503fcbb8a1a Mon Sep 17 00:00:00 2001 From: Luky Date: Thu, 19 Mar 2026 18:55:47 +0100 Subject: [PATCH] Remove outdated urllib3<2.0.0 pin The direct urllib3<2.0.0 constraint was added as a workaround for boto/botocore#2926, which has since been resolved. Current botocore manages its own urllib3 version constraints via Python version markers. kbcstorage does not import or use urllib3 directly, so the pin is unnecessary and blocks downstream projects from upgrading. Closes #91 --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a6f05e2..bbd9116 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,6 @@ classifiers = [ dependencies = [ "boto3", "azure-storage-blob", - "urllib3<2.0.0", # Frozen until fixed: https://github.com/boto/botocore/issues/2926 # Dev dependencies "requests", "responses",