Skip to content

Commit 1005965

Browse files
committed
Merge remote-tracking branch 'origin/develop' into feature/risk_trajectory
2 parents c2a9ccf + ecee22b commit 1005965

File tree

3 files changed

+19
-11
lines changed

3 files changed

+19
-11
lines changed

doc/development/Guide_Euler.ipynb

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -106,15 +106,23 @@
106106
"\n",
107107
"```bash\n",
108108
"pip install \\\n",
109-
" dask[dataframe] \\\n",
110-
" fiona==1.9 \\\n",
111-
" gdal==3.6 \\\n",
112-
" netcdf4==1.6.2 \\\n",
113-
" rasterio==1.4 \\\n",
114-
" pyproj==3.7 \\\n",
115-
" geopandas==1.0 \\\n",
116-
" xarray==2024.9 \\\n",
117-
" sparse==0.15\n",
109+
" --no-binary fiona \\\n",
110+
" --no-binary rasterio \\\n",
111+
" pyproj==3.7.1 \\\n",
112+
" fiona \\\n",
113+
" rasterio\n",
114+
"\n",
115+
"pip install \\\n",
116+
" 'numpy<2' \\\n",
117+
" netcdf4 \\\n",
118+
" gdal==3.6.3 \\\n",
119+
" geopandas \\\n",
120+
" xarray \\\n",
121+
" cartopy \\\n",
122+
" sparse \\\n",
123+
" salib \\\n",
124+
" pyarrow \\\n",
125+
" xlrd\n",
118126
"```"
119127
]
120128
},

requirements/env_climada.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ dependencies:
3535
- rasterio>=1.4
3636
- requests>=2.32
3737
- rtree>=1.4
38-
- salib>=1.5
38+
- salib>=1.5,<1.5.2 # see https://github.com/CLIMADA-project/climada_python/issues/1081
3939
- scikit-learn>=1.7
4040
- scipy>=1.15
4141
- seaborn>=0.13

script/jenkins/test_notebooks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919

2020
# collect test cases, one for each notebook in the docs (unless they're excluded)
21-
NOTEBOOK_DIR = Path(__file__).parent.parent.parent.joinpath("doc", "tutorial")
21+
NOTEBOOK_DIR = Path(__file__).parent.parent.parent.joinpath("doc", "user-guide")
2222
NOTEBOOKS = [
2323
(f.absolute(), f.name)
2424
for f in sorted(NOTEBOOK_DIR.iterdir())

0 commit comments

Comments
 (0)