Browse Source

Use python-build instead

pull/405/head
Simon Conseil 6 years ago
parent
commit
92053f608b
  1. 6
      .github/workflows/publish.yml

6
.github/workflows/publish.yml

@ -13,10 +13,10 @@ jobs:
with:
python-version: 3.8
- name: Install pep517 and twine
run: python -m pip install pep517 twine
- name: Install python-build and twine
run: python -m pip install build twine
- name: Build package
run: python -m pep517.build --source --binary .
run: python -m build --sdist --wheel .
- name: List result
run: ls -l dist
- name: Check long_description

Loading…
Cancel
Save