Fun changes
Some checks failed
CI / Python (lint + test) (push) Failing after 3m38s
CI / Rust (lint + test) (push) Failing after 3m32s
CI / Frontend (lint + typecheck) (push) Failing after 4m12s
Build and publish Docker image / build-and-push (push) Failing after 4m48s

This commit is contained in:
Andras Schmelczer 2026-04-04 22:59:44 +01:00
parent cd778dd088
commit 349a6c1d53
60 changed files with 1260 additions and 2600 deletions

View file

@ -43,13 +43,12 @@ dev = [
]
[tool.deptry]
# finder/ has its own pyproject.toml; analyses/ and scripts/ use transitive deps
exclude = ["\\.venv", "finder", "analyses", "scripts"]
# analyses/ and scripts/ use transitive deps
exclude = ["\\.venv", "analyses", "scripts"]
[tool.deptry.per_rule_ignores]
# pyarrow/fastexcel: runtime backends for polars parquet/Excel I/O
# jupyter/ipywidgets/pandas/plotly/folium: needed for analysis notebooks (excluded from scan)
# flask/fake-useragent: used in finder/ (excluded, has own pyproject.toml)
DEP002 = ["pyarrow", "fastexcel", "jupyter", "ipywidgets", "pandas", "plotly", "folium", "flask", "fake-useragent"]
DEP002 = ["pyarrow", "fastexcel", "jupyter", "ipywidgets", "pandas", "plotly", "folium"]
# pytest is a dev dependency, not a missing one
DEP004 = ["pytest"]