Skip to content

Commit

Permalink
Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielfalcao committed Aug 2, 2021
1 parent 41483a3 commit c4f7ce1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,13 @@ push-release: # pushes distribution tarballs of the current version
# Prepares release of this package prior to pushing to pypi
build-release:
rm -rf ./dist # remove local packages
$(VENV)/bin/python setup.py build sdist
$(VENV)/bin/twine check dist/*.tar.gz
$(VENV)/bin/python setup.py build sdist

# Convenience target that runs all tests then builds and pushes a release to pypi
release: tests build-release push-release
release: tests
./.release
$(MAKE) build-release
$(MAKE) push-release

Expand Down

0 comments on commit c4f7ce1

Please sign in to comment.