From 0f46fa45596c698629ba3d4066b718547a9e2bc2 Mon Sep 17 00:00:00 2001 From: Joe Zuntz Date: Thu, 28 Nov 2024 15:14:06 +0000 Subject: [PATCH] force numpy1 for macos-13 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 93d238fb..ea727df7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -84,7 +84,7 @@ jobs: - name: Install python dependencies run: | python -m pip install --upgrade pip - if [[ "${{ matrix.python-version }}" == '3.7' || "${{ matrix.python-version}} == '3.8'" ]]; then + if [[ "${{ matrix.os }}" == "macos-13" || "${{ matrix.python-version }}" == '3.7' || "${{ matrix.python-version}} == '3.8'" ]]; then NUMPY_VERSION="<2" else NUMPY_VERSION=">=2"