Skip to content

Commit

Permalink
Merge pull request #233 from iiasa/ssp_dev
Browse files Browse the repository at this point in the history
Extend SSP argument options
  • Loading branch information
khaeru committed Sep 26, 2024
2 parents d90c11c + f6de7bb commit 7632a17
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions doc/whatsnew.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Next release
- Fix naming of GDP and population columns in SSP data aggregation.

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

v2024.8.6
=========
Expand Down
4 changes: 3 additions & 1 deletion message_ix_models/util/click.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,9 @@ def unique_id() -> str:
help="Run only reporting.",
),
"ssp": Argument(
["ssp"], callback=store_context, type=Choice(["SSP1", "SSP2", "SSP3"])
["ssp"],
callback=store_context,
type=Choice(["LED", "SSP1", "SSP2", "SSP3", "SSP4", "SSP5"]),
),
"urls_from_file": Option(
["--urls-from-file", "-f"],
Expand Down

0 comments on commit 7632a17

Please sign in to comment.