We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98c4ecd commit e472b1dCopy full SHA for e472b1d
1 file changed
.github/workflows/publish-to-pypi.yml
@@ -12,15 +12,20 @@ jobs:
12
uses: actions/setup-python@v1
13
with:
14
python-version: 3.7
15
- - name: Install Build Deps
+ - name: Install pep517
16
run: >-
17
- pip install .[extras]
+ python -m
18
+ pip install
19
+ pep517
20
+ --user
21
- name: Build a binary wheel and a source tarball
22
23
python -m
- setup.py
- sdist
- bdist_wheel
24
+ pep517.build
25
+ --source
26
+ --binary
27
+ --out-dir dist/
28
+ .
29
- name: Publish package to Test PyPI
30
uses: pypa/gh-action-pypi-publish@master
31
0 commit comments