mirror of
https://github.com/benbusby/whoogle-search.git
synced 2026-03-13 21:30:16 -04:00
9 lines
158 B
Python
9 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.2' + optional_dev_tag
|
|
|