Skip to content

Commit

Permalink
Fix incorrect pin of requests (#505)
Browse files Browse the repository at this point in the history
Reverts the version requirement for requests to what it was prior to #492.
  • Loading branch information
maxbelanger authored Jun 3, 2024
1 parent 1d379b4 commit b474e21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Dependencies required for installation (keep in sync with setup.py)
requests<2.30
requests>=2.16.2
urllib3<2
six >= 1.12.0
stone>=2,<3.3.3
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
version = eval(line.split('=', 1)[1].strip()) # pylint: disable=eval-used

install_reqs = [
'requests<2.30',
'requests>=2.16.2',
'urllib3<2',
'six >= 1.12.0',
'stone>=2,<3.3.3',
Expand Down

0 comments on commit b474e21

Please sign in to comment.