Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions sdk/python/requirements/py3.10-ci-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1088,9 +1088,9 @@ docker==7.1.0 \
# via
# mlflow
# testcontainers
docling==2.27.0 \
--hash=sha256:1288ed75b27e33bf94daff34faffc6d11b7d7ccc13e3df84fb24adad3991f72d \
--hash=sha256:faba35662612a2c687a3a463e501d95f645316436084af92a0442ce162429a3d
docling==2.91.0 \
--hash=sha256:c37fa0957e63a784753a4d43fc1271caa869d883a8354d556ee6d52a3046929e \
--hash=sha256:db413c21b2fe5bec78c32b475346ef770ab40368a331150570371c3281c951a2
Comment on lines +1091 to +1093

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 docling version in lock files (2.91.0) conflicts with pyproject.toml pin (2.27.0)

The CI requirements lock files are updated to docling==2.91.0, but pyproject.toml:62 still pins docling==2.27.0. This creates an inconsistency: pip install feast[docling] will install 2.27.0 while the CI lock files install 2.91.0. Furthermore, the transitive dependencies (docling-core==2.77.1, docling-ibm-models==3.13.2, docling-parse==4.7.3) were resolved for docling 2.27.0 and were not re-resolved for 2.91.0, which may result in incompatible dependency combinations. The lock files should be regenerated after updating pyproject.toml, not manually edited.

Prompt for agents
The root cause is that pyproject.toml line 62 still pins docling==2.27.0 while the lock files were manually bumped to 2.91.0. The fix requires two steps:

1. Update pyproject.toml line 62 from `docling = ["docling==2.27.0"]` to `docling = ["docling==2.91.0"]` (or an appropriate version constraint).
2. Regenerate all three CI requirements lock files (py3.10, py3.11, py3.12) using the project's standard dependency compilation process (e.g., pip-compile) so that all transitive dependencies (docling-core, docling-ibm-models, docling-parse, etc.) are properly re-resolved for the new docling version.

Do NOT manually edit lock files — they should always be regenerated from pyproject.toml to ensure consistency.
Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

# via feast (pyproject.toml)
docling-core[chunking]==2.77.1 \
--hash=sha256:4e38df7143e2ecfe69ecf05278e8e25063a9ec1b6d0b5e28e3b8f1db7cc5ed72 \
Expand Down
6 changes: 3 additions & 3 deletions sdk/python/requirements/py3.11-ci-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1183,9 +1183,9 @@ docker==7.1.0 \
# via
# mlflow
# testcontainers
docling==2.27.0 \
--hash=sha256:1288ed75b27e33bf94daff34faffc6d11b7d7ccc13e3df84fb24adad3991f72d \
--hash=sha256:faba35662612a2c687a3a463e501d95f645316436084af92a0442ce162429a3d
docling==2.91.0 \
--hash=sha256:c37fa0957e63a784753a4d43fc1271caa869d883a8354d556ee6d52a3046929e \
--hash=sha256:db413c21b2fe5bec78c32b475346ef770ab40368a331150570371c3281c951a2
# via feast (pyproject.toml)
docling-core[chunking]==2.77.1 \
--hash=sha256:4e38df7143e2ecfe69ecf05278e8e25063a9ec1b6d0b5e28e3b8f1db7cc5ed72 \
Expand Down
6 changes: 3 additions & 3 deletions sdk/python/requirements/py3.12-ci-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1179,9 +1179,9 @@ docker==7.1.0 \
# via
# mlflow
# testcontainers
docling==2.27.0 \
--hash=sha256:1288ed75b27e33bf94daff34faffc6d11b7d7ccc13e3df84fb24adad3991f72d \
--hash=sha256:faba35662612a2c687a3a463e501d95f645316436084af92a0442ce162429a3d
docling==2.91.0 \
--hash=sha256:c37fa0957e63a784753a4d43fc1271caa869d883a8354d556ee6d52a3046929e \
--hash=sha256:db413c21b2fe5bec78c32b475346ef770ab40368a331150570371c3281c951a2
# via feast (pyproject.toml)
docling-core[chunking]==2.77.1 \
--hash=sha256:4e38df7143e2ecfe69ecf05278e8e25063a9ec1b6d0b5e28e3b8f1db7cc5ed72 \
Expand Down
Loading