File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,9 @@ <h1 class="title">Module <code>slack_sdk.socket_mode.websockets</code></h1>
4848
4949import websockets
5050from websockets.exceptions import WebSocketException
51- from websockets.legacy.client import WebSocketClientProtocol
51+
52+ # To keep compatibility with websockets 8.x, we use this import over .legacy.client
53+ from websockets import WebSocketClientProtocol
5254
5355from slack_sdk.socket_mode.async_client import AsyncBaseSocketModeClient
5456from slack_sdk.socket_mode.async_listeners import (
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ <h1 class="title">Module <code>slack_sdk.version</code></h1>
2828< span > Expand source code</ span >
2929</ summary >
3030< pre > < code class ="python "> """Check the latest version at https://pypi.org/project/slack-sdk/"""
31- __version__ = "3.11.1 "</ code > </ pre >
31+ __version__ = "3.11.2 "</ code > </ pre >
3232</ details >
3333</ section >
3434< section >
Original file line number Diff line number Diff line change 11"""Check the latest version at https://pypi.org/project/slack-sdk/"""
2- __version__ = "3.11.1 "
2+ __version__ = "3.11.2 "
You can’t perform that action at this time.
0 commit comments