From 987f06629b6436dc03c69a22a1229d418674a0cb Mon Sep 17 00:00:00 2001 From: ponyisi Date: Mon, 3 Mar 2025 17:35:28 -0600 Subject: [PATCH] Unpin urllib3 as needed to fix security issue As this is a library, do not require a specific version of urllib3, but require at least 1.26.19 due to security alert on 1.26.18 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4167a57..447f9fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ itsdangerous = "^2.1.2" Werkzeug = "^3.0.4" Jinja2 = "^3.1.2" requests-toolbelt = "^0.10.1" -urllib3 = "1.26.18" +urllib3 = "^1.26.19" [tool.poetry.group.test] optional = true