/home/crunch/.cache/pypoetry/virtualenvs/musicbot-py3.7/lib/python3.7/site-packages/watchdog/utils/bricks.py:175: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working
class OrderedSet(collections.MutableSet):
Simple fix : use collections.abc.MutableSet
Oups, already fixed in master !
This warning is present in 0.9.0, which is the current version at time of typing:
https://pypi.org/project/watchdog/#history
Note that 0.9.0 was released on Aug 28, 2018. The fix was implemented on Sep 10, 2018 (see https://github.com/gorakhargosh/watchdog/commit/69871314de0e5d8422c070bc91fed26ed5ce94a0#diff-1fc0dfc77c8110671a21b65dc4b42543R179)
It doesn't look like there's another release yet. See https://github.com/gorakhargosh/watchdog/issues/485
Most helpful comment
Oups, already fixed in master !