njouanin / hbmqtt

MQTT client/broker using Python asynchronous I/O
MIT License
795 stars 188 forks source link

asyncio.coroutine is deprecated in Python 3.8 and will be removed in 3.10. #214

Open acetylen opened 4 years ago

acetylen commented 4 years ago

The docs recommend using async def instead.

smurfix commented 4 years ago

There's an ancient patch to do this but it was reverted because, surprise, it killed Python 3.4 compatiblity.

I reapplied it in my distmqtt fork.

HerrMuellerluedenscheid commented 3 years ago

Addressed in #226