Revision 4d6ae97454f4ee430be5a6ef5e1272bf95e64b9d authored by Tom Brown on 15 July 2020, 12:40:08 UTC, committed by Tom Brown on 15 July 2020, 12:40:08 UTC
Hyperlinked release notes can be found here:

https://pypsa.readthedocs.io/en/latest/release_notes.html#pypsa-0-17-1-15th-july-2020
1 parent d2c2843
Raw File
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