From 8423cdb156b746d8b52d49acbddc98176e27ef3f Mon Sep 17 00:00:00 2001 From: Rob Davis Date: Fri, 13 Sep 2024 14:46:35 +0100 Subject: [PATCH] set macosx deployment target = 10.13 --- .github/workflows/test_pr.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_pr.yml b/.github/workflows/test_pr.yml index 40005808..9c97481f 100644 --- a/.github/workflows/test_pr.yml +++ b/.github/workflows/test_pr.yml @@ -79,11 +79,15 @@ jobs: run: | echo "OMP_NUM_THREADS=2" >> $GITHUB_ENV - - name: Test Core + # - name: Test Core + # run: | + # pip install .[testing] + # pip freeze + # pytest -vvvsx --timeout=2000 --timeout-method=thread -m "not slow" --durations=50 + - name: Set macOS deployment target run: | - pip install .[testing] - pip freeze - pytest -vvvsx --timeout=2000 --timeout-method=thread -m "not slow" --durations=50 + echo "MACOSX_DEPLOYMENT_TARGET=10.13" >> $GITHUB_ENV + if: ${{ runner.os == 'macOS' }} - name: Test GOGGLE run: |