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

Update plastid meta.yaml to restrict numpy version under 1.24 #38652

Merged
merged 11 commits into from
Jan 6, 2023
11 changes: 7 additions & 4 deletions recipes/plastid/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ source:
build:
# We're not rebuilding old biopython versions on conda-forge for this
skip: true # [py > 39]
number: 0
number: 1

extra:
skip-lints:
Expand All @@ -25,7 +25,7 @@ requirements:
- python
- cython >=0.22.0
- setuptools
- numpy >=1.9.4
- numpy >=1.9.4,<=1.23.5 # numpy 1.24 removes np.TYPE (reported https://github.com/joshuagryphon/plastid/issues/55)
- pysam >=0.8.4
- termcolor
- scipy >=0.15.1
Expand All @@ -34,9 +34,12 @@ requirements:
- biopython >=1.64,<1.78 # 1.78 removed Bio.Alphabet (reported https://github.com/joshuagryphon/plastid/issues/45)
- twobitreader >=3.0.0
- zlib
- openssl
- htslib

run:
- python
- {{ pin_compatible('numpy') }}
- numpy <=1.23.5
- {{ pin_compatible('pysam', max_pin='x.x.x') }}
- setuptools
- cython >=0.22.0
Expand All @@ -49,7 +52,7 @@ requirements:
- zlib
- bowtie
- fastx_toolkit

- htslib
test:
imports:
- plastid
Expand Down