Zanie Blue

Results 1223 comments of Zanie Blue

Considering some options here... - `--config-setting __=` e.g. `--config-setting foo__editable_mode=strict` - `--config-setting =` e.g. `--config-setting foo=editable_mode=strict` - `--config-setting-includes ` only pass config settings to the given packages - `--config-setting-excludes

We need to settle on a design — we're prioritizing some other things right now but if someone wants to push the design forward I can review.

Thanks for the well written report. Can you include trace logs for the uv invocation? `RUST_LOG=uv=trace uv pip install ...`

Thanks! So this difference here is that `pip` is able to use `keyring`'s Python API which allows retrieval of both a username _and_ password. We can't use that, we're limited...

Can you see the username that pip retrieves? It might just be a hard-coded string like "token". Their keyring plugin does return a username https://github.com/microsoft/artifacts-keyring/blob/master/src/artifacts_keyring/plugin.py#L135-L136 If you're on the latest...

Maybe like they implemented that wrong? cc @BakerNet You can use `python -c 'import keyring; keyring.get_credential("", username=None)'` instead

Sorry about the trouble and thanks for the additional debugging info. It looks like the keyring did not respond with credentials: ``` DEBUG Checking keyring for credentials for VssSessionToken@https://pkgs.dev.azure.com/mycompany/_packaging/MyFeed/pypi/simple/sqlmodel/ TRACE...

I'd love for this to be fixed too, but it's not entirely clear what we need to change. Perhaps we need to be requesting `https://pkgs.dev.azure.com/mycompany/_packaging/MyFeed/pypi/simple` specifically? I believe this was...

Hey @benjamin-hodgson, thanks for the offer! The biggest problem here is that I am not an Azure user and am getting mixed signals on whether or not things are working...

> I confirm this works with uv too modifying the URL and adding VssSessionToken (could uv send it automatically?). We can't make assumptions about the default username — this differs...