From c8fcc0e0ed2d17d96dcda48bf0a8a0447ee1ba89 Mon Sep 17 00:00:00 2001 From: Filipe Fernandes Date: Fri, 20 Oct 2023 11:17:09 -0300 Subject: [PATCH] we don't really need numpy and cython here but I don't want to add another if-clause to setup.py --- .github/workflows/cibuildwheel.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cibuildwheel.yml b/.github/workflows/cibuildwheel.yml index cfe46af5b..670ab0b1a 100644 --- a/.github/workflows/cibuildwheel.yml +++ b/.github/workflows/cibuildwheel.yml @@ -52,8 +52,9 @@ jobs: - uses: actions/checkout@v4 - name: Build sdist - run: | - python setup.py sdist + run: > + pip install cython numpy + && python setup.py sdist - uses: actions/upload-artifact@v3 with: path: dist/*.tar.gz