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 historical
distutilsPython 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 setupbyfrom setuptools import setup.Thanks to @CAM-Gerlach for the reminder (I had completely forgotten about this...).