We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aef434b commit b44187aCopy full SHA for b44187a
.github/workflows/build-wheel.yml
@@ -20,10 +20,10 @@ jobs:
20
with:
21
python-version: '3.x'
22
23
- - name: Install build tool
+ - name: Install build dependencies
24
run: |
25
python -m pip install --upgrade pip
26
- pip install build
+ pip install build setuptools wheel
27
28
- name: Build wheel
29
run: python -m build --wheel --no-isolation
pyproject.toml
@@ -1,5 +1,5 @@
1
[build-system]
2
-requires = ["setuptools>=61"]
+requires = ["setuptools>=61", "wheel"]
3
build-backend = "setuptools.build_meta"
4
5
[project]
0 commit comments