From c6a3bc29dad0709a0aa07e77b97ebc6716730281 Mon Sep 17 00:00:00 2001 From: Stephan Seitz <stephan.seitz@fau.de> Date: Mon, 16 Dec 2019 10:51:00 +0100 Subject: [PATCH] Add justfile --- justfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 justfile diff --git a/justfile b/justfile new file mode 100644 index 0000000..88127a6 --- /dev/null +++ b/justfile @@ -0,0 +1,13 @@ +# 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 + -- GitLab