Commit
·
5935d39
1
Parent(s):
b1d613e
Update publish workflow to use python -m build for package creation
Browse files
.github/workflows/publish.yml
CHANGED
@@ -25,6 +25,6 @@ jobs:
|
|
25 |
pip install setuptools wheel
|
26 |
- name: Build package
|
27 |
run: |
|
28 |
-
python
|
29 |
- name: Publish package distributions to PyPI
|
30 |
uses: pypa/gh-action-pypi-publish@release/v1
|
|
|
25 |
pip install setuptools wheel
|
26 |
- name: Build package
|
27 |
run: |
|
28 |
+
python -m build # Could also be python setup.py sdist bdist_wheel
|
29 |
- name: Publish package distributions to PyPI
|
30 |
uses: pypa/gh-action-pypi-publish@release/v1
|