From 4bdcec9622c4931fb5d2babcbf5448ccf02a9eb0 Mon Sep 17 00:00:00 2001 From: Jo <10510431+j178@users.noreply.github.com> Date: Sat, 13 Jul 2024 23:25:03 +0800 Subject: [PATCH] Fix Fedora system test (#5034) Seems like the latest [`fedora:41`](https://hub.docker.com/layers/library/fedora/rawhide/images/sha256-c037a87094660ceda037ee319b17f59559241d2a3580d1d0f414e72b0a8f3827?context=explore) (pushed at Jul 12, 2024 at 22:05 UTC) docker image has removed the `python3` package, causing our current [CI failure](https://github.com/astral-sh/uv/actions/runs/9917708846/job/27401528178). --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b2b50829d..dc9b3d4b7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -637,7 +637,7 @@ jobs: - uses: actions/checkout@v4 - name: "Install Python" - run: dnf install which -y && python3 -m ensurepip + run: dnf install python3 which -y && python3 -m ensurepip - name: "Download binary" uses: actions/download-artifact@v4