SushantGautam commited on
Commit
5935d39
·
1 Parent(s): b1d613e

Update publish workflow to use python -m build for package creation

Browse files
Files changed (1) hide show
  1. .github/workflows/publish.yml +1 -1
.github/workflows/publish.yml CHANGED
@@ -25,6 +25,6 @@ jobs:
25
  pip install setuptools wheel
26
  - name: Build package
27
  run: |
28
- python setup.py sdist bdist_wheel # Could also be python -m build
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