-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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 metabolights-utils to 1.3.1 #52110
Conversation
📝 WalkthroughWalkthroughThe pull request involves an update to the Possibly related PRs
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🔇 Additional comments (5)recipes/metabolights-utils/meta.yaml (5)Line range hint The build configuration is appropriate for a Python CLI package:
🧰 Tools🪛 yamllint[error] 1-1: syntax error: found character '%' that cannot start any token (syntax) Line range hint The version bump from 1.2.2 to 1.3.1 follows standard practices:
🧰 Tools🪛 yamllint[error] 1-1: syntax error: found character '%' that cannot start any token (syntax) Line range hint The dependencies have strict version pins. Let's verify compatibility and check for any security advisories. #!/bin/bash
# Description: Check dependency compatibility and security advisories
# Check if dependencies match those declared in pyproject.toml
curl -sL https://raw.githubusercontent.com/EBI-Metabolights/metabolights-utils/v1.3.1/pyproject.toml | grep -A 20 "^dependencies"
# Check for security advisories in key dependencies
gh api graphql -f query='
{
securityVulnerabilities(first: 5, ecosystem: PIP, package: "httpx") {
nodes {
advisory {
summary
severity
publishedAt
}
vulnerableVersionRange
}
}
}' 🧰 Tools🪛 yamllint[error] 1-1: syntax error: found character '%' that cannot start any token (syntax)
Let's confirm the SHA256 checksum matches the source tarball from PyPI. #!/bin/bash
# Description: Verify SHA256 matches PyPI source
# Download tarball and compute SHA256
curl -sL https://pypi.io/packages/source/m/metabolights-utils/metabolights_utils-1.3.1.tar.gz | sha256sum
Let's confirm that version 1.3.1 exists on PyPI and is the latest stable release. ✅ Verification successfulThe previous script didn't provide clear results about the version availability. Let me try a different approach to verify the version. Version 1.3.1 is verified as the latest available release on PyPI The output confirms that version 1.3.1 exists on PyPI and is indeed the latest version available, showing a natural progression from previous versions (0.9.x → 1.0.x → 1.1.x → 1.2.x → 1.3.x). The version bump from 1.2.2 to 1.3.1 is appropriate. 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Verify version exists on PyPI and check if it's the latest
# Check if version exists and get release date
curl -s https://pypi.org/pypi/metabolights_utils/json | jq -r '.releases["1.3.1"].upload_time_iso_8601 // empty'
# Get latest version for comparison
curl -s https://pypi.org/pypi/metabolights_utils/json | jq -r '.info.version'
Length of output: 812 Script: #!/bin/bash
# Using a different PyPI API endpoint format
curl -s "https://pypi.org/simple/metabolights-utils/" | grep -o "metabolights[-_]utils-1.3.1" || echo "Version not found"
# Get all available versions
curl -s "https://pypi.org/simple/metabolights-utils/" | grep -o "metabolights[-_]utils-[0-9.]*" | sort -V
Length of output: 7427 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 (
|
Update
metabolights-utils
: 1.2.2 → 1.3.1recipes/metabolights-utils
(click to view/edit other files)This pull request was automatically generated (see docs).