Skip to content

Commit ca5408d

Browse files
authored
fix: Raise minimum urllib3 package to 1.26.0 (#26)
Our usage of the `Retry` object from the `urllib3` package depends on a signature that was introduced in v1.26.0. Fixes #25
1 parent 3487311 commit ca5408d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ packages = [
2929

3030
[tool.poetry.dependencies]
3131
python = ">=3.7"
32-
urllib3 = ">=1.22.0,<3"
32+
urllib3 = ">=1.26.0,<3"
3333

3434

3535
[tool.poetry.group.dev.dependencies]
@@ -59,7 +59,7 @@ expiringdict = ">=1.1.4"
5959
pyrfc3339 = ">=1.0"
6060
jsonpickle = ">1.4.1"
6161
semver = ">=2.7.9"
62-
urllib3 = ">=1.22.0"
62+
urllib3 = ">=1.26.0"
6363
jinja2 = "3.0.0"
6464

6565
[tool.mypy]

0 commit comments

Comments
 (0)