fixed versioning whichs brokes do to pypi issues

This commit is contained in:
Jaikinator
2023-09-22 21:27:41 +02:00
parent f5d8056ead
commit ef7a4273e6
+2 -3
View File
@@ -3,10 +3,9 @@ import subprocess as sp
MAJOR = 0
MINOR = 1
MICRO = 0
MICRO_POST = 0
MICRO = 1
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
# taken from numpy/numpy