From caa80e891dfdf27e80564a29630d510b7053395b Mon Sep 17 00:00:00 2001 From: Wing Lian Date: Wed, 23 Aug 2023 21:41:42 -0400 Subject: [PATCH] don't need explicit peft install for tests --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 01703cd51..d5184def6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -24,7 +24,7 @@ jobs: - name: Install dependencies run: | - pip install -e .[peft] + pip install -e . pip install -r requirements-tests.txt - name: Run tests