Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ dev = [
"mcp>=1.0.0",
"typer>=0.12.0",
"rich>=14.0.0",
# tomllib is stdlib only on 3.11+; scripts/check_git_deps.py needs the
# backport to run under the 3.10 CI matrix leg.
"tomli>=2.0.0; python_version < '3.11'",
]

[tool.pytest.ini_options]
Expand Down
6 changes: 5 additions & 1 deletion scripts/check_git_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,14 @@
from __future__ import annotations

import sys
import tomllib
from pathlib import Path
from typing import Any

if sys.version_info >= (3, 11):
import tomllib
else: # tomllib is stdlib only on 3.11+; tomli is the drop-in backport
import tomli as tomllib

GIT_MARKERS = ("git+", "git://")
DEFAULT_PYPROJECT = "pyproject.toml"

Expand Down
2 changes: 2 additions & 0 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading