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

fix mykrobe python package dependencies #13672

Merged
merged 22 commits into from
Feb 16, 2019
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions recipes/mykrobe/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
numpy:
- 1.15
20 changes: 19 additions & 1 deletion recipes/mykrobe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ source:
md5 : 2650bfab3caa6ac9e142fb19d55f5604

build:
number: 0
number: 1
skip: True # [py27]
entry_points:
- mykrobe = mykrobe.cli:main
Expand All @@ -23,13 +23,31 @@ requirements:
- pip
- zlib
- wget
- numpy
- cython
- mongoengine
- pyvcf
- biopython
run:
- python
- mongodb >3.0
- wget
- zlib
- numpy
- cython
- mongoengine
- pyvcf
- biopython

test:
imports:
- numpy
- cython
- mongoengine
- vcf
- Bio
- mykrobe

commands:
- mykrobe --version
- mykrobe --help
Expand Down