f13671782e
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [astral-sh/uv](https://redirect.github.com/astral-sh/uv) | uses-with | patch | `0.9.24` → `0.9.26` | --- ### Release Notes <details> <summary>astral-sh/uv (astral-sh/uv)</summary> ### [`v0.9.26`](https://redirect.github.com/astral-sh/uv/blob/HEAD/CHANGELOG.md#0926) [Compare Source](https://redirect.github.com/astral-sh/uv/compare/0.9.25...0.9.26) Released on 2026-01-15. ##### Python - Add CPython 3.15.0a5 ##### Enhancements - Add a hint to update uv when a managed Python download is not found ([#​17461](https://redirect.github.com/astral-sh/uv/pull/17461)) - Improve cache initialization failure error message ([#​17469](https://redirect.github.com/astral-sh/uv/pull/17469)) - Improve error message for abi3 wheels on free-threaded Python ([#​17442](https://redirect.github.com/astral-sh/uv/pull/17442)) - Add support for `--no-sources-package` ([#​14910](https://redirect.github.com/astral-sh/uv/pull/14910)) ##### Preview features - Add `METADATA.json` and `WHEEL.json` in uv build backend ([#​15510](https://redirect.github.com/astral-sh/uv/pull/15510)) - Add support for GCS request signing ([#​17474](https://redirect.github.com/astral-sh/uv/pull/17474)) - Adjust the process ulimit to the maximum allowed on startup ([#​17464](https://redirect.github.com/astral-sh/uv/pull/17464)) ##### Bug fixes - Lock to avoid concurrent refresh of pyx tokens ([#​17479](https://redirect.github.com/astral-sh/uv/pull/17479)) ##### Documentation - Add linting and formatting instructions to the CONTRIBUTING guide ([#​17470](https://redirect.github.com/astral-sh/uv/pull/17470)) - Avoid rendering `pyproject.toml` examples for more system-level settings ([#​17462](https://redirect.github.com/astral-sh/uv/pull/17462)) ### [`v0.9.25`](https://redirect.github.com/astral-sh/uv/blob/HEAD/CHANGELOG.md#0925) [Compare Source](https://redirect.github.com/astral-sh/uv/compare/0.9.24...0.9.25) Released on 2026-01-13. ##### Python - Add CPython 3.15.0a4 - Upgrade Tcl/Tk used by CPython to 9.0 ##### Enhancements - Add `--compile-bytecode` to `uv python install` and `uv python upgrade` to compile the standard library ([#​17088](https://redirect.github.com/astral-sh/uv/pull/17088)) - Allow disabling `exclude-newer` per package ([#​16854](https://redirect.github.com/astral-sh/uv/pull/16854)) - Broadcast `WM_SETTINGCHANGE` on `uv tool update-shell` ([#​17404](https://redirect.github.com/astral-sh/uv/pull/17404)) ##### Preview features - Detect workspace from `uv run` target ([#​17423](https://redirect.github.com/astral-sh/uv/pull/17423)) ##### Bug fixes - Avoid unwrapping size for file responses ([#​17434](https://redirect.github.com/astral-sh/uv/pull/17434)) - Use keyring authentication when retrieving `tool@latest` version ([#​17448](https://redirect.github.com/astral-sh/uv/pull/17448)) - Use latest Pyodide version for each python version ([#​17372](https://redirect.github.com/astral-sh/uv/pull/17372)) - Improve trampoline file handle closing ([#​17374](https://redirect.github.com/astral-sh/uv/pull/17374)) - Fix error message when installing musl python on armv7 ([#​17213](https://redirect.github.com/astral-sh/uv/pull/17213)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/astral-sh/uv). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi43NC41IiwidXBkYXRlZEluVmVyIjoiNDIuNzQuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiaW50ZXJuYWwiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
32 lines
983 B
YAML
32 lines
983 B
YAML
on:
|
|
workflow_call:
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
docs:
|
|
timeout-minutes: 10
|
|
name: "mkdocs"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
with:
|
|
fetch-depth: 0
|
|
persist-credentials: false
|
|
- uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
|
|
with:
|
|
version: "0.9.26"
|
|
|
|
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
|
|
- uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # v2.8.2
|
|
with:
|
|
save-if: ${{ github.ref == 'refs/heads/main' }}
|
|
- name: "Generate reference documentation"
|
|
run: |
|
|
cargo dev generate-options-reference
|
|
cargo dev generate-cli-reference
|
|
cargo dev generate-env-vars-reference
|
|
|
|
- name: "Build docs"
|
|
run: uvx --with-requirements docs/requirements.txt mkdocs build --strict -f mkdocs.yml
|