WebSocket-for-Python icon indicating copy to clipboard operation
WebSocket-for-Python copied to clipboard

async_websocket not present since 0.3.5

Open uSpike opened this issue 8 years ago • 1 comments

I don't get async_websocket.py installed in releases after 0.3.5.

$ pip install 'ws4py' -U
...
Successfully installed ws4py-0.4.2
(venv) $ ls venv/lib/python3.5/site-packages/ws4py/
client     exc.py      __init__.py  messaging.py  server        utf8validator.py
compat.py  framing.py  manager.py   __pycache__   streaming.py  websocket.py

$ pip install 'ws4py<0.4.0'
...
Successfully installed ws4py-0.3.5
(venv) $ ls venv/lib/python3.5/site-packages/ws4py/
async_websocket.py  compat.py  framing.py   manager.py    __pycache__  streaming.py      websocket.py
client              exc.py     __init__.py  messaging.py  server       utf8validator.py

It looks like older releases did wheels, and newer ones release as source. The version check in setup.py seems to be failing.

uSpike avatar Oct 05 '17 18:10 uSpike

async_websocket.py is not included in the .tar.gz file on pypi. I suspect that the pypi upload is being done with a python2 instance?

uSpike avatar Oct 05 '17 18:10 uSpike