[MNT] move frozen 2024 dependencies test to uv dependency freeze mechanism from dedicated depset#1070
Conversation
This was referenced Jun 13, 2026
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Updates CI to test against a “frozen 2024” dependency resolution using uv’s exclude-newer mechanism instead of a dedicated pinned depset in pyproject.toml.
Changes:
- Removed
dependencies_2024extras group frompyproject.toml. - Updated GitHub Actions test workflow to install via
uv pipwithUV_EXCLUDE_NEWER. - Added
_Pipelinetags forobject_type/estimator_type.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
skpro/regression/compose/_pipeline.py |
Adds estimator metadata tags to classify the pipeline as a proba regressor. |
pyproject.toml |
Removes the pinned 2024 depset extras group in favor of uv freezing. |
.github/workflows/test.yml |
Switches CI install from pip extras to uv pip with an exclude-newer date. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+303
to
+309
| run: > | ||
| uv pip install .[dev] | ||
| --exclude-newer-package "setuptools=false" | ||
| --exclude-newer-package "scikit-base=false" | ||
| env: | ||
| UV_SYSTEM_PYTHON: 1 | ||
| UV_EXCLUDE_NEWER: "2024-09-01" |
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.
This PR replaces the dedicated
pyprojectdepset mechanism to testskproagainst frozen 2024 dependencies by theuvnative feature for frozen dependency sets.