Skip to content
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
5 changes: 3 additions & 2 deletions README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
2 changes: 1 addition & 1 deletion recipe/build.sh → recipe/build_base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

rm -rf lib/iris/tests/results lib/iris/tests/*.npz

$PYTHON -m pip install --no-deps --ignore-installed .
${PYTHON} -m pip install --no-deps --ignore-installed .
51 changes: 32 additions & 19 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,29 +9,42 @@ source:
sha256: 7c825ccc3bd823c6c66f8dc2bc98e56f84e41a0bd4cd2e9ac1b51930ad59c6a3

build:
number: 0
number: 1
skip: true # [py<37]

requirements:
host:
- python
- pip
run:
- python
- cartopy >=0.18
- cf-units
- cftime >=1.5.0
- dask >=2
- matplotlib-base
- netcdf4 >=1.4
- numpy >=1.14,!=1.15.2
- scipy
- python-xxhash
outputs:
- name: iris
script: build_base.sh # [not win]
script: build_base.bat # [win]
requirements:
host:
- python
- pip
run:
- python
- cartopy >=0.18
- cf-units
- cftime >=1.5.0
- dask >=2
- matplotlib-base
- netcdf4 >=1.4
- numpy >=1.14,!=1.15.2
- scipy
- python-xxhash

test:
imports:
- iris
test:
imports:
- iris

- name: scitools-iris
build:
noarch: generic
requirements:
run:
- {{ pin_subpackage('iris', max_pin="x.x.x") }}
test:
imports:
- iris
about:
home: https://scitools-iris.readthedocs.io/en/stable/
license: LGPL-3.0-or-later
Expand Down