uv icon indicating copy to clipboard operation
uv copied to clipboard

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

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

### Summary Constrained by the network environment, I hope that the single-file script I distribute includes `python-install-mirror` configuration. In this way, when users execute the script, Python and its dependencies...

enhancement
needs-decision

### Summary Hello, It seems that `uv pip install --group` and `pip install --group` (pip 25.1) have different behaviors for installing Dependency Groups. ```toml [dependency-groups] dev = [ "ruff", ]...

bug

### Summary I'm Trying to setup a CI Workflow on GitHub Actions for a private repository that must pull another private repository. Using a Github PAT, I can make it...

bug

## Summary uv publish currently fails with the error message "error: Local file and index file do not match ... " if an attempt is made to publish a file...

### Summary ``` $ uvx --from filprofiler fil-profile run /home/ubuntu/.cache/uv/archive-v0/XOqyFIkcUdoVQgnvzTIvp/bin/python: error while loading shared libraries: /home/ubuntu/.cache/uv/archive-v 0/XOqyFIkcUdoVQgnvzTIvp/bin/../lib/libpython3.13.so.1.0: cannot open shared object file: No such file or directory ``` Seems uv...

bug

### Summary The environment variable resolution, for good reason, considers `--frozen` (`UV_FROZEN=1`) and `--check` (`UV_LOCKED=1`) [to be conflicting.](https://github.com/astral-sh/uv/blob/e70cf25ea72c94502d08637474e9e4ad576bf342/crates/uv-cli/src/lib.rs#L3278) However, the `false`/`0` values should not cause conflicts. For example, if in...

bug

### Summary when subprocessing `uv` / `uvx` --managed-python isn't recognized as an argument ![Image](https://github.com/user-attachments/assets/1c38e072-004c-4b40-8298-f98d330fab04) ### Example used like so: ```py cmd = [ "uvx", "--managed-python", "--refresh", "--isolated", "--with-requirements", deps.temp_requirements().as_posix(), "nuitka",...

enhancement

### Summary `uv 0.7.3` I assume this is basically the same as https://github.com/astral-sh/uv/issues/3516, but I am looking at setting up a lock file as part of our workflow and I...

enhancement

the [docs on build isolation](https://github.com/astral-sh/uv/blob/45455b33c0a6dfb358345a79abd79ee593253887/docs/concepts/projects/config.md?plain=1#L214) explain how to setup a two-stage build/compile `uv sync` setup to deal with packages which depend on torch at build time. i'm glad this is...

enhancement
needs-design

### Summary I have a CLI project. My customers run it via `uv run --refresh --frozen --with git+https://github.com/Cloud-Pipelines/oasis-cli.git@5625f4ef1b4c6de65bee913c3cc31bf1cb1c3154 oasis` or `uvx --from git+https://github.com/Cloud-Pipelines/oasis-cli.git@5625f4ef1b4c6de65bee913c3cc31bf1cb1c3154 oasis` It has a `uv.lock` lockfile with...

question