fca6f17a5c
1. 移除对 Python 3.8/3.9 的支持,更新 tox、pyproject.toml 配置 2. 替换 typing 导入为 collections.abc 标准库类型 3. 重构 CLI 系统从 argparse 迁移到 typer 4. 优化代码格式与类型注解,修复多处类型兼容问题 5. 更新依赖声明,移除 graphlib_backport 兼容包
22 lines
340 B
INI
22 lines
340 B
INI
[tox]
|
|
isolated_build = true
|
|
envlist = py310, py311, py312, py313, py314
|
|
min_version = 4.0
|
|
requires = tox-uv
|
|
skipsdist = true
|
|
|
|
[testenv]
|
|
uv_sync = true
|
|
deps =
|
|
.[dev]
|
|
commands =
|
|
pytest -m "not slow" {posargs}
|
|
passenv =
|
|
CI
|
|
GITHUB_*
|
|
UV_*
|
|
PYTHON*
|
|
setenv =
|
|
PYTHONPATH = {toxinidir}/src
|
|
PYTHONDONTWRITEBYTECODE = 1
|