Skip to content

Commit ef2a909

Browse files
committed
refactored httpx to use all latest minor versions
1 parent 716bf9f commit ef2a909

2 files changed

Lines changed: 73 additions & 3 deletions

File tree

poetry.lock

Lines changed: 68 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@ python = "^3.7"
3232
# Mandatory dependencies
3333
methoddispatch = "^3.0.2"
3434
msgpack = "^1.0.0"
35-
httpx = { version = "< 1.0, >= 0.24.1", extras = ["http2"] }
35+
httpx = [
36+
{ version = "^0.24.1", python = "~3.7" },
37+
{ version = ">= 0.25.0, < 1.0", python = "^3.8" },
38+
]
39+
h2 = "^4.1.0" # required for httx package, HTTP2 communication
3640
websockets = ">= 10.0, < 13.0"
3741
pyee = [
3842
{ version = "^9.0.4", python = "~3.7" },

0 commit comments

Comments
 (0)