Henry Schreiner
Henry Schreiner
> This would require only one project for N backends instead of N for N. Extras just install packages, so this could be a user facing nicety, but you'd still...
pipx run does this; you can specify version specifiers and extras. When making the package name, it runs them through packaging and just picks the package name out.
I know pipx supports the first three. Haven’t seen the forth.
Note, the benefits of just parsing the version and extra syntax like normal, and passing on the package name, is that people don't have to learn a new syntax (it...
I believe adding this to your toml: ```toml [tool.hatch.envs.default] installer = "uv" ``` Sets it as the default in the main places where it's not already the default (it is...
FYI, I tested PIP_NO_DEPENDENCIES and it does work.
These are automatically generated from the command line flags. Every command line flag in pip has an environment variable version, but that’s why they’re not customized.
Personally, I think I'd assume that I could remove these flags and then depend on build isolation working - which is very much not the case. I'm not fond of...
It should try the local one first. If it’s installed in the build env, you should not be able to get past it (unless it was broken). Though the outer...
Anything unusual about your setup that I could reproduce? I've tried to reproduce this, but haven't been able to. I've tried something like this: ```bash docker run --rm -it ubuntu:24.10...