mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
8 lines
158 B
Python
8 lines
158 B
Python
import os
|
|
|
|
optional_dev_tag = ''
|
|
if os.getenv('DEV_BUILD'):
|
|
optional_dev_tag = '.dev' + os.getenv('DEV_BUILD')
|
|
|
|
__version__ = '1.2.4' + optional_dev_tag
|
|
|