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
The historical distutils Python standard module has been marked as deprecated since Python 3.10 and has been removed since Python 3.12... it's time to act!
The solution is simple.
Replace from distutils.core import setup by from setuptools import setup.
Thanks to @CAM-Gerlach for the reminder (I had completely forgotten about this...).
The text was updated successfully, but these errors were encountered:
The historical
distutils
Python standard module has been marked as deprecated since Python 3.10 and has been removed since Python 3.12... it's time to act!The solution is simple.
Replace
from distutils.core import setup
byfrom setuptools import setup
.Thanks to @CAM-Gerlach for the reminder (I had completely forgotten about this...).
The text was updated successfully, but these errors were encountered: