Skip to content

Commit 90a6771

Browse files
committed
simplified pure py wheel build
1 parent 7fffadd commit 90a6771

1 file changed

Lines changed: 4 additions & 7 deletions

File tree

.github/workflows/build_primary_wheels.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,12 @@ jobs:
4848

4949
steps:
5050
- uses: actions/checkout@v4
51-
52-
- name: Set up Python
53-
uses: actions/setup-python@v5
54-
55-
- name: Install dependencies
56-
run: pip install -U pip setuptools wheel pytest pytest-cov typing_extensions mypy
5751

5852
- name: Build module
59-
run: FROZENDICT_PURE_PY=1 python setup.py bdist_wheel
53+
run: FROZENDICT_PURE_PY=1 pipx run build --wheel
54+
55+
- name: Install dependencies
56+
run: pip install -U pip pytest pytest-cov typing_extensions mypy
6057

6158
- name: Install module
6259
run: pip install dist/*

0 commit comments

Comments
 (0)