Skip to content

Commit a38fb03

Browse files
committed
Added h2 package as an explicit dependency to httpx for HTTP2 communication
1 parent 827d368 commit a38fb03

File tree

2 files changed

+40
-7
lines changed

2 files changed

+40
-7
lines changed

poetry.lock

Lines changed: 38 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ httpx = [
3636
{ version = "^0.24.1", python = "~3.7" },
3737
{ version = "^0.25.0", python = "^3.8" },
3838
]
39-
#h2 = "^4.1.0"
39+
h2 = "^4.1.0" # required for httx package, HTTP2 communication
40+
4041
# Optional dependencies
4142
pycrypto = { version = "^2.6.1", optional = true }
4243
pycryptodome = { version = "*", optional = true }
@@ -45,15 +46,10 @@ pyee = [
4546
{ version = "^9.0.4", python = "~3.7" },
4647
{ version = "^11.1.0", python = "^3.8" }
4748
]
48-
#h2 = [
49-
# { version = "^3.1.0", python = "~3.7" },
50-
# { version = "^4.1.0", python = "^3.8" }
51-
#]
5249

5350
[tool.poetry.extras]
5451
oldcrypto = ["pycrypto"]
5552
crypto = ["pycryptodome"]
56-
#http2 = ["h2"]
5753

5854
[tool.poetry.dev-dependencies]
5955
pytest = "^7.1"

0 commit comments

Comments
 (0)