You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Deprecation warning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.9 it will stop working #277
I get the above deprecation warning when importing libtmux
import libtmux
File "env/lib/python3.8/site-packages/libtmux/__init__.py", line 16, in <module>
from .pane import Pane
File "env/lib/python3.8/site-packages/libtmux/pane.py", line 13, in <module>
from .common import TmuxMappingObject, TmuxRelationalObject
File "env/lib/python3.8/site-packages/libtmux/common.py", line 221, in <module>
class TmuxMappingObject(collections.MutableMapping):
File "/usr/lib/python3.8/collections/__init__.py", line 49, in __getattr__
warnings.warn("Using or importing the ABCs from 'collections' instead "
DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.9 it will stop working