From 2ad9976816e5f30b69e708d7fb5867f65e168086 Mon Sep 17 00:00:00 2001 From: Fokko Driesprong Date: Fri, 10 Oct 2025 09:03:36 +0200 Subject: [PATCH] Set lock on version of Pydantic Got fixed upstream https://github.com/apache/iceberg-python/pull/2591 --- bindings/python/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/pyproject.toml b/bindings/python/pyproject.toml index 36b583422..41877e195 100644 --- a/bindings/python/pyproject.toml +++ b/bindings/python/pyproject.toml @@ -49,7 +49,7 @@ include = [ ignore = ["F403", "F405"] [tool.hatch.envs.dev] -dependencies = ["maturin>=1.0,<2.0", "pytest>=8.3.2", "datafusion==45.*", "pyiceberg[sql-sqlite,pyarrow]>=0.10.0", "fastavro>=1.11.1"] +dependencies = ["maturin>=1.0,<2.0", "pytest>=8.3.2", "datafusion==45.*", "pyiceberg[sql-sqlite,pyarrow]>=0.10.0", "fastavro>=1.11.1", "pydantic<2.12.0"] [tool.hatch.envs.dev.scripts] build = "maturin build --out dist --sdist"