Zanie Blue
Zanie Blue
What do you want me to test?
I get ``` ❯ python3.12 -c "import platform; print(platform.mac_ver())" ('14.0', ('', '', ''), 'arm64') ```
Let's just send `platform.mac_ver()[0]` for now and address problems if they come up?
I guess this isn't trivial because we're not currently storing patch versions on `Platform`. We'd need to add `patch: Option` at https://github.com/astral-sh/uv/blob/c296da34bffd19d41b895bd5aa06e78d79c71bd4/crates/platform-tags/src/platform.rs#L46 and populate the value at in our retrieval...
I'd prefer to use all the information we're already getting from Python (as we do here). I feel like we should see if the patch version is actually important to...
I hope you don't mind I pushed https://github.com/astral-sh/uv/pull/2509/commits/637a9cee7643dfde27de520fa019a596fd5d4a7f in an attempt to resolve the error you were encountering. We really ought to use snapshots for these lineinfo tests though.
Thanks for the issue! This is the kind of thing we plan to tackle in the future, i.e. when we build an opinionated workflow for environment management. It's not in...
Hm so in `pip install` we create a temporary directory in the current virtual environment https://github.com/astral-sh/uv/blob/b5617198f35c89a33f073c677ed9164bb661509c/crates/uv/src/commands/pip_install.rs#L188 https://github.com/astral-sh/uv/blob/b5617198f35c89a33f073c677ed9164bb661509c/crates/uv/src/commands/pip_install.rs#L360 but eventually we get to https://github.com/astral-sh/uv/blob/12fea1d058083a4f8a032ca8295a7d95a776292e/crates/uv-build/src/lib.rs#L286 via https://github.com/astral-sh/uv/blob/2586f655bbf650a9797c8f88b6d9066eefe7a3dc/crates/uv-dispatch/src/lib.rs#L274 https://github.com/astral-sh/uv/blob/340cb67a8b2a708996bd87369d2cadf48ef9df63/crates/uv-distribution/src/source/mod.rs#L954 where we create a...
Thank you! @ifplusor we still need to add a fallback copy as described in this issue, but until then you should be able to set `UV_CACHE_DIR` to avoid copying across...
@omh1280 feel free to give it a try!