Skip to content

Commit 5b8109c

Browse files
committed
feat: switch to python -m build for wheel creation
- Use python -m build instead of pip wheel - Add --no-isolation flag to use installed dependencies
1 parent f7f7583 commit 5b8109c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build-wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ jobs:
5252
python -m pip install build poetry
5353
shell: bash
5454

55-
- name: Build wheel with dependencies
55+
- name: Build wheel
5656
run: |
5757
# Install dependencies first to ensure they're available
5858
poetry install
5959
60-
# Build wheel including all dependencies
61-
pip wheel . -w dist/
60+
# Build wheel
61+
python -m build --wheel --no-isolation --outdir dist/
6262
shell: bash
6363

6464
- name: Build source distribution

0 commit comments

Comments
 (0)