pycontribs/subprocess-tee

py38: DeprecationWarning: The explicit passing of coroutine objects to asyncio.wait()

ssbarnea opened this issue · 2 comments

Current implementation is producing a deprecation warning in py39:

subprocess_tee/__init__.py:46: DeprecationWarning: The explicit passing of coroutine objects to asyncio.wait() is deprecated since Python 3.8, and scheduled for removal in Python 3.11.
    await asyncio.wait(

https://github.com/pycontribs/subprocess-tee/blob/main/lib/subprocess_tee/__init__.py#L46

If anyone knows how to address this deprecation warning without breaking backwards compatibility with py36+, I would greatly appreciate.

Hello, how did you solve this problem?