forked from 3rdparty/wrf-python
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
731 B
39 lines
731 B
|
|
# For the version to work, the patch in ncl_reference needs to be applied |
|
# to the installed conda-build. Otherwise, it needs to be set manually until |
|
# continuum can release a fix. |
|
package: |
|
name: wrf-python |
|
version: {{ load_setup_py_data().version }} |
|
|
|
source: |
|
git_url: git@github.com:NCAR/wrf-python.git |
|
|
|
build: |
|
number: 1 |
|
detect_binary_files_with_prefix: true |
|
|
|
requirements: |
|
build: |
|
- numpy x.x |
|
- wrapt |
|
- gcc |
|
- python |
|
- libgcc 4.8.5 |
|
|
|
run: |
|
- numpy x.x |
|
- python |
|
- wrapt |
|
- libgcc 4.8.5 |
|
- xarray |
|
|
|
test: |
|
requires: |
|
- nose |
|
imports: |
|
- wrf |
|
#commands: |
|
#- cd $SRC_DIR/src/examples && for file in xy2.py; do echo $file ; nosetests $file ; done | tee pyngl-test.log |
|
|
|
|
|
|