From 9962c671269fb685402729e00dd5bd47ef8904b2 Mon Sep 17 00:00:00 2001 From: johnthagen Date: Tue, 21 Oct 2025 13:16:59 -0400 Subject: [PATCH] Update to uv 0.9.5 --- .github/workflows/ci.yml | 2 +- .github/workflows/pages.yml | 2 +- Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 50e115d..72eb106 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ name: CI on: [push, pull_request] env: - UV_VERSION: "0.9.2" + UV_VERSION: "0.9.5" jobs: test: diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 5ed8292..05fa05f 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -8,7 +8,7 @@ on: branches: [main] env: - UV_VERSION: "0.9.2" + UV_VERSION: "0.9.5" jobs: deploy: diff --git a/Dockerfile b/Dockerfile index fc8ef9d..041a721 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ FROM python:3.13-slim-trixie AS python_builder # Pin uv to a specific version to make container builds reproducible. -ENV UV_VERSION=0.9.2 +ENV UV_VERSION=0.9.5 ENV UV_PYTHON_DOWNLOADS=never # Set ENV variables that make Python more friendly to running inside a container.