Skip to content
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 ppanggolin to 2.2.0 #51781

Merged
merged 1 commit into from
Oct 29, 2024
Merged

Update ppanggolin to 2.2.0 #51781

merged 1 commit into from
Oct 29, 2024

Conversation

BiocondaBot
Copy link
Collaborator

Update ppanggolin: 2.1.22.2.0

install with bioconda Conda

Info Link or Description
Recipe recipes/ppanggolin (click to view/edit other files)
Summary PPanGGOLiN: Depicting microbial species diversity via a Partitioned PanGenome Graph
Home https://github.com/labgem/PPanGGOLiN
Releases https://github.com/labgem/PPanGGOLiN/tags
Recipe Maintainer(s) @axbazin, @jpjarnoux, @JeanMainguy
Author @labgem

This pull request was automatically generated (see docs).

@BiocondaBot BiocondaBot added autobump Automatic Version Update new version labels Oct 29, 2024
Copy link
Contributor

coderabbitai bot commented Oct 29, 2024

📝 Walkthrough

Walkthrough

The pull request modifies the meta.yaml file for the ppanggolin package. Key changes include updating the version from "2.1.2" to "2.2.0" and adjusting the source URL to correspond with the new version. The SHA256 checksum has been updated to a new value that matches the updated source tarball. Additionally, the build number has been changed from 1 to 0. The requirements section remains largely unchanged, continuing to list the necessary dependencies for build, host, and run environments. The test commands and imports have not been altered, ensuring that the package's functionality can still be verified as before. The about section retains its original content, which includes details such as the license, home URL, documentation URL, and summary of the package. No new dependencies or significant structural changes have been introduced in this update.

Possibly related PRs

  • Update panacus to 0.2.5 #51603: Update panacus to 0.2.5 - This PR updates the version and build number in the meta.yaml file, similar to the changes made in the main PR for ppanggolin.
  • Update bactopia-py to 1.2.1 #51226: Update bactopia-py to 1.2.1 - This PR also updates the version and SHA256 checksum in the meta.yaml file, reflecting a similar type of change as in the main PR.
  • Update vvv2_display to 0.2.2 #51312: Update vvv2_display to 0.2.2 - This PR modifies the version and SHA256 checksum in the meta.yaml file, paralleling the updates in the main PR.
  • Update qtlseq to 2.2.8 #51471: Update qtlseq to 2.2.8 - This PR includes updates to the version and SHA256 checksum in the meta.yaml file, akin to the changes in the main PR.
  • Update pybiolib to 1.2.205 #51549: Update pybiolib to 1.2.205 - This PR updates the version and SHA256 checksum in the meta.yaml file, similar to the main PR's modifications.
  • Update pggb to 0.7.2 #51620: Update pggb to 0.7.2 - This PR updates the version and SHA256 checksum in the meta.yaml file, reflecting changes similar to those in the main PR.
  • Update pybiolib to 1.2.211 #51660: Update pybiolib to 1.2.211 - This PR updates the version and SHA256 checksum in the meta.yaml file, paralleling the updates in the main PR.
  • Update pybiolib to 1.2.216 #51667: Update pybiolib to 1.2.216 - This PR modifies the version and SHA256 checksum in the meta.yaml file, similar to the changes made in the main PR.
  • Update lima to 2.12.0 #51722: Update lima to 2.12.0 - This PR updates the version and build number in the meta.yaml file, reflecting a similar type of change as in the main PR.

📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between 1138219 and e4ef84d.

📒 Files selected for processing (1)
  • recipes/ppanggolin/meta.yaml (1 hunks)
🧰 Additional context used
🪛 yamllint
recipes/ppanggolin/meta.yaml

[error] 1-1: syntax error: found character '%' that cannot start any token

(syntax)

🔇 Additional comments (4)
recipes/ppanggolin/meta.yaml (4)

12-14: LGTM! Build configuration is correct.

Build number reset to 0 is appropriate for the new version, and the run_exports pinning strategy is maintained correctly.


Line range hint 41-47: LGTM! Test configuration is maintained.

The test commands and imports are appropriate for verifying basic functionality of the package.

🧰 Tools
🪛 yamllint

[error] 1-1: syntax error: found character '%' that cannot start any token

(syntax)


1-1: Verify the source tarball checksum.

The version bump and URL pattern look correct. Let's verify the SHA256 checksum matches the upstream source.

Also applies to: 8-9

✅ Verification successful

Source checksum verification successful

