MCVE Code Sample
Following the contributing to xarray guidelines I tried to create the xarray-test environment as follows:
# Create and activate the build environment
conda env create -f ci/requirements/py36.yml
Expected Output
Creates conda environment, such that conda activate xarray-tests can be used to activate it.
Problem Description
The creation of the conda environment fails, indicating ResolvePackageNotFound error:
Collecting package metadata: done
Solving environment: failed
ResolvePackageNotFound:
- pynio
- cdms2
After some searching I tried to first create the conda environment and subsequently updating it
conda env update -f ci/requirements/py36.yml
but this resulted in the same error:
Collecting package metadata: done
Solving environment: failed
ResolvePackageNotFound:
- pynio
- cdms2
Output of xr.show_versions()
Doesn't make sense for this issue, does it?