From 127501b166dac8d56a03c86e0b4bca18537e46eb Mon Sep 17 00:00:00 2001 From: Maarten Sebregts Date: Thu, 16 Jan 2025 09:13:06 +0100 Subject: [PATCH] Update data dictionary repo URL from ITER internal git to github --- imaspy/dd_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imaspy/dd_helpers.py b/imaspy/dd_helpers.py index 21a7775f..e625a57a 100644 --- a/imaspy/dd_helpers.py +++ b/imaspy/dd_helpers.py @@ -199,7 +199,7 @@ def get_data_dictionary_repo() -> Tuple[bool, bool]: try: origin = repo.remote() except ValueError: - dd_repo_url = "ssh://git@git.iter.org/imas/data-dictionary.git" + dd_repo_url = "https://github.com/iterorganization/imas-data-dictionary.git" origin = repo.create_remote("origin", url=dd_repo_url) logger.info("Set up remote '{!s}' linking to '{!s}'".format(origin, origin.url))