Our project currently uses ratelimiter-1.2.0.post0, the latest version on PyPI.
Python 3.8 has been released and we're adding a py28 CI test for our project, which resulted in the following warning:
/home/travis/virtualenv/python3.8.0/lib/python3.8/site-packages/ratelimiter.py:127: DeprecationWarning: "@coroutine" decorator is deprecated since Python 3.8, use "async def" instead
__aexit__ = asyncio.coroutine(__exit__)
While the master branch has unreleased commits that weren't in the version we're testing, I believe the warning would still occur on the latest master commit at the following line:
|
__aexit__ = asyncio.coroutine(RateLimiter.__exit__) |
Is it possible to update the code to no longer create the warning and release a new version to PyPI with the update?
Our project currently uses
ratelimiter-1.2.0.post0, the latest version on PyPI.Python 3.8 has been released and we're adding a py28 CI test for our project, which resulted in the following warning:
While the master branch has unreleased commits that weren't in the version we're testing, I believe the warning would still occur on the latest master commit at the following line:
ratelimiter/ratelimiter/_async.py
Line 35 in da78a45
Is it possible to update the code to no longer create the warning and release a new version to PyPI with the update?