diff --git a/pyproject.toml b/pyproject.toml index 2f14a7f..006cc28 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" @@ -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"