uv icon indicating copy to clipboard operation
uv copied to clipboard

An extremely fast Python package and project manager, written in Rust.

Results 1088 uv issues
Sort by recently updated
recently updated
newest added

This is a probably-unsafe optimization we could perform, but e.g., poetry-core always returns `[]` (https://github.com/python-poetry/poetry-core/blob/21b00338544f52df7c3ba320f5f242a2fc815b65/src/poetry/core/masonry/api.py#L20C1-L20C1). So if we're using a version of poetry-core that we _know_ always returns `[]`, we...

performance
needs-decision

From the `pip` docs: > The `--report` option of the pip install command produces a detailed JSON report of what it did install (or what it would have installed, if...

enhancement

We currently assume `py`, the python launcher on windows, is always present. We should test without it and allow only `python.exe` and show good error messages when both are missing.

error messages
windows

I am running ```bash uv pip install package-name --index-url https://username:[email protected]/[redacted]/pypi/simple/ ``` It is being correctly parsed: ``` parse url=Url { scheme: "https", cannot_be_a_base: false, username: "username", password: Some("personalaccesstoken"), host: Some(Domain("pkgs.dev.azure.com")),...

bug
registry

Hi, `venv` has an mainly undocumented feature : ```sh $ python3.9 -m venv --prompt= ./venv ``` This command creates the virtuelenv, and append a prompt parameter ti the `pyvenv.cfg` file...

compatibility
virtualenv

e.g. to help guard against common mistakes

enhancement
error messages
virtualenv

It is common for virtual environment directories to be either .venv/ or venv/, but only .venv/ is currently supported in without needing to activate the environment. Since both are common...

configuration
virtualenv

Thanks a lot for this project, happy to see the so much progress in the python packaging ecosystem! I tried to use `uv` with a private pip repository hosted in...

We set limits to the number of concurrent tasks in a number of places. We should revisit them and decide whether these number are good. Increasing them may speed up...

performance
configuration

I see from https://github.com/astral-sh/uv/issues/815 that you're aware of `pip-compile-multi`, just wondering if you have plans to add support for that too?

question