Skip to content

Commit

Permalink
Fix Fedora system test (#5034)
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
j178 authored Jul 13, 2024
1 parent f770b25 commit 4bdcec9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4bdcec9

Please sign in to comment.