python 3.8버전 이상에서 MutableMapping의 경로가 collections 에서 collections.abc로 수정되었습니다.
아래와 같이 버전을 체크하여 경로를 수정하는 코드가 필요해 보입니다.
import sys
if sys.version_info[:2] >= (3, 8):
from collections.abc import MutableMapping as DictMixin
else:
from collections import MutableMapping as DictMixin
python 3.8버전 이상에서
MutableMapping의 경로가collections에서collections.abc로 수정되었습니다.아래와 같이 버전을 체크하여 경로를 수정하는 코드가 필요해 보입니다.