From 25b7a7389af5d0f33133bc733ad638d4482a3092 Mon Sep 17 00:00:00 2001 From: ntkathole Date: Tue, 1 Jul 2025 18:42:14 +0530 Subject: [PATCH] fix: Move Install OS X dependencies before python setup Signed-off-by: ntkathole --- .github/workflows/build_wheels.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 084ca9a9e26..e933f8fc49e 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -130,6 +130,9 @@ jobs: fi steps: - uses: actions/checkout@v4 + - name: Install OS X dependencies + if: matrix.os == 'macos-14' + run: brew install coreutils gettext - name: Setup Python id: setup-python uses: actions/setup-python@v5 @@ -140,9 +143,6 @@ jobs: with: name: python-wheels path: dist - - name: Install OS X dependencies - if: matrix.os == 'macos-14' - run: brew install coreutils gettext - name: Install wheel if: ${{ !matrix.from-source }} # try to install all wheels; only the current platform wheel should be actually installed