Skip to content

Commit

Permalink
Restore minimum numpy version during builds
Browse files Browse the repository at this point in the history
  • Loading branch information
tskisner committed Feb 15, 2024
1 parent 33b9f2e commit 37f4df3
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
3 changes: 2 additions & 1 deletion pkgs/moby2/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ requirements:
- gsl
- libactpol
- future
- numpy
- numpy >=1.26
- scipy
# Although not a dependency, we put numba here to force
# building with a numba-compatible numpy version
Expand All @@ -42,6 +42,7 @@ requirements:
- llvm-openmp # [osx]
- openblas * openmp_*
- libopenblas * openmp_*
- {{ pin_compatible("numpy") }}
- {{ pin_compatible("fftw") }}
- {{ pin_compatible("liblapack") }}
- {{ pin_compatible("gsl") }}
Expand Down
3 changes: 2 additions & 1 deletion pkgs/pixell/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ requirements:
- liblapack
- python
- cython
- numpy
- numpy >=1.26
- scipy
- astropy
- healpy
Expand All @@ -50,6 +50,7 @@ requirements:
- llvm-openmp # [osx]
- openblas * openmp_*
- libopenblas * openmp_*
- {{ pin_compatible("numpy") }}
- {{ pin_compatible("liblapack") }}
- python
- numpy
Expand Down
3 changes: 2 additions & 1 deletion pkgs/qpoint/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ requirements:
- liblapack
- python
- setuptools
- numpy
- numpy >=1.26
- scipy
# Although not a dependency, we put numba here to force
# building with a numba-compatible numpy version
Expand All @@ -41,6 +41,7 @@ requirements:
- llvm-openmp # [osx]
- openblas * openmp_*
- libopenblas * openmp_*
- {{ pin_compatible("numpy") }}
- {{ pin_compatible("liblapack") }}
- python
- numpy
Expand Down
3 changes: 2 additions & 1 deletion pkgs/so3g/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ requirements:
- libopenblas * openmp_*
- liblapack
- python
- numpy
- numpy >=1.26
- scipy
- boost
- libboost-devel
Expand All @@ -49,6 +49,7 @@ requirements:
- llvm-openmp # [osx]
- openblas * openmp_*
- libopenblas * openmp_*
- {{ pin_compatible("numpy") }}
- {{ pin_compatible("liblapack") }}
- {{ pin_compatible("libboost-python") }}
- {{ pin_compatible("libboost") }}
Expand Down
3 changes: 2 additions & 1 deletion pkgs/toast/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ requirements:
- libopenblas * openmp_*
- liblapack
- python
- numpy
- numpy >=1.26
- fftw
- suitesparse
- libaatm
Expand All @@ -44,6 +44,7 @@ requirements:
- llvm-openmp # [osx]
- openblas * openmp_*
- libopenblas * openmp_*
- {{ pin_compatible("numpy") }}
- {{ pin_compatible("fftw") }}
- {{ pin_compatible("liblapack") }}
- {{ pin_compatible("suitesparse") }}
Expand Down

0 comments on commit 37f4df3

Please sign in to comment.