Skip to content

Commit 2519534

Browse files
committed
fix: restore Python 3.10 release gate
1 parent 7c0c90e commit 2519534

2 files changed

Lines changed: 9 additions & 6 deletions

File tree

.github/workflows/release-gate.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
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
@@ -28,8 +28,8 @@ jobs:
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

valleyscope/analysis/standard_setting_kmap.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)