We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04df767 commit 7abd32cCopy full SHA for 7abd32c
1 file changed
.github/workflows/publish.yml
@@ -22,12 +22,15 @@ jobs:
22
23
- name: Install build tools
24
run: |
25
- python -m pip install --upgrade pip wheel setuptools setuptools_scm build twine "branca>=0.3.0" "jinja2>=2.9" numpy requests
+ python -m pip install --upgrade pip wheel setuptools setuptools_scm twine "branca>=0.3.0" "jinja2>=2.9" numpy requests
26
27
shell: bash
28
29
- name: Build binary wheel
30
- run: python -m build --sdist --wheel . --outdir dist
+ run: pip wheel . -w dist --no-deps
31
+
32
+ - name: Build sdist
33
+ run: python setup.py sdist
34
35
- name: CheckFiles
36
0 commit comments