packaging.python.org
packaging.python.org copied to clipboard
Update glossary.rst
fix seeming typo and add link to the correct term
📚 Documentation preview 📚: https://python-packaging-user-guide--1537.org.readthedocs.build/en/1537/
The phrasing is sub-optimal but it's correct: a build backend does indeed build an sdist or a wheel.
Good point. What about the phrasing in the last commit? I feel it is less ambiguous this way. I also removed the reference to "wheel" for clarity and also because its already inside the "Built Distribution" description. @webknjaz
I am not sure the build backends really do accept an sdist as input.
They don't. The frontends do the unpacking as a part of the ephemeral build environment provisioning and call the backends against that dir on disk. cibuildwheel does that, and build recently got this feature. Pip was the first frontend to implement this logic, I think.