Skip to content

Commit ffae9d2

Browse files
authored
Bump Sanic package to v22.x (#727)
1 parent b30a319 commit ffae9d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
# async features heavily depends on aiohttp
7070
"aiohttp>=3,<4",
7171
# Socket Mode 3rd party implementation
72-
"websockets>=8,<10",
72+
"websockets>=10,<11" if sys.version_info.minor > 6 else "websockets>=8,<10",
7373
],
7474
# pip install -e ".[adapter]"
7575
# NOTE: any of async ones requires pip install -e ".[async]" too
@@ -86,7 +86,7 @@
8686
"Flask>=1,<3",
8787
"Werkzeug>=2,<3",
8888
"pyramid>=1,<3",
89-
"sanic>=21,<22" if sys.version_info.minor > 6 else "sanic>=20,<21",
89+
"sanic>=22,<23" if sys.version_info.minor > 6 else "sanic>=20,<21",
9090
"starlette>=0.14,<1",
9191
"tornado>=6,<7",
9292
# server

0 commit comments

Comments
 (0)