Skip to content

Commit 827d368

Browse files
committed
removed h2 dependency, instead maintained httcore as a default internal client
1 parent 597bd6f commit 827d368

2 files changed

Lines changed: 74 additions & 37 deletions

File tree

poetry.lock

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

pyproject.toml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,11 @@ python = "^3.7"
3232
# Mandatory dependencies
3333
methoddispatch = "^3.0.2"
3434
msgpack = "^1.0.0"
35-
httpx = { version = "^0.24.1", extras = ["http2"] }
36-
35+
httpx = [
36+
{ version = "^0.24.1", python = "~3.7" },
37+
{ version = "^0.25.0", python = "^3.8" },
38+
]
39+
#h2 = "^4.1.0"
3740
# Optional dependencies
3841
pycrypto = { version = "^2.6.1", optional = true }
3942
pycryptodome = { version = "*", optional = true }
@@ -42,10 +45,15 @@ pyee = [
4245
{ version = "^9.0.4", python = "~3.7" },
4346
{ version = "^11.1.0", python = "^3.8" }
4447
]
48+
#h2 = [
49+
# { version = "^3.1.0", python = "~3.7" },
50+
# { version = "^4.1.0", python = "^3.8" }
51+
#]
4552

4653
[tool.poetry.extras]
4754
oldcrypto = ["pycrypto"]
4855
crypto = ["pycryptodome"]
56+
#http2 = ["h2"]
4957

5058
[tool.poetry.dev-dependencies]
5159
pytest = "^7.1"

0 commit comments

Comments
 (0)