From b9e7baa576ba62ce284ecdcdbe8118dbef081eb5 Mon Sep 17 00:00:00 2001 From: pyth0n1c <87383215+pyth0n1c@users.noreply.github.com> Date: Wed, 28 Jul 2021 11:51:58 -0700 Subject: [PATCH] Cehcking to see if it's only the virtualenv that is causing the pip error. --- .github/workflows/actions-migration.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/actions-migration.yml b/.github/workflows/actions-migration.yml index d4ec3c49b1..213b0c1107 100644 --- a/.github/workflows/actions-migration.yml +++ b/.github/workflows/actions-migration.yml @@ -64,13 +64,13 @@ jobs: #Get the virtualenv set up rm -rf venv python3 -m venv --clear venv - source venv/bin/activate + #source venv/bin/activate #Update pip, otherwise Github Actions complains - python3 -m pip install --upgrade pip + #python3 -m pip install --upgrade pip #Actually install the requirements - python3 -m pip install -q -r requirements.txt --ignore-installed simplejson + #python3 -m pip install -q -r requirements.txt --ignore-installed simplejson # - name: run validate