From 797a86262e1bb337f498fbedc29706e45465e39d Mon Sep 17 00:00:00 2001 From: Feanil Patel Date: Mon, 22 Jul 2024 14:09:59 -0400 Subject: [PATCH] build: Correct how the dependencies get installed. Without this change we were getting a weird error that the 'install' package could not be found because github action was combining the two lines into a single `pip install setuptools pip install -r requirements/ci.txt` call. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6b547442..431a1b06 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: run: pip install -r requirements/pip.txt - name: Install Dependencies - run: + run: | pip install setuptools pip install -r requirements/ci.txt