diff --git a/.github/workflows/publish-to-test-pypi.yml b/.github/workflows/publish-to-test-pypi.yml index 23bae4a..54f535d 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 - OPENBLAS_NUM_THREADS=1 python3 -m pytest + python3 -m pytest bump_version_and_tag: if: "github.event_name == 'push' && github.ref == 'refs/heads/main' && !startsWith(github.event.head_commit.message, 'bump:')" diff --git a/pyproject.toml b/pyproject.toml index 6848818..b9b9571 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,7 @@ tag_format = "v$version" [tool.cibuildwheel] test-command = "pytest {project}/tests" test-extras = ["test"] -test-skip = ["*universal2:arm64", "pp*", "cp{38,39,310,311,312}-manylinux_i686", "cp38-macosx_arm64", "*musllinux*", "*ppc64le", "*s390x", "cp{39,310,311,312,313}-win32"] +test-skip = ["*universal2:arm64", "pp*", "cp{38,39,310,311,312}-manylinux_i686", "cp38-macosx_arm64", "*musllinux*", "*ppc64le", "*s390x", "cp{39,310,311,312,313}-win32", "cp313*"] # Setuptools bug causes collision between pypy and cpython artifacts before-build = "rm -rf {project}/build"