Skip to content
Merged
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
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"pydantic==2.9.2",
"pydantic>=2.9.2",
# pydantic-settings stays pinned: 2.14.x regresses env_prefix + dotenv
# handling (test_init_file_prefix1 — file values return None). 2.6.1 works
# with pydantic 2.9–2.13. Relaxing pydantic (not -settings) lets consumers
# that need pydantic>=2.11 (e.g. modern mcp/fastmcp) resolve cleanly.
"pydantic-settings==2.6.1",
"universal_pathlib==0.2.2",
"pyaml",
Expand Down
Loading