mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
10 lines
244 B
Python
10 lines
244 B
Python
|
|
VERSION = (0, "4.1")
|
|
|
|
# Dynamically calculate the version based on VERSION tuple
|
|
if len(VERSION)>2 and VERSION[2] is not None:
|
|
str_version = "%s.%s_%s" % VERSION[:3]
|
|
else:
|
|
str_version = "%s.%s" % VERSION[:2]
|
|
|
|
__version__ = str_version
|