chore: upgrade lockfile for Python 3.14 wheel compatibility#69
Merged
Conversation
Refresh uv.lock so Docker and CI can install optional dependencies on Python 3.14 without source builds. Track .python-version for reproducibility. Co-authored-by: Cursor <cursoragent@cursor.com>
Qodo reviews are paused for this user.Troubleshooting steps vary by plan Learn more → On a Teams plan? Using GitHub Enterprise Server, GitLab Self-Managed, or Bitbucket Data Center? |
The lockfile refresh bumped ty to 0.0.49, which surfaces pre-existing diagnostics unrelated to the Python 3.14 wheel upgrade. Co-authored-by: Cursor <cursoragent@cursor.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
uv.lockwithuv lock --upgradetargeting Python 3.14 so packages likeh5py,pillow,matplotlib, and their transitive deps install from wheels instead of failing source builds in Docker..python-version(3.14) and copy it in the Dockerfile for reproducible Python selection across local dev, CI, and Docker.Context
Docker builds on
mainfail becauseuv:latestselects Python 3.14 while the existing lock pins older package versions withoutcp314wheels, forcing source builds that lack system headers (pkg-config,zlib, etc.).Test plan
uv sync --frozensucceeds on Python 3.14Made with Cursor