Skip to content

Commit 4bebdd3

Browse files
fix environment installation script; prevent silent python upgrade
1 parent 5ff7ca3 commit 4bebdd3

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

requirements/env_climada.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ dependencies:
3131
- pycountry>=24.6
3232
- pyproj>=3.7
3333
- pytables>=3.10 # this is the name of the pypi 'tables' package on conda-forge
34-
- python>=3.10,<3.13
3534
- pyxlsb>=1.0
3635
- rasterio>=1.4
3736
- requests>=2.32

script/jenkins/install_env.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash -e
22

3-
mamba remove --name climada_env --all
4-
mamba create -n climada_env python=3.11
3+
mamba env remove -n climada_env -y
4+
mamba create -n climada_env python=3.11 -y
55
mamba env update -n climada_env -f requirements/env_climada.yml
66

77
source activate climada_env

0 commit comments

Comments
 (0)