We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
websockets.legacy
v14.0
websockets v14.0 was released yesterday which deprecates use of websockets.legacy:
websockets
https://github.com/python-websockets/websockets/blob/f0d20aafab027e9b99460b193dcb709872b219a5/src/websockets/legacy/__init__.py#L7
This breaks sanic-testing as it relies on websockets.legacy via from websockets.legacy.client import connect in websocket.py
sanic-testing
from websockets.legacy.client import connect
websocket.py
The websockets upgrade guide suggests replacing from websockets.legacy.client import connect with from websockets.asyncio.client import connect
from websockets.asyncio.client import connect
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
websockets
v14.0 was released yesterday which deprecates use ofwebsockets.legacy
:https://github.com/python-websockets/websockets/blob/f0d20aafab027e9b99460b193dcb709872b219a5/src/websockets/legacy/__init__.py#L7
This breaks
sanic-testing
as it relies onwebsockets.legacy
viafrom websockets.legacy.client import connect
inwebsocket.py
The
websockets
upgrade guide suggests replacingfrom websockets.legacy.client import connect
withfrom websockets.asyncio.client import connect
The text was updated successfully, but these errors were encountered: