From 76421ef32100031b2d57ac401f8a0b5c7f8c88f4 Mon Sep 17 00:00:00 2001 From: Celestia Ludenberg Date: Sun, 7 Jun 2026 19:51:50 +0000 Subject: [PATCH] fix: add --break-system-packages for PEP 668 compatibility The archlinux container now has Python's externally-managed-environment protection. This fix allows pip to install internetarchive for Internet Archive uploads. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cd220d2..cf1654c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -53,7 +53,7 @@ jobs: IA_EMAIL: ${{ secrets.IA_EMAIL }} IA_PASSWORD: ${{ secrets.IA_PASSWORD }} run: | - pip install internetarchive + pip install --break-system-packages internetarchive ia configure --email="$IA_EMAIL" --password="$IA_PASSWORD" ISO=$(ls out/*.iso | head -1) ia upload antergos-next "$ISO" \