Skip to content

Commit

Permalink
bump again
Browse files Browse the repository at this point in the history
  • Loading branch information
Luca committed Jan 9, 2021
1 parent f4004ac commit 2584a40
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,7 @@ jobs:
run: make install
- name: test version
run: make test-version
- name: build python wheel
run: make wheel
- name: build python source distribution
if: matrix.python-version == '3.8'
run: make sdist
- name: build python bundle
run: "make bundle${{ matrix.python-version }}"
- name: release to pypi
run: make release-pypi
14 changes: 10 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,17 @@ codecov: ## upload code coverage
test-version: ## validate version with pypi
@agilekit git validate

sdist: ## build source distribution
@python setup.py sdist
bundle3.6: ## build python 3.6 bundle
@python setup.py bdist_wheel --python-tag py36

wheel: ## build wheel
@python setup.py bdist_wheel
bundle3.7: ## build python 3.7 bundle
@python setup.py bdist_wheel --python-tag py37

bundle3.8: ## build python 3.8 bundle
@python setup.py bdist_wheel --python-tag py38

bundle3.9: ## build python 3.9 bundle
@python setup.py sdist bdist_wheel --python-tag py39

github-tag: ## new tag in github
@agilekit git release --yes
Expand Down
2 changes: 1 addition & 1 deletion ccy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Python currencies"""

__version__ = "1.2.1"
__version__ = "1.2.2"


from .core.country import (
Expand Down

0 comments on commit 2584a40

Please sign in to comment.