Skip to content

Commit

Permalink
Added support for v1_4
Browse files Browse the repository at this point in the history
  • Loading branch information
vatsalghelani-csa committed Oct 3, 2024
1 parent a64acf8 commit a76eede
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/spec_xml/paths.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
class Branch(Enum):
MASTER = "master"
V1_3 = "v1_3"
V1_4 = "v1_4"


def get_chip_root():
Expand Down Expand Up @@ -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]

0 comments on commit a76eede

Please sign in to comment.