From a9b76edca6b4b447312964b8b6265b8719c6d1bb Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Tue, 5 Nov 2024 01:59:46 +0200 Subject: [PATCH] [ci] Pin Python version to 3.12 on macOS It seems that lxml does not have 3.13 binary wheels (for macOS at least), and building it from source is failing. --- .github/workflows/macos-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/macos-ci.yml b/.github/workflows/macos-ci.yml index 705dbbadb..42617a1f1 100644 --- a/.github/workflows/macos-ci.yml +++ b/.github/workflows/macos-ci.yml @@ -37,7 +37,7 @@ jobs: - name: Setup Python uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 with: - python-version: '3.x' + python-version: '3.12' - name: Install Python Dependencies run: pip3 install -r .ci/requirements.txt --require-hashes - name: Setup Meson