Yicong-Huang opened a new pull request, #4300: URL: https://github.com/apache/texera/pull/4300
### What changes were proposed in this PR? This PR bumps `typing_extensions` in `amber/requirements.txt` from `4.10.0` to `4.14.1`. The goal is to unblock Python 3.13 dependency resolution in CI. With the older pin, the dependency solver could fall back to an older `pydantic` / `pydantic-core` path that fails under Python 3.13. Updating `typing_extensions` allows resolution to proceed to a newer `pydantic-core` build with a `cp313` wheel. ### Any related issues, documentation, discussions? Closes #4298 Related to #4079 ### How was this PR tested? Verified dependency resolution locally with: ```bash python3 -m pip install --dry-run -r amber/requirements.txt -r amber/operator-requirements.txt | rg "pydantic(|-core|_core)|typing-extensions|typing_extensions|pyiceberg" -i ``` This resolved to `pydantic-core==2.41.5` instead of the older failing path. Also verified a Python 3.13 Linux wheel exists for that version with: ```bash python3 -m pip download --only-binary=:all: --no-deps --platform manylinux2014_x86_64 --python-version 3.13 --implementation cp --abi cp313 pydantic-core==2.41.5 ``` ### Was this PR authored or co-authored using generative AI tooling? Generated-by: Codex GPT-5 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
