From a76eedec1ef367af9cbe29067eac5ad1a894a50b Mon Sep 17 00:00:00 2001 From: Vatsal Ghelani Date: Thu, 3 Oct 2024 12:35:14 -0400 Subject: [PATCH] Added support for v1_4 --- scripts/spec_xml/paths.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/spec_xml/paths.py b/scripts/spec_xml/paths.py index 9c35313096bfcf..a6cda44cca0bd1 100644 --- a/scripts/spec_xml/paths.py +++ b/scripts/spec_xml/paths.py @@ -23,6 +23,7 @@ class Branch(Enum): MASTER = "master" V1_3 = "v1_3" + V1_4 = "v1_4" def get_chip_root(): @@ -104,4 +105,4 @@ def get_available_branches(): Return a list of available branches for the data model. This can be expanded or dynamically fetched if necessary. """ - return [Branch.MASTER, Branch.V1_3] + return [Branch.MASTER, Branch.V1_3, Branch.V1_4]