Skip to content

Commit 15f9cec

Browse files
authored
Merge pull request #1442 from ocefpaf/do_not_use_build
don't use python build until we have a pyproject.toml
2 parents 04df767 + 7abd32c commit 15f9cec

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/publish.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,15 @@ jobs:
2222

2323
- name: Install build tools
2424
run: |
25-
python -m pip install --upgrade pip wheel setuptools setuptools_scm build twine "branca>=0.3.0" "jinja2>=2.9" numpy requests
25+
python -m pip install --upgrade pip wheel setuptools setuptools_scm twine "branca>=0.3.0" "jinja2>=2.9" numpy requests
2626
2727
shell: bash
2828

2929
- name: Build binary wheel
30-
run: python -m build --sdist --wheel . --outdir dist
30+
run: pip wheel . -w dist --no-deps
31+
32+
- name: Build sdist
33+
run: python setup.py sdist
3134

3235
- name: CheckFiles
3336
run: |

0 commit comments

Comments
 (0)