Skip to content

Commit

Permalink
fix: Raise minimum urllib3 package to 1.26.0 (#26)
Browse files Browse the repository at this point in the history
Our usage of the `Retry` object from the `urllib3` package depends on a
signature that was introduced in v1.26.0.

Fixes #25
  • Loading branch information
keelerm84 authored Mar 1, 2024
1 parent 3487311 commit ca5408d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ packages = [

[tool.poetry.dependencies]
python = ">=3.7"
urllib3 = ">=1.22.0,<3"
urllib3 = ">=1.26.0,<3"


[tool.poetry.group.dev.dependencies]
Expand Down Expand Up @@ -59,7 +59,7 @@ expiringdict = ">=1.1.4"
pyrfc3339 = ">=1.0"
jsonpickle = ">1.4.1"
semver = ">=2.7.9"
urllib3 = ">=1.22.0"
urllib3 = ">=1.26.0"
jinja2 = "3.0.0"

[tool.mypy]
Expand Down

0 comments on commit ca5408d

Please sign in to comment.