Importing Sequence from collections now triggers an error in Python > 3.7, see here:
if not isinstance(y, (collections.Sequence, np.ndarray, pd.core.series.Series)):
if not isinstance(y, (collections.abc.Sequence, np.ndarray, pd.core.series.Series)):
for instance (there may be similar instances in other file from this package).
Importing Sequence from collections now triggers an error in Python > 3.7, see here:
https://stackoverflow.com/questions/69596494/unable-to-import-freegames-python-package-attributeerror-module-collections
So the code in
bic.pyshould be replaced by
for instance (there may be similar instances in other file from this package).