Skip to content

Commit 613900f

Browse files
committed
test(requitement): fix starlette version
1 parent 2d62fca commit 613900f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

server/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
fastapi==0.100.1
2+
starlette==0.27.0
23
uvicorn[standard]==0.23.2
34
python-dotenv==1.0.0
45
openai
@@ -10,7 +11,6 @@ langchain_google_genai
1011
PyGithub==2.3.0
1112
GitPython>=3.1.43
1213
python-multipart
13-
httpx[socks]
1414
supabase
1515
authlib==0.14.3
1616
boto3>=1.34.84
@@ -23,7 +23,7 @@ jose>=1.0.0
2323
itsdangerous==2.2.0
2424
fastapi_auth0==0.5.0
2525
requests
26-
httpx
26+
httpx==0.27.2
2727
urllib3>=2.2.2
2828
toolz
2929
whiskerrag>=0.0.15

server/setup_python.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
python3 -m venv venv
1+
python3.12 -m venv venv
22
source venv/bin/activate
33
python3 -m pip install --upgrade pip
44
pip3 install --no-cache-dir -r requirements.txt

server/tests/test_main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from fastapi.testclient import TestClient
22

3-
from env import ENVIRONMENT, WEB_URL, API_URL
4-
from main import app
3+
from server.env import ENVIRONMENT, WEB_URL, API_URL
4+
from server.main import app
55

66
client = TestClient(app)
77

0 commit comments

Comments
 (0)