https://github.com/ESMValGroup/ESMValTool
Raw File
Tip revision: a314752efb8b31e835ddf7244d6e8eec98179e46 authored by Eunice Lo on 05 August 2021, 16:23:33 UTC
cmorizer added
Tip revision: a314752
environment.yml
---
name: esmvaltool
channels:
  - conda-forge

dependencies:
  # Python packages that cannot be installed from PyPI:
  - cartopy>=0.18
  - compilers
  - gdal
  - esmpy
  - esmvalcore>=2.3.0,<2.4
  - iris>=3.0.2,<3.0.4  # iris=3.0.4 dropped support for Python 3.6 but we haven't just yet
  - matplotlib>3.3.1,<3.4  # bug in 3.3.1, issue with nc-time-axis for >=3.4
  - mpich<3.4  # issues with 3.4.1 and 3.4.2 that install external_0 build
  # Non-Python dependencies
  - cdo>=1.9.7
  - eccodes!=2.19.0  # cdo dependency; something messed up with libeccodes.so
  - imagemagick
  - nco
  - ruamel.yaml
  - scikit-learn  # may hit hw-specific issue if from pypi https://github.com/scikit-learn/scikit-learn/issues/14485

  # Multi language support:
  - ncl>=6.5.0  # this should always install 6.6.0 though
  - r-base>=3.5
  # R packages needed for development
  - r-docopt
  - r-lintr
  - r-styler
  - r-yaml
  - r-udunits2  # needed by the docker build
back to top