diff --git a/.github/workflows/build_and_publush.yaml b/.github/workflows/build_and_publush.yaml index be791bb..5e2a18c 100644 --- a/.github/workflows/build_and_publush.yaml +++ b/.github/workflows/build_and_publush.yaml @@ -42,6 +42,10 @@ jobs: - name: Build sdist run: | + if [ "$RUNNER_OS" == "Linux" ]; then + apt install libopenblas-dev + elif [ "$RUNNER_OS" == "macOS" ]; then + brew install openblas pip install build python -m build . --sdist -o wheelhouse if: ${{ matrix.python-version == '311' && runner.os == 'Linux' && matrix.cibw-arch == 'auto' }}