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
I am not familar enough with the Kodi addon system to know if it is easy to include packaging as a third party dependency in the addon or if it is easier to replace the use of distutils.version.StrictVersion in this addon with some custom code.
The text was updated successfully, but these errors were encountered:
The Python
distutils
package is used in this addon:plugin.video.drnu/resources/lib/addon.py
Line 26 in c9559eb
Unfortunately, the
distutils
package has been deprecated in Python 3.10 and removed in Python 3.12 making this addon fail when used with Python >=3.12.A workaround is to install
setuptools
>= 60.0.0 which includes a copy ofdistutils
. However, the use ofdistutils
fromsetuptools
is discouraged in favor of transitioning to more modern alternatives. Specifically, for thedistutils.version
, it is recommended to transition topackaging.version
.I am not familar enough with the Kodi addon system to know if it is easy to include
packaging
as a third party dependency in the addon or if it is easier to replace the use ofdistutils.version.StrictVersion
in this addon with some custom code.The text was updated successfully, but these errors were encountered: