From 136b229f5946bb708cd4faec4766c7580d1888ec Mon Sep 17 00:00:00 2001 From: Astral Cai Date: Mon, 13 May 2024 09:15:34 -0400 Subject: [PATCH] Install latest PennyLane in 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 400fadb..5b9fc4d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: - python-version: [3.9, '3.10', '3.11'] + python-version: ['3.9', '3.10', '3.11'] steps: @@ -31,6 +31,7 @@ jobs: run: | python -m pip install --upgrade pip pip install -r requirements.txt + pip install --upgrade git+https://github.com/PennyLaneAI/pennylane.git#egg=pennylane pip install wheel pytest pytest-cov pytest-mock --upgrade - name: Install Plugin @@ -67,6 +68,7 @@ jobs: python -m pip install --upgrade pip pip install -r requirements.txt pip install pytest-benchmark + pip install --upgrade git+https://github.com/PennyLaneAI/pennylane.git#egg=pennylane pip install wheel pytest pytest-cov pytest-mock flaky --upgrade - name: Install Plugin