From 8121b6733ac063babb178db4b9959123e7da3062 Mon Sep 17 00:00:00 2001 From: Antony Lewis Date: Wed, 5 Jun 2024 11:50:42 +0100 Subject: [PATCH] update --- .github/workflows/build_wheels.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 0e675188..2ffd5862 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -28,13 +28,14 @@ jobs: - uses: actions/setup-python@v5 - name: Install cibuildwheel - run: python -m pip install cibuildwheel==2.18.1 scipy sympy packaging + run: python -m pip install cibuildwheel==2.18.1 - name: Build wheels run: python -m cibuildwheel --output-dir wheelhouse env: # Disable building for PyPy and 32bit. CIBW_SKIP: pp* *-win32 *-manylinux_i686 *musllinux* + CIBW_TEST_REQUIRES: pytest scipy sympy CIBW_TEST_COMMAND: python -m unittest camb.tests.camb_test CIBW_BUILD_VERBOSITY: 1