From 588c50f5123f79d0c14369cc08b9253b2ba3bbc5 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Ruel Date: Thu, 15 Aug 2024 15:57:27 -0400 Subject: [PATCH] fix: OPENBLAS_NUM_THREADS=1 to fix numpy on python 3.13 --- .github/workflows/publish-to-test-pypi.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-to-test-pypi.yml b/.github/workflows/publish-to-test-pypi.yml index 54f535d..23bae4a 100644 --- a/.github/workflows/publish-to-test-pypi.yml +++ b/.github/workflows/publish-to-test-pypi.yml @@ -36,7 +36,7 @@ jobs: - name: Run tests run: | python3 -m pip install numpy pytest - python3 -m pytest + OPENBLAS_NUM_THREADS=1 python3 -m pytest bump_version_and_tag: if: "github.event_name == 'push' && github.ref == 'refs/heads/main' && !startsWith(github.event.head_commit.message, 'bump:')"