You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is yet another compatibility issue with Python 3.12. The package pkg_resources, that was already deprecated, has been removed from Python 3.12. This package is used in the following three files:
RMextract/EMM/EMM.py
RMextract/pyiri/pyiri.py
RMextract/pyiriplas/pyiriplas.py
In this case the alternative is to use importlib.resources (or its back-ported cousin importlib_resources).
The text was updated successfully, but these errors were encountered:
There is yet another compatibility issue with Python 3.12. The package
pkg_resources
, that was already deprecated, has been removed from Python 3.12. This package is used in the following three files:In this case the alternative is to use
importlib.resources
(or its back-ported cousinimportlib_resources
).The text was updated successfully, but these errors were encountered: