-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from hjweide/publish-source
Publish source package too
- Loading branch information
Showing
2 changed files
with
7 additions
and
4 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 |
---|---|---|
|
@@ -34,7 +34,10 @@ jobs: | |
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install twine | ||
python -m pip install twine build | ||
- name: Build source distribution | ||
run: | | ||
python -m build --sdist | ||
- name: Build manylinux Python wheels | ||
uses: RalfG/[email protected]_x86_64 | ||
with: | ||
|
@@ -46,5 +49,5 @@ jobs: | |
#TWINE_PASSWORD: ${{ secrets.TEST_PYPI_API_TOKEN }} | ||
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} | ||
run: | | ||
#python -m twine upload --repository testpypi dist/*-manylinux*.whl --verbose --skip-existing | ||
python -m twine upload dist/*-manylinux*.whl --verbose --skip-existing | ||
#python -m twine upload --repository testpypi dist/*-manylinux*.whl dist/*.tar.gz --verbose --skip-existing | ||
python -m twine upload dist/*-manylinux*.whl dist/*.tar.gz --verbose --skip-existing |
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
|
||
setuptools.setup( | ||
name="pyastar2d", | ||
version="1.0.3", | ||
version="1.0.4", | ||
author="Hendrik Weideman", | ||
author_email="[email protected]", | ||
description=( | ||
|