diff --git a/docker/Dockerfile b/docker/Dockerfile index b7da9aa..fd976a8 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -43,10 +43,8 @@ COPY environment.yml /environment.yml # Conda was stuck at this step: # DEBUG conda.common._logic:_run_sat(607): Invoking SAT with clause count: 2500273 # -# Python 3.10 cause this "ValueError: `popmean.shape[axis]` must equal 1." in -# homepage nb 4, see https://github.com/Ouranosinc/PAVICS-landing/issues/65 RUN umask 0000 && \ - mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.9 --yes && \ + mamba create --name birdy --channel conda-forge --channel defaults xclim ravenpy python=3.10 --yes && \ mamba env update --name birdy --file /environment.yml && \ mamba clean --all --yes diff --git a/docker/environment.yml b/docker/environment.yml index 2b375c9..2721ae7 100644 --- a/docker/environment.yml +++ b/docker/environment.yml @@ -19,7 +19,7 @@ dependencies: # Pin latest xclim and ravenpy to avoid downgrading during the second installation phase. # Mamba is quicker to solve dependencies than conda, but it is less precise so accidental downgrades can happen. - - xclim >= 0.43.0 + - xclim >= 0.44.0 - ravenpy >= 0.12.1 #- dask # from xclim and ravenpy