Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use setuptools instead of distutils #100

Merged
merged 13 commits into from
Oct 21, 2023
Prev Previous commit
Next Next commit
Install setuptools in CI
  • Loading branch information
oscarbenjamin committed Oct 21, 2023
commit 7b8dba9c5406a9772f82c64f883fe545905c4228
4 changes: 2 additions & 2 deletions .github/workflows/buildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
CIBW_BEFORE_ALL_MACOS: bin/cibw_before_all_macosx_x86_64.sh
CIBW_BEFORE_ALL_WINDOWS: msys2 -c bin/cibw_before_all_windows.sh
CIBW_BEFORE_BUILD_WINDOWS: msys2 -c bin/cibw_before_build_windows.sh
CIBW_BEFORE_BUILD: pip install numpy cython==3.0.0b2 delvewheel
CIBW_BEFORE_BUILD: pip install cython==3.0.0b2 delvewheel
CIBW_ENVIRONMENT: >
C_INCLUDE_PATH=$(pwd)/.local/include/
LIBRARY_PATH=$(pwd)/.local/lib/
Expand All @@ -69,7 +69,7 @@ jobs:
python-version: '3.12'

- run: pip install --upgrade pip
- run: pip install cython numpy
- run: pip install cython setuptools
- run: python setup.py sdist

- uses: actions/upload-artifact@v3
Expand Down
Loading