chore(deps): drop <3.13 Python cap, require coreml-diffusion>=0.1.6#68
Merged
Conversation
Mirror the library: coreml-diffusion 0.1.6 dropped its stale <3.13 cap, so this package can too (requires-python >=3.12). Bump the dependency floor to 0.1.6 to keep the cap consistent across both — a consumer pinned to <3.13 with a library allowing 3.13+ would be unresolvable for the 3.13 range. Pin the dev/CI interpreter to 3.12 via .python-version so CI runs on a fixed baseline rather than floating to a newer Python without a pinned-torch wheel.
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.
Mirrors coreml-diffusion 0.1.6, which dropped its stale
<3.13Python cap.requires-python→>=3.12(no upper cap; the binary deps coremltools/torchself-gate via their own wheels — coremltools 9 ships a cp313 wheel).
coreml-diffusion>=0.1.6— keeps the cap consistent across both packages (aconsumer capped
<3.13against a library allowing 3.13+ is unresolvable forthe 3.13 range), and 0.1.6 is the first release without the cap.
.python-versionpins dev/CI to 3.12 so CI runs on a fixed baseline insteadof floating to a newer Python without a pinned-torch wheel.
No CI matrix across Python versions: the package is pure Python and its
version compatibility is bounded by the binary deps' wheels, which fail loudly
at install time on an unsupported interpreter.