Skip to content

Commit

Permalink
fix(makefile): remove tag target
Browse files Browse the repository at this point in the history
this commit mainly serves the purpose of testing the ci pipeline
  • Loading branch information
sleistner committed Jul 2, 2019
1 parent 6e0051a commit aefe5a6
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,8 @@ help:
@echo "mypy - check type hinting with mypy"
@echo "isort - sort imports"
@echo "isort-check - check if your imports are correctly sorted"
@echo "tag - create a git tag with current version"
@echo "build - create the distribution package"
@echo "release - package a release in wheel and tarball, requires twine"
@echo "tag - create a git tag with current version"

install:
pip install pipenv
Expand Down Expand Up @@ -91,11 +89,6 @@ coverage:
build:
python setup.py sdist bdist_wheel

tag: clean
@echo "Creating git tag v$(version)"
git tag v$(version)
git push --tags

pypi:
twine upload dist/*

Expand Down

0 comments on commit aefe5a6

Please sign in to comment.