astral-uv:zb/cache-windows-python

Last commit made on 2024-02-13
Get this branch:
git clone -b zb/cache-windows-python https://git.launchpad.net/astral-uv

Branch merges

Branch information

Name:
zb/cache-windows-python
Repository:
lp:astral-uv

Recent commits

8e7c5b3... by Zanie <email address hidden>

Empty commit to test cache

e2cbeec... by Zanie <email address hidden>

Cache Python binaries in CI on Windows

b5dd8b7... by Zanie Blue <email address hidden>

Track yanked versions as incompatibilities (#1290)

Moves yanked version filtering from `VersionMap::from_metadata` to the
resolver and tracks it as a PubGrub unavailable incompatibility so
yanked versions are reflected in error messages.

e.g. before
```
╰─▶ Because only albatross<=0.1.0 is available and you require albatross>0.1.0,
       we can conclude that the requirements are unsatisfiable.
```

after

```
╰─▶ Because only the following versions of albatross are available:
            albatross<=0.1.0
            albatross==1.0.0
      and albatross==1.0.0 is unusable because it was yanked, we can conclude that albatross>0.1.0 cannot be used.
      And because you require albatross>0.1.0, we can conclude that the requirements are unsatisfiable.
```

d8619f6... by Charlie Marsh <email address hidden>

Surface errors for offline `--find-links` URLs (#1271)

## Summary

Ensures that if the user passes `--no-index` with `--find-links`, and
we're unable to access the HTML page, we show an appropriate hint.

16bb801... by Charlie Marsh <email address hidden>

Add an `--offline` mode (#1270)

## Summary

This PR adds an `--offline` flag to Puffin that disables network
requests (implemented as a Reqwest middleware on our registry client).
When `--offline` is provided, we also allow the HTTP cache to return
stale data.

Closes #942.

942e353... by Zanie Blue <email address hidden>

Change ordering of highlights in readme (#1289)

Also, shorten some more items

2a3e817... by Zanie Blue <email address hidden>

Shorten the novel features highlight in README (#1265)

929715f... by Charlie Marsh <email address hidden>

Swap out Discord icon (#1287)

0cd6b7b... by Zanie Blue <email address hidden>

Fix incompatible wheel test scenarios (#1284)

I had specified the tags incorrectly
https://github.com/zanieb/packse/pull/105

6d24d99... by Zanie Blue <email address hidden>

Add scenarios for yanked packages (#1283)