Skip to content

Commit

Permalink
fix: downgrade requests to 2.31.0 in devctr
Browse files Browse the repository at this point in the history
requests 2.32.0 breaks requests-unixsocket, which seems to be abandoned
[1]. So pin it to a version that works.

[1]: msabramo/requests-unixsocket#73

Signed-off-by: Patrick Roy <roypat@amazon.co.uk>
  • Loading branch information
roypat committed Jul 16, 2024
1 parent e664d54 commit 2ed1205
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/devctr/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ pytest-timeout = "^2.1.0"
pytest-xdist = "^3.3.1"
python = "3.10.*"
PyYAML = "^6.0"
requests = "^2.32.0"
# Pin requests because of https://github.com/msabramo/requests-unixsocket/issues/73
requests = "<2.32.0"
requests-unixsocket = "^0.3.0"
scipy = "^1.11.2"
setproctitle = "^1.3.2"
Expand Down

0 comments on commit 2ed1205

Please sign in to comment.