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 snakeobjects to 3.1.4 #51019

Merged
merged 3 commits into from
Sep 27, 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
14 changes: 9 additions & 5 deletions recipes/snakeobjects/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,26 +1,28 @@
{% set version = "3.1.2" %}
{% set version = "3.1.4" %}

package:
name: snakeobjects
version: {{ version }}

source:
url: https://github.com/iossifovlab/snakeobjects/archive/refs/tags/{{ version }}.tar.gz
sha256: b95951c084c5d4ab047bb4dccbb2d7c1573bf9652eabde29b5c6fab93c1075e4
sha256: 056d8edff46015a6813047f327ca1888c88ee012707e9400d6297e4eb7b00cf7
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

Source URL has not been updated correctly.

Please ensure that the url in recipes/snakeobjects/meta.yaml includes the updated version 3.1.4.tar.gz.

  • File: recipes/snakeobjects/meta.yaml
  • Line: 9
🔗 Analysis chain

SHA256 checksum update looks good.

The SHA256 checksum has been updated, which is necessary when changing the source version.

Let's verify if the source URL has been updated correctly:

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify that the source URL has been updated to match the new version.

# Test: Check if the URL in the YAML file matches the expected pattern
grep -n 'url:.*3.1.4.tar.gz' recipes/snakeobjects/meta.yaml

# Expected output: A line containing the URL with the new version (3.1.4)
# If no output is produced, it means the URL hasn't been updated correctly

Length of output: 952


build:
script: {{ PYTHON }} -m pip install --no-deps --ignore-installed -vv .
script: {{ PYTHON }} -m pip install --no-deps --no-build-isolation --no-cache-dir -vvv .
noarch: python
number: 0
entry_points:
- sobjects = snakeobjects.cli:cli
run_exports:
- {{ pin_subpackage('snakeobjects', max_pin="x") }}

requirements:
host:
- python
- python <3.12
- pip
run:
- python
- python <3.12
- snakemake-minimal

test:
Expand All @@ -34,7 +36,9 @@ about:
home: https://github.com/iossifovlab/snakeobjects
summary: Snakeobjects, an object-oriented workflow management system based on snakemake
license: MIT
license_family: MIT
license_file: LICENSE
dev_url: https://github.com/iossifovlab/snakeobjects

extra:
maintainers:
Expand Down