Skip to content

Commit 610ed90

Browse files
committed
updated websockets lib to support python 3.7+
1 parent e572975 commit 610ed90

2 files changed

Lines changed: 90 additions & 6 deletions

File tree

poetry.lock

Lines changed: 82 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: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,19 @@ httpx = [
3737
{ version = "^0.25.0", python = "^3.8" },
3838
]
3939
h2 = "^4.1.0" # required for httx package, HTTP2 communication
40-
41-
# Optional dependencies
42-
pycrypto = { version = "^2.6.1", optional = true }
43-
pycryptodome = { version = "*", optional = true }
44-
websockets = "^11.0"
40+
websockets = [
41+
{ version = "^11.0", python = "~3.7" },
42+
{ version = "^12.0", python = "^3.8" }
43+
]
4544
pyee = [
4645
{ version = "^9.0.4", python = "~3.7" },
4746
{ version = "^11.1.0", python = "^3.8" }
4847
]
4948

49+
# Optional dependencies
50+
pycrypto = { version = "^2.6.1", optional = true }
51+
pycryptodome = { version = "*", optional = true }
52+
5053
[tool.poetry.extras]
5154
oldcrypto = ["pycrypto"]
5255
crypto = ["pycryptodome"]

0 commit comments

Comments
 (0)