valeriupredoi / bgcval2

Package for BGCVal v2.0
3 stars 0 forks source link

Cleanup environment and pin numpy so that it installs from conda-forge #109

Closed valeriupredoi closed 11 months ago

valeriupredoi commented 11 months ago

The mamba env contains numpy=1.25.2 that is rejected by basemap=1.3.7 via pip install so pip installs numpy=1.24.4 from PyPI which we don't want, we want the same version of numpy but from conda-forge. It is unclear if basemap has a soft dependency in its dep table, mamba should not install 1.25.2 if another package rejects it.

Closes #108