Closed oliverholworthy closed 1 year ago
Fixes the following error in Python 3.10 environment
AttributeError: module 'collections' has no attribute 'Sequence'
Replace import of collections.Sequence with collections.abc.Sequence
This was deprecated in Python 3.7 and moved in Python 3.10
https://nvidia-merlin.github.io/models/review/pr-1166
Fixes the following error in Python 3.10 environment
Replace import of collections.Sequence with collections.abc.Sequence
This was deprecated in Python 3.7 and moved in Python 3.10