fixed versioning whichs brokes do to pypi issues
This commit is contained in:
+2
-3
@@ -3,10 +3,9 @@ import subprocess as sp
|
|||||||
|
|
||||||
MAJOR = 0
|
MAJOR = 0
|
||||||
MINOR = 1
|
MINOR = 1
|
||||||
MICRO = 0
|
MICRO = 1
|
||||||
MICRO_POST = 0
|
|
||||||
ISRELEASED = False
|
ISRELEASED = False
|
||||||
VERSION = '%d.%d.%d.%d' % (MAJOR, MINOR, MICRO, MICRO_POST)
|
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
|
||||||
|
|
||||||
# Return the git revision as a string
|
# Return the git revision as a string
|
||||||
# taken from numpy/numpy
|
# taken from numpy/numpy
|
||||||
|
|||||||
Reference in New Issue
Block a user