Henry Schreiner

Results 2524 comments of Henry Schreiner

What about the CLI? Here's how build works, and I'd recommend the same thing for `uv build` unless there's a good reason to do something different (build intentionally deviates from...

The nice thing about "build" is it could be just like "pip", a copy of the PyPA tool that everyone is already familiar with. And it's nicely low level, rather...

Kind of, though that refers to “pip build”, which isn’t a thing. And I’m specifically interested in mimicking pypa/build as closely as reasonable with “uv build”, just like “uv pip”...

This is the recipe for zip apps: ```console $ mkdir tmp $ pip install --no-compile --target=tmp . dep_1 dep_2 $ cd tmpdir $ python -m zipapp --compress --python=/usr/bin/env python3 --main=myapp.__main__:main...

(build maintainer here) I think `uv` should gain a `build` subcommand (I might even help work on that in the near future) - see https://github.com/astral-sh/uv/issues/1510. The producedure is well documented...

```toml # .cargo/config.toml [env] PYO3_PYTHON = "./.venv/bin/python" ``` Worked for me. Had to make it (`uv venv`) and vscode asked if I wanted to use it, I said yes. I...

Oh, it is valid though to include individual headers (it's in the readme). It sounds like this will just point users to always including the conglomerate header? Shouldn't these (Config...

This looks great, happy to see someone making the default formatter closer to existing standards. @phlptp Feel free to move forward! (Sorry for the long delay, I've been busy with...

As far as I can tell, Microsoft has deprecated UWP a few years ago (https://www.thurrott.com/dev/258377/microsoft-officially-deprecates-uwp), and I'm not sure a CLI interface makes much sense in a UWP app anyway....