From 9b2bb806ad680bbba0f24451579e78523670e1c5 Mon Sep 17 00:00:00 2001 From: Vincent Michaud-Rioux Date: Mon, 11 Sep 2023 13:49:51 -0700 Subject: [PATCH] Fix pip uninstall --- .github/workflows/tests_linux.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests_linux.yml b/.github/workflows/tests_linux.yml index 91930aa7de..cb5a0e7595 100644 --- a/.github/workflows/tests_linux.yml +++ b/.github/workflows/tests_linux.yml @@ -114,7 +114,7 @@ jobs: run: | cd main git checkout $(git tag | sort -V | tail -1) - git log | head + git log | head -1 - uses: actions/setup-python@v4 name: Install Python @@ -133,7 +133,7 @@ jobs: if: inputs.pennylane-version == 'stable' run: | cd main - python pip uninstall pennylane && python -m pip install --no-cache-dir -U pennylane + python -m pip uninstall pennylane && python -m pip install -U pennylane - name: Install ML libraries for interfaces run: |