-
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 gseapy to 1.1.4 #52100
Update gseapy to 1.1.4 #52100
Conversation
📝 WalkthroughWalkthroughThe pull request involves an update to the Possibly related PRs
Suggested reviewers
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🔇 Additional comments (3)recipes/gseapy/meta.yaml (3)
Correctly reset build number to 0 for the new version, following Conda packaging best practices. Line range hint Let's ensure the requirements remain accurate for version 1.1.4. #!/bin/bash
# Description: Check for any dependency changes in the new version
# Get package metadata from PyPI
curl -s "https://pypi.org/pypi/gseapy/1.1.4/json" | jq -r '.info.requires_dist'
# Check setup.py/pyproject.toml in the source distribution for requirements
curl -sL "https://files.pythonhosted.org/packages/12/92/0a4e24f4a0ac772e8ec652f299a89292eb66d67e329579e1ea48cc006250/gseapy-1.1.4.tar.gz" | tar -xz --to-stdout "*/setup.py" "*/pyproject.toml" 2>/dev/null || true 🧰 Tools🪛 yamllint[error] 18-18: trailing spaces (trailing-spaces)
The version update, URL, and checksum changes are consistent with the PR objectives. Let's verify the package source integrity: Also applies to: 6-7 ✅ Verification successfulPackage source integrity verified successfully The verification confirms:
🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Verify the source URL and checksum for gseapy 1.1.4
# Download the package and compute its checksum
curl -sL "https://files.pythonhosted.org/packages/12/92/0a4e24f4a0ac772e8ec652f299a89292eb66d67e329579e1ea48cc006250/gseapy-1.1.4.tar.gz" | sha256sum
# Verify the package exists on PyPI and check its metadata
curl -s "https://pypi.org/pypi/gseapy/1.1.4/json" | jq -r '.urls[] | select(.packagetype=="sdist") | {url, digests}'
Length of output: 356 Script: #!/bin/bash
# Let's verify the package details from the meta.yaml file and compare with PyPI
echo "=== Content of meta.yaml ==="
cat recipes/gseapy/meta.yaml
echo -e "\n=== PyPI package verification ==="
# Verify package existence and get SHA256
curl -s "https://pypi.org/pypi/gseapy/1.1.4/json" | \
jq -r '.urls[] | select(.packagetype=="sdist") | {url, digests}'
Length of output: 1744 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
gseapy
: 1.1.3 → 1.1.4recipes/gseapy
(click to view/edit other files)This pull request was automatically generated (see docs).