-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
Update snakemake to 8.24.1 #51586
Update snakemake to 8.24.1 #51586
Conversation
📝 Walkthrough📝 WalkthroughWalkthroughThe pull request involves an update to the Possibly related PRs
Suggested reviewers
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
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
CodeRabbit Configuration File (
|
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: 1
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
📒 Files selected for processing (1)
- recipes/snakemake/meta.yaml (1 hunks)
🧰 Additional context used
🔇 Additional comments (2)
recipes/snakemake/meta.yaml (2)
4-4
: LGTM: Version update is consistent.The version bump from 8.24.0 to 8.24.1 is correctly reflected in the package metadata.
12-12
: Verify SHA256 checksum against PyPI release.Let's verify that the SHA256 checksum matches the official release on PyPI.
✅ Verification successful
Let me try a different approach to verify the checksum.
This script will:
- Show us the full meta.yaml to confirm the version and checksum
- Query PyPI's JSON API to get the official SHA256 for the source distribution of version 8.24.1
SHA256 checksum verified successfully
The SHA256 checksum in the recipe (
0559831260cdfb216d9c20f7e8465d841333935eac15f62787cec6d266efbf01
) matches exactly with the official checksum from PyPI for snakemake version 8.24.1.🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify the SHA256 checksum matches the PyPI release # Download the package and compute its checksum VERSION="8.24.1" PACKAGE="snakemake" EXPECTED_SHA="0559831260cdfb216d9c20f7e8465d841333935eac15f62787cec6d266efbf01" echo "Downloading $PACKAGE-$VERSION from PyPI..." curl -sL "https://pypi.io/packages/source/s/$PACKAGE/$PACKAGE-$VERSION.tar.gz" | sha256sum echo "Expected SHA256: $EXPECTED_SHA"Length of output: 2650
Script:
#!/bin/bash # Let's verify the version and checksum from the recipe cat recipes/snakemake/meta.yaml # Then let's try to fetch the package info from PyPI curl -s "https://pypi.org/pypi/snakemake/json" | jq -r '.releases["8.24.1"][] | select(.packagetype=="sdist") | .digests.sha256'Length of output: 4936
Update
snakemake
: 8.24.0 → 8.24.1recipes/snakemake
(click to view/edit other files)This pull request was automatically generated (see docs).