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 breakfast to 0.4.5 #52137

Merged
merged 2 commits into from
Nov 15, 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
31 changes: 16 additions & 15 deletions recipes/breakfast/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,49 +1,50 @@
{% set name = "breakfast" %}
{% set version = "0.4.3" %}
{% set version = "0.4.5" %}

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

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/breakfast-{{ version }}.tar.gz
sha256: a241e0d4891c62635f1b99559271fb4b7777ffa60ef67e25be579d6750c01b9c
sha256: 5dd370d4d6d92d7b161acc5356b3b6c7f454d9c0665a8abac38e5f6c012d3eee

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

requirements:
host:
- pip
- poetry
- python >=3.6,<3.11
- poetry-core
- python >=3.11,<3.13
run:
- click >=8.1.3,<9.0.0
- networkx >=2.8,<3.0
- numpy >=1.22.3,<2.0.0
- pandas >=1.4.2,<2.0.0
- click >=8.1.7,<9.0.0
- networkx >=3.4.2,<4.0.0
- numpy >=2.1.3,<3.0.0
- pandas >=2.2.3,<3.0.0
- python >=3.9,<3.11
- scikit-learn >=1.0.2,<2.0.0
- scipy >=1.8.0,<2.0.0
- scikit-learn >=1.5.2,<2.0.0
- scipy >=1.14.1,<2.0.0

test:
imports:
- breakfast
commands:
- pip check
- breakfast --help
requires:
- pip

about:
home: https://github.com/rki-mf1/breakfast
summary: 'breakfast: fast putative outbreak cluster and infection chain detection using SNPs'
summary: 'breakfast: fast putative outbreak cluster and infection chain detection using SNPs.'
license: MIT
license_family: MIT
license_file: LICENSE
dev_url: https://github.com/rki-mf1/breakfast

extra:
recipe-maintainers:
Expand Down
Loading