From 92ca58e4471c213b5b2fd30f8004d639a6b21250 Mon Sep 17 00:00:00 2001 From: Li Yu Date: Tue, 14 Nov 2023 21:49:24 -0500 Subject: [PATCH] install openai --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8fb07fe..31143ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,9 @@ jobs: with: python-version: 3.8 - name: Install dependencies - run: pip install -r requirements.txt + run: | + pip install openai==0.28.1 + pip install -r requirements.txt - name: Run tests and collect coverage run: | coverage run -m unittest discover