This is an automated email from the ASF dual-hosted git repository.

xuanwo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-rust.git


The following commit(s) were added to refs/heads/main by this push:
     new 16ddd0e24 deps: unpin pydantic (#1793)
16ddd0e24 is described below

commit 16ddd0e242f34d806f39e2f91a08a6cb9592e88e
Author: Kevin Liu <[email protected]>
AuthorDate: Tue Oct 28 09:12:19 2025 -0700

    deps: unpin pydantic (#1793)
    
    ## Which issue does this PR close?
    
    <!--
    We generally require a GitHub issue to be filed for all bug fixes and
    enhancements and this helps us generate change logs for our releases.
    You can link an issue to this PR using the GitHub syntax. For example
    `Closes #123` indicates that this PR will close issue #123.
    -->
    
    - Closes #.
    
    ## What changes are included in this PR?
    
    <!--
    Provide a summary of the modifications in this PR. List the main changes
    such as new features, bug fixes, refactoring, or any other updates.
    -->
    Revert of #1737
    pydantic release a fix in 2.12.3 which will be automatically used by
    resolver (see simliar in pyiceberg,
    https://github.com/apache/iceberg-python/pull/2635)
    
    ## Are these changes tested?
    
    <!--
    Specify what test covers (unit test, integration test, etc.).
    
    If tests are not included in your PR, please explain why (for example,
    are they covered by existing tests)?
    -->
---
 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 c659d9b1a..a9c3c290c 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==49.*", 
"pyiceberg[sql-sqlite,pyarrow]>=0.10.0", "fastavro>=1.11.1", "pydantic<2.12.0"]
+dependencies = ["maturin>=1.0,<2.0", "pytest>=8.3.2", "datafusion==49.*", 
"pyiceberg[sql-sqlite,pyarrow]>=0.10.0", "fastavro>=1.11.1"]
 
 [tool.hatch.envs.dev.scripts]
 build = "maturin build --out dist --sdist"

Reply via email to