Skip to content

Commit

Permalink
add dep in toml
Browse files Browse the repository at this point in the history
  • Loading branch information
juaduan committed Jul 8, 2024
1 parent 8e8b062 commit fe64f00
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install dep & Build wheels
run: |
python -m pip install cibuildwheel==2.19.2 cython==3.0.10
python -m cibuildwheel --output-dir wheelhouse
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.19.2

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse

- uses: actions/upload-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools", "wheel", "numpy"]
requires = ["setuptools", "wheel", "numpy", "cython"]
build-backend = "setuptools.build_meta"

[project]
Expand Down

0 comments on commit fe64f00

Please sign in to comment.