mirror of
https://github.com/benbusby/whoogle-search.git
synced 2026-02-27 05:30:10 -05:00
- Bump target Python version to 3.12 in `pyproject.toml`. - Update Flask to version 3.1.2 in `requirements.txt`. - Remove deprecated dark mode configuration from the application. - Adjust logo rendering in templates to remove dark mode dependency. - Update GitHub Actions workflows to support the 'updates' branch for builds. - Increment version to 1.1.3 with an optional update-testing tag.
9 lines
173 B
Python
9 lines
173 B
Python
import os
|
|
|
|
optional_dev_tag = '-update-testing'
|
|
if os.getenv('DEV_BUILD'):
|
|
optional_dev_tag = '.dev' + os.getenv('DEV_BUILD')
|
|
|
|
__version__ = '1.2.0' + optional_dev_tag
|
|
|