We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef3b44e commit d0e30daCopy full SHA for d0e30da
.github/workflows/release.yml
@@ -20,8 +20,11 @@ jobs:
20
steps:
21
- uses: actions/checkout@v3
22
23
+ - name: Install build
24
+ run: pip install build
25
+
26
- name: Build wheel
- run: make dev install dist
27
+ run: python -m build
28
env:
29
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30
Makefile
@@ -36,8 +36,5 @@ benchmark:
36
coverage: test
37
open htmlcov/index.html
38
39
-dist:
40
- python3.12 setup.py bdist_wheel sdist
41
-
42
clean:
43
rm -fr dist *.egg-info .pytest_cache build htmlcov
0 commit comments