Skip to content

Commit

Permalink
Add minimum versions for urllib3 and requests
Browse files Browse the repository at this point in the history
It's not entirely clear _why_ this works, but using urllib3>=2.0.0
avoids the 403 Client error.¹

Adding minimum version for `requests` the first version that officially
supports urllib3 v2.²

¹ <#7 (comment)>
² <https://github.com/psf/requests/releases/tag/v2.30.0>
  • Loading branch information
joverlee521 committed Dec 4, 2024
1 parent e734311 commit fc2665c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ packages = find:
python_requires = >=3.6
install_requires =
click >=8
requests
requests >=2.30.0
rich
pyyaml
urllib3 >=2.0.0

[options.extras_require]
maintainers-sync =
Expand Down

0 comments on commit fc2665c

Please sign in to comment.