https://github.com/PyPSA/PyPSA
Raw File
Tip revision: 460e17dea8466238e4f0defb659e5bf04ebf6dd6 authored by Fabian Neumann on 15 October 2021, 18:58:47 UTC
prepare release notes and bump version numbers (#300)
Tip revision: 460e17d
Makefile
.PHONY : test sdist upload clean dist

test :
	pytest --cov pypsa --cov-report term-missing

sdist :
	python setup.py sdist

upload :
	twine upload dist/*

clean :
	rm dist/*

dist : sdist upload clean
back to top