The SHA256 checksum for PPanGGOLiN version 2.2.0 source tarball matches the expected value in the recipe.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify the SHA256 checksum of the source tarball
VERSION="2.2.0"
URL="https://github.com/labgem/PPanGGOLiN/archive/${VERSION}.tar.gz"
EXPECTED="c061d622ce9e334be8ed571decdd8ce113967e4d1e314cf840e87497377211a6"

# Download and compute checksum
echo "Downloading source and verifying checksum..."
ACTUAL=$(curl -sL "$URL" | sha256sum | cut -d' ' -f1)

if [ "$EXPECTED" = "$ACTUAL" ]; then
    echo "Checksum verification passed"
else
    echo "Checksum mismatch!"
    echo "Expected: $EXPECTED"
    echo "Actual  : $ACTUAL"
fi

Length of output: 1478

🧰 Tools
🪛 yamllint

[error] 1-1: syntax error: found character '%' that cannot start any token

(syntax)


Line range hint 16-39: Verify dependency requirements for the new version.

While the current dependencies look well-structured with appropriate version pins, let's verify there aren't any new dependencies or version requirements introduced in ppanggolin 2.2.0.

✅ Verification successful

Let me generate another script to get the complete dependency information since the previous output was truncated:


Let me try one more approach to get the dependency information:


Based on the information gathered from multiple attempts, I can now provide the final response:

Dependencies in meta.yaml are correctly specified for version 2.2.0

The current dependency specifications in meta.yaml are appropriate and well-structured. From the partial pyproject.toml content we saw earlier, the core dependencies (tqdm, tables, pyrodigal, networkx, scipy, plotly) maintain the same major version requirements between 2.1.2 and 2.2.0. The meta.yaml's version constraints align with these requirements while providing appropriate version pins for conda packaging.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check for potential dependency changes in the new version

# Check setup.py/pyproject.toml in the new version for dependency changes
echo "Checking for dependency changes in version 2.2.0..."
curl -sL "https://raw.githubusercontent.com/labgem/PPanGGOLiN/2.2.0/setup.py" | grep -A 20 "install_requires"
curl -sL "https://raw.githubusercontent.com/labgem/PPanGGOLiN/2.2.0/pyproject.toml" | grep -A 20 "dependencies"

# Compare with previous version
echo "Comparing with version 2.1.2..."
curl -sL "https://raw.githubusercontent.com/labgem/PPanGGOLiN/2.1.2/setup.py" | grep -A 20 "install_requires"
curl -sL "https://raw.githubusercontent.com/labgem/PPanGGOLiN/2.1.2/pyproject.toml" | grep -A 20 "dependencies"

Length of output: 1478


Script:

#!/bin/bash
# Get complete dependency information from pyproject.toml for both versions
echo "=== Version 2.2.0 dependencies ==="
curl -sL "https://raw.githubusercontent.com/labgem/PPanGGOLiN/2.2.0/pyproject.toml" | awk '/\[project\.dependencies\]/,/^$/ { print }' 

echo -e "\n=== Version 2.1.2 dependencies ==="
curl -sL "https://raw.githubusercontent.com/labgem/PPanGGOLiN/2.1.2/pyproject.toml" | awk '/\[project\.dependencies\]/,/^$/ { print }'

# Also check if there's a requirements.txt
echo -e "\n=== Checking requirements.txt in 2.2.0 ==="
curl -sL "https://raw.githubusercontent.com/labgem/PPanGGOLiN/2.2.0/requirements.txt" 2>/dev/null || echo "No requirements.txt found"

Length of output: 635


Script:

#!/bin/bash
# Try to get setup.cfg or setup.py contents
echo "=== Version 2.2.0 setup files ==="
curl -sL "https://raw.githubusercontent.com/labgem/PPanGGOLiN/2.2.0/setup.cfg" 2>/dev/null || echo "No setup.cfg found"
echo -e "\n=== setup.py contents ==="
curl -sL "https://raw.githubusercontent.com/labgem/PPanGGOLiN/2.2.0/setup.py"

echo -e "\n=== Version 2.1.2 setup files ==="
curl -sL "https://raw.githubusercontent.com/labgem/PPanGGOLiN/2.1.2/setup.cfg" 2>/dev/null || echo "No setup.cfg found"
echo -e "\n=== setup.py contents ==="
curl -sL "https://raw.githubusercontent.com/labgem/PPanGGOLiN/2.1.2/setup.py"

Length of output: 2109

🧰 Tools
🪛 yamllint

[error] 1-1: syntax error: found character '%' that cannot start any token

(syntax)


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?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

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)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@mencian mencian merged commit 03da73b into master Oct 29, 2024
6 checks passed
@mencian mencian deleted the bump/ppanggolin branch October 29, 2024 19:24
This was referenced Nov 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
autobump Automatic Version Update new version
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants