mirror of
https://github.com/benbusby/whoogle-search.git
synced 2026-01-25 05:07:18 -05: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.1.2' + optional_dev_tag
|
|
|