Skip to content
Snippets Groups Projects
Verified Commit c59d04b6 authored by Daniel Hornung's avatar Daniel Hornung
Browse files

FIX: Fixed ISRELEASED.

parent 56491a8e
No related branches found
No related tags found
No related merge requests found
Pipeline #18325 passed
......@@ -45,11 +45,11 @@ from setuptools import find_packages, setup
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
########################################################################
ISRELEASED = True
MAJOR = 0
MINOR = 7
MICRO = 0
PRE = "" # e.g. rc0, alpha.1, 0.beta-23
ISRELEASED = False
if PRE:
VERSION = "{}.{}.{}-{}".format(MAJOR, MINOR, MICRO, PRE)
......
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