Skip to content

Commit

Permalink
fix: use pip wheel for all wheel building
Browse files Browse the repository at this point in the history
  • Loading branch information
polischuks committed Feb 3, 2025
1 parent a97317b commit 176408c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,10 @@ jobs:
mkdir -p dist
# First build our package wheel without dependencies
python -m build --wheel --no-deps
pip wheel --no-deps -w dist/ .
# Then build all dependencies
pip wheel -r requirements.txt --wheel-dir dist/
# Move our wheel to dist
mv dist/*.whl dist/
shell: bash

- name: Build source distribution
Expand Down

0 comments on commit 176408c

Please sign in to comment.