Skip to content

Commit

Permalink
feat: build single wheel with all dependencies included
Browse files Browse the repository at this point in the history
- Use pip wheel without --no-deps to include all dependencies
- Build platform-specific wheels for each Python version
  • Loading branch information
polischuks committed Jan 31, 2025
1 parent b326b79 commit e1f731e
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 @@ -67,7 +67,7 @@ jobs:
- name: Build wheel with dependencies
run: |
# Install dependencies first to ensure they're available
poetry install
poetry install --all-extras
# Build wheel including all dependencies
python -m pip wheel . -w dist/
Expand Down

0 comments on commit e1f731e

Please sign in to comment.