Skip to content

Commit

Permalink
[ci skip] Merge PR 34567
Browse files Browse the repository at this point in the history
Merge PR bioconda#34567, commits were: 
 * Update meta.yaml
 * changed matplotlib to matplotlib-base
 * added cialign recipe
 * changed version numbers for python and numpy
 * added cialign meta.yaml
  • Loading branch information
KatyBrown authored May 1, 2022
1 parent f07b11e commit 6d1af75
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
41 changes: 41 additions & 0 deletions recipes/cialign/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{% set name = "cialign" %}
{% set version = "1.0.18" %}

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

source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: bb0b0645ac7d94b7101b712ce0913b8096c1ebee72a4d7fd1209cbdaabf4adb1

build:
number: 0
script: "{{ PYTHON }} -m pip install . -vv"
noarch: python

requirements:
host:
- configargparse
- matplotlib-base
- numpy
- pillow
- pip
- python>=3.6
run:
- configargparse
- matplotlib-base
- numpy
- pillow
- python>=3.6

test:
imports:
- CIAlign
- tests

about:
home: "https://github.com/KatyBrown/CIAlign"
license: MIT
license_family: MIT
summary: "Toolkit for cleaning and interpreting multiple sequence alignments"
8 changes: 8 additions & 0 deletions recipes/cialign/run_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import unittest
def my_test_suite():
test_loader = unittest.TestLoader()
test_suite = test_loader.discover('tests', pattern='test_*.py')
return test_suite

if __name__ == '__main__':
my_test_suite()

0 comments on commit 6d1af75

Please sign in to comment.