Skip to content

Commit

Permalink
Merge branch 'release/1.0.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreMiras committed Apr 20, 2020
2 parents 5b0902b + 13a751e commit 95c25d1
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 4 deletions.
24 changes: 22 additions & 2 deletions .github/workflows/pypi-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: PyPI release
on: [push]

jobs:
pypi:
pypi_kivy_garden_mapview:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
Expand All @@ -16,10 +16,30 @@ jobs:
- name: Build
run: |
python setup.py sdist bdist_wheel
- name: Publish package
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.pypi_password_kivy_garden_mapview }}

pypi_mapview:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.x
uses: actions/setup-python@v1
with:
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install --user --upgrade setuptools wheel
- name: Build
run: |
python setup_meta.py sdist bdist_wheel
- name: Publish package
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.pypi_password }}
password: ${{ secrets.pypi_password_mapview }}
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# Change Log

## [Unreleased]

## [1.0.4]

- Fix PyPI auto-deployment

## [1.0.3]

- Genral code linting/cleaning
- Increase coverage testing from 14% to 35%
- Fix `Downloader` now checks for HTTP status code, refs #6

## [1.0.2]
Expand Down
2 changes: 1 addition & 1 deletion kivy_garden/mapview/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.3"
__version__ = "1.0.4"

0 comments on commit 95c25d1

Please sign in to comment.