Skip to content

Commit

Permalink
Ensure setuptools exists for sdist build
Browse files Browse the repository at this point in the history
  • Loading branch information
ipmb committed Nov 7, 2023
1 parent 2133a0b commit 20965f9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ jobs:
CIBW_BEFORE_BUILD_MACOS: IS_MACOS=1 ./pre_build.sh
CIBW_BEFORE_BUILD_LINUX: ./pre_build.sh && (yum install -y zlib-devel || apk add zlib-dev)
- name: Create sdist
run: make sdist
run: |
pip install -U setuptools
make sdist
- uses: actions/upload-artifact@v3
with:
name: dist
Expand Down

0 comments on commit 20965f9

Please sign in to comment.