Filipe Laíns 🇵🇸
Filipe Laíns 🇵🇸
pip is not a dependency, we use the standard library `venv` module to build an environment with pip installed, which it does using the standard library `ensurepip` module. The issue...
I believe `--without-ensurepip` is equivalent to `--with-ensurepip=no` which IIRC prevents ensurepip from being run on install. If you do not patch the Python installation in any way, this should work...
Then try to use venv to setup a virtual environment with pip (it does by default) and check if that works. If it does, then you are likely running into...
``` $ python -m venv test $ test/bin/pip --version ``` You can delete `test` after.
IMO this is out of scope. Maybe if this information wasn't in the file name I would agree on having a manifest with extra information. I think it is fairly...
Perhaps something for https://github.com/pypa/wheel? `python -m wheel info ~/Downloads/packaging-20.7-py2.py3-none-any.whl`?
Hum, I still am not convinced. I would like to keep the CLI fairly simple. As you said > would provide a minor convenience over globbing Unless there is a...
> Because otherwise, dist might contain previous builds you don't want to upload via a simple globbing. But you can simply choose other dist folder. If this was not possible...
Okay, I see the need, though I don't think adding a new option for the might be the best solution. `python -m build` is a command for users, it is...
I think I am okay with going with @uranusjr proposal of a programmatic API, though it is not the cleanest solution for this. It would still be useful on its...