Python's standard library 'distutils' now raises a deprecation, warning that the module will be removed from the public API by Python 3.12.
DeprecationWarning: The distutils package is deprecated and slated for removal in Python 3.12. Use setuptools or check PEP 632 for potential alternatives.
Migrate the code base away from any direct use of 'distutils', and instead use the 'setuptools' equivalents.
The direct use of 'distutils' has now been removed, as of commit a99a4fd0 in the 'main' branch.
Metadata Update from @bignose: - Issue close_status updated to: Fixed - Issue status updated to: Closed (was: Open)