We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b30a319 commit ffae9d2Copy full SHA for ffae9d2
setup.py
@@ -69,7 +69,7 @@
69
# async features heavily depends on aiohttp
70
"aiohttp>=3,<4",
71
# Socket Mode 3rd party implementation
72
- "websockets>=8,<10",
+ "websockets>=10,<11" if sys.version_info.minor > 6 else "websockets>=8,<10",
73
],
74
# pip install -e ".[adapter]"
75
# NOTE: any of async ones requires pip install -e ".[async]" too
@@ -86,7 +86,7 @@
86
"Flask>=1,<3",
87
"Werkzeug>=2,<3",
88
"pyramid>=1,<3",
89
- "sanic>=21,<22" if sys.version_info.minor > 6 else "sanic>=20,<21",
+ "sanic>=22,<23" if sys.version_info.minor > 6 else "sanic>=20,<21",
90
"starlette>=0.14,<1",
91
"tornado>=6,<7",
92
# server
0 commit comments