fix: use empty string instead of 'stable' in version (#14)

This commit is contained in:
cyp 2023-08-04 10:41:04 -04:00 committed by GitHub
parent ad4dd3cfad
commit 67187ff974
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
import os
import sys
VERSION = (0, 5, 0, "stable")
VERSION = (0, 5, 1, "")
VERSION_STR = f"{VERSION[0]}.{VERSION[1]}.{VERSION[2]}{'-' + VERSION[3] if VERSION[3] else ''}"
MODULE_DIR = os.path.dirname(os.path.realpath(__file__))
ARGV0 = os.path.basename(sys.argv[0])