Description
Summary
The porting from distutils docs are a bit sparse, and could use some more specific examples. Specifically, for distutils.ccompiler
and distutils.util.get_platform
were the replacements I was looking for, and didn't find.
Maybe it would be good to start populating a FAQ section at or linked from the docs. Starting out with finishing the the table in the pep with actual recommended import substitutions that work (4 are there already), would be a huge help for migrators like myself.
OS / Environment
No response
Additional Information
In attempting to migrate https://github.com/zeromq/pyzmq away from distutils, I came up with some questions that don't appear to have clear answers in docs, and it seems like setuptools is the right place for such docs (if that's wrong, what is the right place?).
The pep lists setuptools as the thing to switch to for several APIs, such as ccompiler
, etc., but at least ccompiler
does not appear to be available from public setuptools APIs. Is importing form setuptools._distutils
the 'right' way in general to get distutils functionality that hasn't been exposed at public level of setuptools yet? Or are there plans to expose these as top-level APIs (e.g. setutools.ccompiler
)?
I can import new_compiler
and customize_compiler
from setuptools.command.build_ext
, but that doesn't seem better than setuptools._distutils.ccompiler
to me. If it were documented as the suggested alternative, I'd be happy, though.
Could we perhaps have a statement in the docs about when, if ever, importing from setuptools._distutils
is appropriate? The text already there:
If a project relies on uses of distutils that do not have a suitable replacement above, please search the Setuptools issue tracker and file a request
suggests anything that requires importing from setuptools._distutils
should result in an Issue (how I got here), but maybe could be more explicit about what to do while finding a resolution. A blessing of "import from setuptools._distutils
" in the interim would ease some stress on migrators, but may not be what you all want to support.
The pep also lists the platform
module as the replacement for distutils.util.get_platform
, but in my experience this is not the right advice. Where I've used distutils.util.get_platform()
, what I really wanted was the build platform string, which is available as dist.get_command_obj('build').plat_name
. I don't always call it from within a command so this is a bit inconvenient, but I think I can manage. I don't think it's possible to construct this from the platform
module.
Code of Conduct
- I agree to follow the PSF Code of Conduct