Skip to content

Commit 7632a17

Browse files
authored
Merge pull request #233 from iiasa/ssp_dev
Extend SSP argument options
2 parents d90c11c + f6de7bb commit 7632a17

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

doc/whatsnew.rst

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Next release
1212
- Fix naming of GDP and population columns in SSP data aggregation.
1313

1414
- Update :doc:`/transport/index` (:pull:`213`).
15+
- Add "LED", "SSP4", and "SSP5" as values for the :program:`--ssp=…` option in :func:`.common_params` (:pull:`233`).
1516

1617
v2024.8.6
1718
=========

message_ix_models/util/click.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,9 @@ def unique_id() -> str:
247247
help="Run only reporting.",
248248
),
249249
"ssp": Argument(
250-
["ssp"], callback=store_context, type=Choice(["SSP1", "SSP2", "SSP3"])
250+
["ssp"],
251+
callback=store_context,
252+
type=Choice(["LED", "SSP1", "SSP2", "SSP3", "SSP4", "SSP5"]),
251253
),
252254
"urls_from_file": Option(
253255
["--urls-from-file", "-f"],

0 commit comments

Comments
 (0)