fullfill pep440

This commit is contained in:
Schmieder, Jacob
2024-05-13 09:00:43 +00:00
parent 4d2fd2dc6b
commit fc046ae181
+2 -3
View File
@@ -3,10 +3,9 @@ import subprocess as sp
MAJOR = 0
MINOR = 1
MICRO = 1
NANO = 2
MICRO = 2
ISRELEASED = False
VERSION = '%d.%d.%d.%d' % (MAJOR, MINOR, MICRO, NANO)
VERSION = '%d.%d.%d.%d' % (MAJOR, MINOR, MICRO)
# Return the git revision as a string
# taken from numpy/numpy