From 5104fdf27ae0ab9c71efc18a4dd1e40e1ad6af57 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Tue, 10 Mar 2026 11:21:35 -0400 Subject: [PATCH] CI: fix ruff install on Ubuntu 24.04 (PEP 668) Ubuntu 24.04 blocks pip install into the system Python by default. Add --break-system-packages for the lint job's throwaway container. Co-Authored-By: Claude Sonnet 4.6 --- .forgejo/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index c4b0cb9..eb0f79e 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -64,7 +64,7 @@ jobs: - uses: actions/checkout@v6 - name: Install ruff - run: pip install ruff + run: pip install --break-system-packages ruff - name: Lint run: ruff check src/