From 82a58538dbf1742b46d7e0bfaebea13c079cb171 Mon Sep 17 00:00:00 2001 From: Jon Perry Date: Thu, 25 Jul 2024 16:40:32 -0400 Subject: [PATCH] fix: add 'requests' to pyproject dependencies --- .github/workflows/e2e-llama-cpp-python.yaml | 1 - pyproject.toml | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e-llama-cpp-python.yaml b/.github/workflows/e2e-llama-cpp-python.yaml index 7d2a582cac..7393ac4a9d 100644 --- a/.github/workflows/e2e-llama-cpp-python.yaml +++ b/.github/workflows/e2e-llama-cpp-python.yaml @@ -114,5 +114,4 @@ jobs: - name: Test llama-cpp-python run: | - python -m pip install requests python -m pytest ./tests/e2e/test_llama.py -v diff --git a/pyproject.toml b/pyproject.toml index f86babfda3..7631308c8e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,8 @@ dependencies = [ # Dev dependencies needed for all of lfai "httpx", "ruff", "python-dotenv", - "pytest-asyncio" + "pytest-asyncio", + "requests" ] requires-python = "~=3.11"