Conversation
…dows installer) - Python versions: Drop support for 3.9 (EOL); evaluate support for 3.12, 3.13, 3.14; move to 3.12 as default for Docker and Windows installer - Upgrade to DeepLC >=3.1 - Attempt to suppress OpenMS data warning
…y the CLI argument was checked.
There was a problem hiding this comment.
Pull Request Overview
This PR updates packaging and environment configurations, focusing on Python version standardization, dependency updates, and bug fixes. The changes enable Python 3.12+ support, update DeepLC dependency constraints, add an optional idxml extra for pyopenms integration, fix a bug in profile config parameter handling, and suppress pyopenms warnings.
- Default Python version updated to 3.12 across CI/CD workflows
- DeepLC dependency constraint relaxed from
<3.1to>=3.1 - New optional
idxmlextra added for pyopenms support with warning suppression
Reviewed Changes
Copilot reviewed 6 out of 7 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| pyproject.toml | Updated DeepLC version constraint and added idxml optional dependency |
| ms2rescore/main.py | Fixed profile parameter to read from config instead of CLI args |
| ms2rescore/init.py | Added warning filter for pyopenms OPENMS_DATA_PATH message |
| Dockerfile | Updated sync command to include all extras |
| .github/workflows/test.yml | Updated Python versions to 3.10-3.14 and added idxml extra to installation |
| .github/workflows/publish.yml | Updated default Python version to 3.12 |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
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.
Added
idxmlextra for pyOpenMS; enabled by default in the Docker image and Windows installer to provide idXML support out of the box.Changed
>= 3.1.Fixed
profileparameter from configuration files — previously, only the CLI argument was honored.