Skip to content

Commit bbd8f70

Browse files
authored
Increase minimum plugin version for building linux wheels (#1401)
**Context:** The [wheels are failing](https://github.com/PennyLaneAI/catalyst/actions/runs/12563739994/job/35026196938) after we put the Braket tests stuff back Looking at the wheels, it's ending up installing version 1.28 (we set the minimum to 1.27). We need a more recent version because `QubitDevice` isn't accessible at top level and legacy opmath has been removed. **Description of the Change:** Install with `>=0.31.0` instead. We also remove the `boto3` pin, because it was creating version conflicts and seems to no longer be needed.
1 parent a9b450d commit bbd8f70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-wheel-linux-x86_64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ jobs:
471471
- name: Install PennyLane Plugins
472472
run: |
473473
python${{ matrix.python_version }} -m pip install PennyLane-Lightning-Kokkos
474-
python${{ matrix.python_version }} -m pip install 'amazon-braket-pennylane-plugin>1.27.1' "boto3==1.26"
474+
python${{ matrix.python_version }} -m pip install 'amazon-braket-pennylane-plugin>=1.31.0'
475475
476476
- name: Install OQC client
477477
run: |

0 commit comments

Comments
 (0)