Skip to content

Commit

Permalink
Fix pydantic version for python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
simw committed Nov 8, 2024
1 parent ad71011 commit 10d18ef
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion poetry.lock

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

5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ packages = [{include = "pydantic_to_pyarrow", from = "src"}]

[tool.poetry.dependencies]
python = "^3.8"
pydantic = "^2.0"
pydantic = [
{ version = "^2.0" },
{ version = "^2.8", python = ">=3.13" },
]
pyarrow = [
{ version = ">=11.0.0" },
{ version = ">=18.0.0", python = ">=3.13" },
Expand Down

0 comments on commit 10d18ef

Please sign in to comment.