Remove unused deps

This commit is contained in:
Andras Schmelczer 2026-02-01 11:07:14 +00:00
parent e15ab7dfef
commit 07a5fdc31f
2 changed files with 39 additions and 0 deletions

View file

@ -31,6 +31,14 @@ environments = ["sys_platform == 'linux' and python_version < '3.14'"]
[dependency-groups]
dev = [
"deptry>=0.22.0",
"pytest>=9.0.2",
"ruff>=0.8.0",
]
[tool.deptry.per_rule_ignores]
# pyarrow/fastexcel: runtime backends for polars parquet/Excel I/O
# jupyter/ipywidgets/pandas: needed to run analysis notebooks
DEP002 = ["pyarrow", "fastexcel", "jupyter", "ipywidgets", "pandas"]
# pytest is a dev dependency, not a missing one
DEP004 = ["pytest"]