From d46c0ca223fa780850cf12092e2726b549b25bf8 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Tue, 11 Feb 2025 23:55:11 +0200 Subject: [PATCH] =?UTF-8?q?[ci]=20Don=E2=80=99t=20use=20system=20Python=20?= =?UTF-8?q?on=20Linux?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We are already installing one using actions/setup-python. --- .github/workflows/linux-ci.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/linux-ci.yml b/.github/workflows/linux-ci.yml index 30ba6c5e4..fafb00829 100644 --- a/.github/workflows/linux-ci.yml +++ b/.github/workflows/linux-ci.yml @@ -34,16 +34,13 @@ jobs: libglib2.0-dev \ libgraphite2-dev \ libicu-dev \ - ninja-build \ - pkg-config \ - python3 \ - python3-setuptools + pkg-config - name: Setup Python uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0 with: python-version: '3.12' - name: Install Python Dependencies - run: sudo pip3 install -r .ci/requirements.txt --require-hashes + run: pip3 install -r .ci/requirements.txt --require-hashes - name: Setup Meson run: | ccache --version