Skip to content

Commit 39104e5

Browse files
authored
fix(deps): Pin pydantic below 2.12.0 for compatibility (#732)
The latest pydantic version (2.12.0) is not compatible with the project's current usage. Updates dependency specification in `pyproject.toml` to "pydantic>=2.10.0,<2.12.0" to prevent runtime errors when using with uvx. Related to #721.
1 parent 9ad2cbf commit 39104e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dependencies = [
1515
"markdownify>=0.11.6",
1616
"markdown>=3.7.0",
1717
"markdown-to-confluence>=0.3.0,<0.4.0",
18-
"pydantic>=2.10.6",
18+
"pydantic>=2.10.6,<2.12.0",
1919
"trio>=0.29.0",
2020
"click>=8.1.7",
2121
"uvicorn>=0.27.1",

0 commit comments

Comments
 (0)