Skip to content

Commit

Permalink
refactored httpx to use all latest minor versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sacOO7 committed Mar 27, 2024
1 parent 716bf9f commit 3f8d1fb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ python = "^3.7"
# Mandatory dependencies
methoddispatch = "^3.0.2"
msgpack = "^1.0.0"
httpx = { version = "< 1.0, >= 0.24.1", extras = ["http2"] }
httpx = [
{ version = "^0.24.1", python = "~3.7" },
{ version = ">=0.25.0, < 1.0", python = "^3.8" },
]
h2 = "^4.1.0" # required for httx package, HTTP2 communication
websockets = ">= 10.0, < 13.0"
pyee = [
{ version = "^9.0.4", python = "~3.7" },
Expand Down

0 comments on commit 3f8d1fb

Please sign in to comment.