diff --git a/devtools/conda-recipe/meta.yaml b/devtools/conda-recipe/meta.yaml index 6f9cf53..368cc92 100644 --- a/devtools/conda-recipe/meta.yaml +++ b/devtools/conda-recipe/meta.yaml @@ -1,9 +1,9 @@ package: name: snpahoy - version: '0.3.1' + version: '0.3.2' source: - git_rev: v0.3.1 + git_rev: v0.3.2 git_url: git@github.com:micknudsen/snpahoy.git build: @@ -17,7 +17,7 @@ requirements: - python >=3.6 run: - click - - pysam + - pysam >=0.15 - python >=3.6 about: diff --git a/setup.py b/setup.py index e55bbde..c074196 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='snpahoy', - version='0.3.1', + version='0.3.2', packages=find_packages('src'), package_dir={'': 'src'}, @@ -18,7 +18,7 @@ install_requires=[ 'click', - 'pysam', + 'pysam >=0.15', ], author='Michael Knudsen',