Skip to content
Snippets Groups Projects
justfile 259 B
# Just file: https://github.com/casey/just

test:
    pytest

release version: test
	git tag {{version}}
	git checkout {{version}}
	git push --tags -f
	python3 setup.py sdist
	twine upload dist/pystencils_autodiff-{{version}}.tar.gz
	git checkout master