I recently encountered the following warning while running python-docx:
section.py:7: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working
from collections import Sequence
I noticed that other third-party packages have encountered this same issue and resolved it. See marshmallow-code/marshmallow#1027 for example.