6 lines
166 B
Python
6 lines
166 B
Python
from distutils.version import StrictVersion
|
|
|
|
_versionstring = "0.20.0"
|
|
strictversion = StrictVersion(_versionstring)
|
|
openwebrx_version = "v{0}".format(strictversion)
|