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 bactopia-teton to 1.0.5 #51037

Merged
merged 2 commits into from
Sep 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions recipes/bactopia-teton/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set version = "1.0.4" %}
{% set version = "1.0.5" %}

package:
name: bactopia-teton
Expand All @@ -12,7 +12,7 @@ build:

source:
url: https://github.com/bactopia/bactopia-teton/archive/v{{version}}.tar.gz
sha256: 648b476bcf15bc177df1a814d782d318ee6b78a38e2ccb8268c569cbd1576504
sha256: 4340da1ca721850564dcc05491ee396d1f9a1bbf662de5ede12fa29c50c1f3be

requirements:
run:
Expand All @@ -28,6 +28,7 @@ requirements:
- pigz
- python >=3.6,<3.11
- sed
- sizemeup >=1.0.2
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codebase verification

Documentation Update Required

A new runtime requirement sizemeup >=1.0.2 has been added, but there are no corresponding updates in the documentation (CHANGELOG.md, README.md, or docs/). Please ensure that this new dependency is properly documented to inform users about the change.

🔗 Analysis chain

New requirement added: Please provide more context.

A new runtime requirement sizemeup >=1.0.2 has been added. While this may be necessary for the new version:

  1. Could you please explain the reason for adding this new dependency?
  2. Are there any implications for existing users or workflows?
  3. Has this change been documented in the package's changelog or documentation?

To ensure this change is properly documented, please run:

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check for documentation updates related to the new requirement

# Check if there's a CHANGELOG.md file
if [ -f CHANGELOG.md ]; then
    echo "Checking CHANGELOG.md for mentions of sizemeup:"
    grep -i "sizemeup" CHANGELOG.md
else
    echo "CHANGELOG.md not found. Please ensure the new requirement is documented."
fi

# Check README or other documentation files
echo "Checking README and other documentation files for mentions of sizemeup:"
rg -i "sizemeup" README.md docs/ || echo "No mentions found. Please update documentation."

Length of output: 517

- sra-human-scrubber >=2.2

test:
Expand Down