-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change package build command from setuptools to build
- Loading branch information
1 parent
c0ff7cf
commit 3d8e606
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,11 +25,11 @@ jobs: | |
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip wheel | ||
pip install setuptools wheel twine | ||
python -m pip install --upgrade pip | ||
pip install build | ||
- name: Build package | ||
run: python setup.py sdist bdist_wheel | ||
run: python -m build | ||
|
||
- name: Publish package to PyPI | ||
uses: pypa/[email protected] | ||
|