The current pydantic pinned syntax is "pydantic ~= 2.0<2.10",; however on package publish, Pypi throws a 400. The correct syntax should be: "pydantic >=2.0,<2.10",
Description
Updates pyproject.toml syntax for pinned pydantic version.
Contribution Checklist
[X] The code builds clean without any errors or warnings
Motivation and Context
The current pydantic pinned syntax is
"pydantic ~= 2.0<2.10",
; however on package publish, Pypi throws a 400. The correct syntax should be:"pydantic >=2.0,<2.10",
Description
Updates pyproject.toml syntax for pinned pydantic version.
Contribution Checklist