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 ef2a909
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 3 deletions.
70 changes: 68 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 ef2a909

Please sign in to comment.