Description
Some minor updates to the Makefile for releasing new versions of starfish:
- Avoiding error message when a branch for a new release has the same name as the new tag (i.e. 0.4.0).
- For Pypi -
twine makes a wheel as well as a tar.gz file and we want to upload both to Pypi.
Fix is easy:
- Replace
git push origin $(VERSION) with git push origin tag $(VERSION)
- Replace
twine upload dist/starfish-$(VERSION).tar.gz with twine upload dist/starfish-$(VERSION)*
Description
Some minor updates to the Makefile for releasing new versions of
starfish:twinemakes a wheel as well as a tar.gz file and we want to upload both to Pypi.Fix is easy:
git push origin $(VERSION)withgit push origin tag $(VERSION)twine upload dist/starfish-$(VERSION).tar.gzwithtwine upload dist/starfish-$(VERSION)*