slazarov / python-signalr-client

SignalR client for python based on asyncio.
MIT License
33 stars 22 forks source link

Python 3.5 not supported #12

Closed andrewkittredge closed 4 years ago

andrewkittredge commented 5 years ago

_transport.py uses except ModuleNotFoundError which I think is new in 3.6.

neonile1 commented 5 years ago

I believe the fix for this is very simple. Just use except: instead of except ModuleNotFoundError:, the same way it is done for importing ujson right above.

This is blocking me from using this library. Is it possible to do a new quick release that includes this simple fix?