Freddy

Results 11 comments of Freddy

``` cmake -S . -B build -DBUILD_EXAMPLES=ON cmake --build build --parallel ```

I can reproduce this by: 1. `pyenv uninstall 3.10.16` (or whatever version you have installed. I only did this to make sure I had a clean install, it didn't seem...

That sounds like the reasonable thing to do, but I don't think I've deactivated managed python versions. The `pyproject.toml` contains no such configuration, and neither does `~/.config/uv/uv.toml`. I have no...

I just encountered the same issue in the project root now, so it's not isolated to subdirs (for me) as it initially seemed.

My bad, sorry. Totally slipped my mind to include the verbose output 🤦‍♂️ Created a fresh project, `uv init --package pin`, and ran `uv python pin 3.13` before trying to...

Certainly, and that worked: ``` ~/pin (main ✗) uv python pin 3.10 --managed-python -v DEBUG uv 0.7.3 DEBUG Found project root: `/home/xxxxxxx/pin` DEBUG No workspace root found, using project root...

Managed to reproduce it with this `Dockerfile`: ``` FROM ubuntu:24.04 RUN apt update && \ apt install -y curl python3 python3-pip git build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev libncursesw5-dev xz-utils...

I think I've found the reason. https://github.com/astral-sh/uv/blob/9d1a14e1f9d824d8b4932292cbcf304f51c2ada9/crates/uv-python/src/discovery.rs#L1131 ``` // If we found a Python, but it was unusable for some reason, report that instead of saying we // couldn't find...

I can't repro this anymore (0.7.13). Thanks for fixing 🙏 How I tried to repro: ``` FROM ubuntu:24.04 RUN apt update && \ apt install -y curl python3 python3-pip git...

I believe @carlpaten was asking whether `uv` plugs into the mechanics of `argcomplete` when typing `uv run myscript.py `, not `uv` itself, right? (That's at least what I was looking...