From e38e80661cd872b3034bea25991dd5d4481b6b1e Mon Sep 17 00:00:00 2001 From: Alexander Whitestone Date: Mon, 13 Apr 2026 21:28:06 +0000 Subject: [PATCH] =?UTF-8?q?fix(ci):=20remove=20py=5Fcompile=20from=20pip?= =?UTF-8?q?=20install=20=E2=80=94=20it's=20stdlib,=20not=20a=20package=20(?= =?UTF-8?q?#461)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/validate-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/validate-config.yaml b/.gitea/workflows/validate-config.yaml index 5e6d0378..e108a6ad 100644 --- a/.gitea/workflows/validate-config.yaml +++ b/.gitea/workflows/validate-config.yaml @@ -49,7 +49,7 @@ jobs: python-version: '3.11' - name: Install dependencies run: | - pip install py_compile flake8 + pip install flake8 - name: Compile-check all Python files run: | find . -name '*.py' -print0 | while IFS= read -r -d '' f; do