Skip to content

Commit

Permalink
fix: correct pip wheel command for dependencies
Browse files Browse the repository at this point in the history
Remove incorrect --no-deps=false flag, as pip wheel includes dependencies by default
  • Loading branch information
polischuks committed Jan 31, 2025
1 parent 9eb86fc commit f7f7583
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
poetry install
# Build wheel including all dependencies
pip wheel . --no-deps=false -w dist/
pip wheel . -w dist/
shell: bash

- name: Build source distribution
Expand Down

0 comments on commit f7f7583

Please sign in to comment.