Created by: stefanor
setuptools 60 uses its own bundled version of distutils, by default. It injects this into sys.modules, at import time. So we need to make sure that it is imported, before anything else imports distutils, to ensure everything is using the same distutils version.
In this case, the Cython imports import distutils, so we need to pre-empt that.
This change in setuptools is to prepare for Python 3.12, which will drop distutils.