Skip to content
Snippets Groups Projects
Commit a618c8f7 authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Add justfile

parent cb8e73f2
Branches
Tags
No related merge requests found
justfile 0 → 100644
# 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
wheel_release version: test
git tag {{version}}
git checkout {{version}}
git push --tags -f
python3 setup.py bdist_wheel
twine upload dist/pystencils_autodiff-{{version}}-cp37-cp37m-linux_x86_64.whl
git checkout master
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment