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
This particular usage of distutils concerns the install (setup.py):
setup.py:87: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead.
if LooseVersion(cython_version) < LooseVersion('0.21'):
This particular usage of distutils concerns the install (setup.py):
Either bundle some solution a la scipy._lib._pep440 or switch to the packaging package using
packaging.version.Version
.The text was updated successfully, but these errors were encountered: