File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1414 # Declared minimum and one current Python supported by the project.
1515 python-version : ["3.10", "3.13"]
1616 steps :
17- - uses : actions/checkout@v4
18- - uses : actions/setup-python@v5
17+ - uses : actions/checkout@v5
18+ - uses : actions/setup-python@v6
1919 with :
2020 python-version : ${{ matrix.python-version }}
2121 - name : Install package and test extras
2828 runs-on : ubuntu-latest
2929 needs : source-suite
3030 steps :
31- - uses : actions/checkout@v4
32- - uses : actions/setup-python@v5
31+ - uses : actions/checkout@v5
32+ - uses : actions/setup-python@v6
3333 with :
3434 python-version : " 3.13"
3535 - name : Install build frontend
Original file line number Diff line number Diff line change @@ -2886,10 +2886,13 @@ def _reconstruct_subgroup_standard_cell(
28862886
28872887 if vf .get ("status" ) != "passed" :
28882888 result ["status" ] = "rejected"
2889+ verification_reason = vf .get (
2890+ "reason" ,
2891+ "transformed parent rotations do not match standard-setting rotations" ,
2892+ )
28892893 result ["reason" ] = (
28902894 "operation-basis verification failed: "
2891- f"{ vf .get ('reason' , 'transformed parent rotations do not '
2892- 'match standard-setting rotations' )} "
2895+ f"{ verification_reason } "
28932896 )
28942897 return result
28952898
You can’t perform that action at this time.
0 commit comments