mirror of
https://github.com/benbusby/whoogle-search.git
synced 2026-01-08 13:10:33 -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.
17 lines
309 B
TOML
17 lines
309 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py312"
|
|
lint.select = [
|
|
"E", "F", "W", # pycodestyle/pyflakes
|
|
"I", # isort
|
|
]
|
|
lint.ignore = []
|
|
|
|
[tool.black]
|
|
line-length = 100
|
|
target-version = ['py312']
|