Skip to content

Commit 9c054c1

Browse files
authored
Merge pull request #2 from irm-codebase/local-testing
Small fixes
2 parents d7ef359 + d29018f commit 9c054c1

File tree

8 files changed

+10
-14
lines changed

8 files changed

+10
-14
lines changed

README.rst renamed to README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ post-process the results.
88
First, create a new conda environment with the required dependencies:
99

1010
```bash
11-
conda create -f environment.yaml
11+
conda env create -f environment.yaml
1212
conda activate module_integration
1313
```
1414

config/modules/module_geo_boundaries_NUTS0.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
module_geo_boundaries_NUTS0:
2-
buffer: 1
32
crs:
43
projected: "epsg:3857"
54
geographic: "epsg:4326"

config/modules/module_geo_boundaries_NUTS2.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
module_geo_boundaries_NUTS2:
2-
buffer: 1
32
crs:
43
projected: "epsg:3857"
54
geographic: "epsg:4326"

config/modules/module_geo_boundaries_NUTS3.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
module_geo_boundaries_NUTS3:
2-
buffer: 1
32
crs:
43
projected: "epsg:3857"
54
geographic: "epsg:4326"

config/modules/module_powerplants.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ module_powerplants:
100100
pumped_storage: 80
101101
gas_pp: 20
102102
reservoir: 80
103-
pv_rooftop: 5
103+
pv_rooftop: 25
104104
run_of_river: 80
105105
pv_open_field: 25
106106
retirement_delay_yr:

environment.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
name: module_integration
22
channels:
3+
- conda-forge/label/calliope_dev
34
- conda-forge
45
- bioconda
56
dependencies:
67
- python=3.12
78
- flake8=3.8.3
89
- snakemake-minimal=8.18
910
# - graphviz=2.50.0
10-
- calliope=0.7.0.dev5
11+
- calliope=0.7.0dev5
1112
- pandas
1213
- numpy<2.0.0
1314
- xlrd

rules/0_module_geo_boundaries.smk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ module module_geo_boundaries:
4242
github(
4343
"calliope-project/module_geo_boundaries",
4444
path="workflow/Snakefile",
45-
tag="main",
45+
tag="v0.1.5",
4646
)
4747
config:
4848
config["module_geo_boundaries_NUTS3"]

rules/0_module_pv_wind.smk

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,11 @@ configfile: "config/modules/module_pv_wind.yaml"
22

33
module module_pv_wind:
44
snakefile:
5-
"../../module_pv_wind/workflow/Snakefile"
6-
7-
# github(
8-
# "calliope-project/module_pv_wind",
9-
# path="workflow/Snakefile",
10-
# tag="cd3c2b4",
11-
# )
5+
github(
6+
"calliope-project/module_pv_wind",
7+
path="workflow/Snakefile",
8+
branch="feature-module-setup",
9+
)
1210
config: config["module_pv_wind"]
1311
prefix: "results/module_pv_wind"
1412

0 commit comments

Comments
 (0)