Skip to content
Snippets Groups Projects
Commit 22cb2726 authored by Ingo Meyer's avatar Ingo Meyer
Browse files

Merge branch 'develop'

parents 9d18ec86 6dce5708
No related branches found
No related tags found
No related merge requests found
Pipeline #24696 passed
include LICENSE
include README.md
include requirements.txt
upload: clean
@[ "$$(git symbolic-ref -q HEAD)" == "refs/heads/master" ] || \
{ echo "Uploading can only be done on the master branch."; exit 1; }
python setup.py sdist && \
python setup.py bdist_wheel --universal && \
twine upload dist/*
clean:
rm -rf build dist *.egg-info
.PHONY: clean upload
......@@ -5,5 +5,5 @@ from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
__version_info__ = (0, 4, 2)
__version_info__ = (0, 4, 3)
__version__ = '.'.join(map(str, __version_info__))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment