Merge remote-tracking branch 'origin/develop' into whisper_models

This commit is contained in:
Marko Henning
2024-05-13 11:50:51 +02:00
9 changed files with 151 additions and 64 deletions
+2 -1
View File
@@ -4,8 +4,9 @@ import subprocess as sp
MAJOR = 0
MINOR = 1
MICRO = 1
NANO = 2
ISRELEASED = False
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
VERSION = '%d.%d.%d.%d' % (MAJOR, MINOR, MICRO, NANO)
# Return the git revision as a string
# taken from numpy/numpy