-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v1.0.5 & publish with Github Actions (#41)
* ⭐ publish with actions * ⭐ publish with actions * ⭐ publish with actions * ⭐ publish with actions * 🎨 only sdist * ⭐ 1.0.4.1dev * ⭐ continue on error * ⭐ 1.0.5
- Loading branch information
Showing
2 changed files
with
30 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Publish | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.x' | ||
- name: Install dependencies and build | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install wheel | ||
python setup.py sdist | ||
- name: Publish distribution 📦 to PyPI | ||
continue-on-error: true | ||
uses: pypa/gh-action-pypi-publish@master | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_API_TOKEN }} |
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 |
---|---|---|
|
@@ -75,7 +75,7 @@ def build_extension(self, ext): | |
|
||
setup( | ||
name='pqkmeans', | ||
version='1.0.4', | ||
version='1.0.5', | ||
author='Keisuke Ogaki, Yusuke Matsui', | ||
author_email='[email protected], [email protected]', | ||
license='MIT License', | ||
|