From 74bd31529487982ef517b144943fe4b08a450afa Mon Sep 17 00:00:00 2001 From: Astral Cai Date: Tue, 14 May 2024 15:19:22 -0400 Subject: [PATCH] Install latest PennyLane in CI (#189) * Install latest PennyLane in CI * trigger CI --- .github/workflows/tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e84c149..083e1bc 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.9, '3.10', '3.11'] + python-version: ['3.9', '3.10', '3.11'] steps: - name: Cancel Previous Runs @@ -32,6 +32,7 @@ jobs: python -m pip install --upgrade pip pip install -r requirements-ci.txt pip install qsimcirq + pip install --upgrade git+https://github.com/PennyLaneAI/pennylane.git#egg=pennylane pip install wheel pytest pytest-cov pytest-mock --upgrade - name: Install Plugin @@ -71,6 +72,7 @@ jobs: python -m pip install --upgrade pip pip install -r requirements-ci.txt pip install qsimcirq + pip install --upgrade git+https://github.com/PennyLaneAI/pennylane.git#egg=pennylane pip install wheel pytest pytest-cov pytest-mock pytest-benchmark flaky --upgrade - name: Install Plugin