From 6bcfe964ab818224eb94f4ed91b09c561af18099 Mon Sep 17 00:00:00 2001 From: Victoria Cherkas Date: Tue, 12 Sep 2023 13:45:24 +0200 Subject: [PATCH] test fixed spec --- env/environment_fixed.yml | 24 ++++++++++++++++++++++++ testsuite/setup.sh | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 env/environment_fixed.yml diff --git a/env/environment_fixed.yml b/env/environment_fixed.yml new file mode 100644 index 0000000..0d91fb2 --- /dev/null +++ b/env/environment_fixed.yml @@ -0,0 +1,24 @@ +channels: + - conda-forge + - nodefaults +dependencies: + - python=3.9.16 + - git=2.34.1 + - pip + - cfgrib=0.9.10.4 + - eccodes=2.25.0 + - numpy=1.25.2 + - xarray=2023.8.0 + - pytest=7.4.2 + - psy-reg=1.4.0 + - psy-maps=1.4.2 + - cartopy=0.22.0 + - matplotlib=3.7.2 + - ipympl=0.9.3 + - cmcrameri=1.7 + - jupyter=1.0.0 + - pyinterp=2023.5.0 + - pip: + - git+https://github.com/psyplot/psy-transect#egg=psy-transect + - iconarray==0.3.2 + - pre-commit=3.4.0 diff --git a/testsuite/setup.sh b/testsuite/setup.sh index a79cb1d..242e7df 100755 --- a/testsuite/setup.sh +++ b/testsuite/setup.sh @@ -10,7 +10,7 @@ export CONDA_VERBOSITY=3 conda config --set always_yes yes --set changeps1 no conda config --add channels conda-forge -conda env create --name ${CONDA_ENV_NAME}_${NODE_NAME} --file env/environment.yml +conda env create --name ${CONDA_ENV_NAME}_${NODE_NAME} --file env/environment_fixed.yml conda activate ${CONDA_ENV_NAME}_${NODE_NAME} source env/setup-conda-env.sh