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

bump pysradb 0.3.0 -> 0.4.0 #12612

Merged
merged 3 commits into from
Dec 13, 2018
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
19 changes: 15 additions & 4 deletions recipes/pysradb/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{% set name = "pysradb" %}
{% set version = "0.3.0" %}
{% set version = "0.4.0" %}
{% set file_ext = "tar.gz" %}
{% set hash_type = "sha256" %}
{% set hash_value = "f8d26b37a1424f642c938654a01c4ae02d2758c9fcc6af2cbb4b291e88c3d8dd" %}
{% set hash_value = "a5583eb09c23709e9d5be22e95204a73044037096cf16cd9360edb12a37266cd" %}


package:
Expand All @@ -15,6 +15,8 @@ source:

build:
number: 0
entry_points:
- pysradb=pysradb.cli:cli
script: python setup.py install --single-version-externally-managed --record=record.txt
noarch: python

Expand All @@ -23,16 +25,21 @@ requirements:
- python
- setuptools
- pandas >=0.23.4
- tqdm >=4.28
- tqdm >=4.28
- click >=7.0
run:
- python
- pandas >=0.23.4
- tqdm >=4.28
- click >=7.0

test:
imports:
- pysradb
- pysradb.pysradb
- pysradb.sradb
- pysradb.geodb
commands:
- pysradb | grep "Query NGS metadata"

about:
home: https://github.com/saketkc/pysradb
Expand All @@ -45,3 +52,7 @@ about:
extra:
recipe-maintainers:
- saketkc
container:
# click requires a unicode locale when used with Python 3
# extended-base generates en_US.UTF-8 locale and sets LC_ALL, LANG properly
extended-base: true