billy-yoyo / RainbowSixSiege-Python-API

Asynchronous python api for rainbow six siege (r6sapi)
MIT License
130 stars 31 forks source link

Drop python 3.4 support #74

Open billy-yoyo opened 3 years ago

billy-yoyo commented 3 years ago

Since python 3.10 will no longer support the 3.4 way of doing async code, we should drop this in favour of supporting python 3.10. This will involve replacing all references of @asyncio.coroutine with the async keyword, and replacing all references of yield from with the await keyword.

billy-yoyo commented 3 years ago

As part of this, we should also drop all references to the old asyncio examples.