Skip to content

Commit

Permalink
Moved pandera to latest version with pydantic 2 compatibility. (#95)
Browse files Browse the repository at this point in the history
Signed-off-by: Varun Mittal <[email protected]>
  • Loading branch information
varunmittal91 authored Oct 24, 2023
1 parent 456bf0e commit 3ce28f5
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,12 @@ pydantic = "^2"
python-magic = "*"
pyyaml = "*"
requests = "*"
# pandera next release supports pydantic, need to revert back to once available
pandera = { git = "https://github.com/unionai-oss/pandera", branch = "main" }
pandera = { version = "^0.17.2" }

# for Python 3.12, force higher version of numpy
numpy = [
{version = "~1.24", python = "~3.8"},
{version = "~1.26", python = "~3.12"}
{ version = "~1.24", python = "~3.8" },
{ version = "~1.26", python = "~3.12" }
]
pytz = "^2023.3.post1"

Expand All @@ -39,8 +38,7 @@ types-tabulate = "^0.9.0.3"
pandas-stubs = "^2.0.2.230605"
types-pyyaml = "^6.0.12.11"
types-requests = "^2.31.0.2"
# pandera next release supports pydantic, need to revert back to once available
pandera = { extras = ["mypy"], git = "https://github.com/unionai-oss/pandera", branch = "main" }
pandera = { version = "^0.17.2", extras = ["mypy"] }
isort = "^5.12.0"
flake8 = "^6.1.0"
pre-commit = "^3.3.3"
Expand Down

0 comments on commit 3ce28f5

Please sign in to comment.