-
Notifications
You must be signed in to change notification settings - Fork 30
chore: update to stable snakemake #142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
WalkthroughThe change involves updating the dependency specification for the Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant DependencyManager
participant GitRepo
participant PackageRepo
User->>DependencyManager: Request for snakemake
alt Old Configuration
DependencyManager->>GitRepo: Fetch latest commit
GitRepo-->>DependencyManager: Return latest snakemake
else New Configuration
DependencyManager->>PackageRepo: Fetch version 8.20.0
PackageRepo-->>DependencyManager: Return snakemake 8.20.0
end
DependencyManager-->>User: Provide snakemake
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: .coderabbit.yaml
Review profile: CHILL
Files selected for processing (1)
- pyproject.toml (1 hunks)
Additional comments not posted (1)
pyproject.toml (1)
28-28
: Approve the dependency update but verify compatibility.The update from a Git repository to a specific version (
8.20.0
) ofsnakemake
is a positive change for stability and reproducibility. However, it's crucial to ensure that this version is compatible with other dependencies and the overall project requirements.Run the following script to verify the compatibility of
snakemake
version8.20.0
with other dependencies:
oh, hm, why is there now an explicit version instead of the URI? |
Fix incoming: snakemake/snakemake#3077 |
The test still failed... |
Why the merge already? |
The fix is not yet released. |
The change is merely in the toml, pointing to an existing snakemake release. |
Summary by CodeRabbit
snakemake
package to ensure a stable version (8.20.0) is used, enhancing the reliability of the environment.