diff --git a/extra-addons b/extra-addons index ab7cd9801..a820140e0 160000 --- a/extra-addons +++ b/extra-addons @@ -1 +1 @@ -Subproject commit ab7cd980143f70597cfd19173abd95adc8fce71c +Subproject commit a820140e0905c091fd724169a68272d9559a5a37 diff --git a/setup/merge_module.py b/setup/merge_module.py index 6700bfe94..1e7f2edb2 100755 --- a/setup/merge_module.py +++ b/setup/merge_module.py @@ -22,16 +22,6 @@ root_repo = args.root_repo # Change to the repository directory os.chdir(root_repo) - -# Check if yq is installed -try: - subprocess.run( - ["yq", "--version"], check=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE - ) -except FileNotFoundError: - print("yq could not be found. Please install it first.") - exit(1) - # Read YAML file with open(yaml_file, "r") as file: data = yaml.safe_load(file)