From cb69bc3d9c0de031e9cc198416a661060bbec66a Mon Sep 17 00:00:00 2001 From: Jack Eakle <41701236+jaeakle@users.noreply.github.com> Date: Sun, 15 Oct 2023 14:36:01 -0400 Subject: [PATCH] Add Rabies 0.5.1 (#43638) * Add rabies 0.5.1 * Add Rabies 0.5.1 * Added explicit request for etelemetry>=0.2.0 * Fixed typo found by linter * Removing pip check etelmetry is being tagged incorrectly by pip check, removing to complete upload. * Add explicit python version Co-authored-by: Joshua Zhuang <71105179+mencian@users.noreply.github.com> --------- Co-authored-by: Joshua Zhuang <71105179+mencian@users.noreply.github.com> --- recipes/rabies/meta.yaml | 53 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 recipes/rabies/meta.yaml diff --git a/recipes/rabies/meta.yaml b/recipes/rabies/meta.yaml new file mode 100644 index 0000000000000..e3f692a761b32 --- /dev/null +++ b/recipes/rabies/meta.yaml @@ -0,0 +1,53 @@ +{% set name = "rabies" %} +{% set version = "0.5.1" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/rabies-{{ version }}.tar.gz + sha256: 8ae93c1b8c5ba00c21a42a23f39cc36f365e5962596fdbe9760c0f504cea3a36 + +build: + noarch: python + run_exports: + - {{ pin_subpackage('rabies', max_pin="x.x") }} + script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation + number: 0 + +requirements: + host: + - python >=3.9 + - pip + run: + - python >=3.9 + - matplotlib-base ==3.3.4 + - nibabel ==3.2.1 + - nilearn ==0.7.1 + - nipype ==1.6.1 + - numpy ==1.20.1 + - pandas ==1.2.4 + - pathos ==0.2.7 + - pybids ==0.16.3 + - scikit-learn ==0.24.1 + - scipy ==1.8.1 + - seaborn ==0.11.1 + - simpleitk ==2.0.2 + - qbatch ==2.3 + - networkx <3 + - etelemetry >=0.2.0 + +test: + imports: + - rabies + +about: + home: https://github.com/CoBrALab/RABIES + summary: 'RABIES: Rodent Automated Bold Improvement of EPI Sequences.' + license: GPL-2.0 + license_file: LICENSE + +extra: + recipe-maintainers: + - jaeakle