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 pybarrnap to 0.5.1 #53476

Merged
merged 2 commits into from
Jan 25, 2025
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
24 changes: 13 additions & 11 deletions recipes/pybarrnap/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
{% set name = "pybarrnap" %}
{% set version = "0.5.0" %}
{% set version = "0.5.1" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pybarrnap-{{ version }}.tar.gz
sha256: 9578c1677c60dfe7f12bccfd1613048918068289b0dc04b3d0396e699fd09073
sha256: 19c0188147a6d2dceee93b2a6274739e766ca6b9a6eaf9a5383a50f957f038d5

build:
number: 0
noarch: python
entry_points:
- pybarrnap = pybarrnap.scripts.pybarrnap:main
script: {{ PYTHON }} -m pip install . -vvv --no-deps --no-build-isolation
script: {{ PYTHON }} -m pip install . -vvv --no-deps --no-build-isolation --no-cache-dir
run_exports:
- {{ pin_subpackage('pybarrnap', max_pin="x.x") }}

requirements:
host:
- python >=3.8
- poetry-core >=1.0.0
- python >=3.9
- hatchling ==1.26.3
- pip
run:
- python >=3.8
- biopython >=1.79
- pyhmmer >=0.10.8
- python >=3.9
- biopython >=1.80
- pyhmmer >=0.11.0

test:
imports:
Expand All @@ -35,11 +35,13 @@ test:
- pybarrnap --help

about:
home: https://github.com/moshi4/pybarrnap/
summary: "Python implementation of barrnap (Bacterial ribosomal RNA predictor)"
license: GPL-3.0-or-later
home: "https://github.com/moshi4/pybarrnap"
summary: "Python implementation of barrnap (Bacterial ribosomal RNA predictor)."
license: "GPL-3.0-or-later"
license_family: GPL3
license_file: LICENSE
dev_url: "https://github.com/moshi4/pybarrnap"
doc_url: "https://github.com/moshi4/pybarrnap/blob/v{{ version }}/README.md"

extra:
recipe-maintainers:
Expand Down
Loading