Skip to content

Commit e472b1d

Browse files
committed
back to pep517 for now.
1 parent 98c4ecd commit e472b1d

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/publish-to-pypi.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,20 @@ jobs:
1212
uses: actions/setup-python@v1
1313
with:
1414
python-version: 3.7
15-
- name: Install Build Deps
15+
- name: Install pep517
1616
run: >-
17-
pip install .[extras]
17+
python -m
18+
pip install
19+
pep517
20+
--user
1821
- name: Build a binary wheel and a source tarball
1922
run: >-
2023
python -m
21-
setup.py
22-
sdist
23-
bdist_wheel
24+
pep517.build
25+
--source
26+
--binary
27+
--out-dir dist/
28+
.
2429
- name: Publish package to Test PyPI
2530
uses: pypa/gh-action-pypi-publish@master
2631
with:

0 commit comments

Comments
 (0)