Skip to content
Snippets Groups Projects
Verified Commit 85b74141 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

RELEASE: fix 0.2.4rc0

parent 32d4a21f
No related branches found
Tags v0.2.4rc0
No related merge requests found
#!/bin/bash #!/bin/bash
python setup.py bdist_wheel python setup.py sdist bdist_wheel
python -m twine upload dist/* python -m twine upload -s dist/*
...@@ -48,8 +48,9 @@ from setuptools import find_packages, setup ...@@ -48,8 +48,9 @@ from setuptools import find_packages, setup
MAJOR = 0 MAJOR = 0
MINOR = 2 MINOR = 2
MICRO = 4 MICRO = 4
ISRELEASED = False PRE = "rc0"
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) ISRELEASED = True
VERSION = "{}.{}.{}{}".format(MAJOR, MINOR, MICRO, PRE)
# Return the git revision as a string # Return the git revision as a string
......
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