Skip to content

Commit

Permalink
Restricted requests version for unixsocket compatibility (#1184)
Browse files Browse the repository at this point in the history
`requests` 2.32.0 broke `requests-unixsocket`. This breaks IoT Edge functionality.

Until we can find a long-term solution, we are restricting the version of `requests`.
  • Loading branch information
cartertinney authored Jun 5, 2024
1 parent 4272a82 commit e372ca9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
# Actual project dependencies
"deprecation>=2.1.0,<3.0.0",
"paho-mqtt>=1.6.1,<2.0.0",
"requests>=2.20.0,<3.0.0",
"requests>=2.20.0,<2.32.0", # 2.32.0 breaks requests-unixsocket
"requests-unixsocket>=0.1.5,<1.0.0",
"janus",
"PySocks",
Expand Down

0 comments on commit e372ca9

Please sign in to comment.