fix: restore python 3.14 install support#8
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the packaging metadata and lockfile so ml4t-engineer can install on Python 3.14 by selecting dependency versions that publish cp314 wheels. It fits into the codebase as a packaging/distribution maintenance change rather than an application logic change.
Changes:
- Split several core scientific dependencies in
pyproject.tomlby Python version, using newer minimums for Python 3.14. - Refreshed
uv.lockto resolve Python 3.14 onto compatible package versions (for examplenumba,numpy,pandas,pyarrow, andscipy). - Added a changelog entry documenting the Python 3.14 installability fix.
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
uv.lock |
Regenerated lockfile with Python-version-specific resolutions for compiled dependencies and related transitive packages. |
pyproject.toml |
Added Python 3.14 markers and newer minimum versions for core scientific/runtime dependencies. |
CHANGELOG.md |
Added release notes for the Python 3.14 install support fix and updated compare links. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+165
to
+166
| [Unreleased]: https://github.com/ml4t/engineer/compare/v0.1.0b5...HEAD | ||
| [0.1.0b5]: https://github.com/ml4t/engineer/compare/v0.1.0b4...v0.1.0b5 |
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
Verification