Skip to content

Commit 02c76a9

Browse files
authored
ci: Stop using uv to catch dependency timeouts in nightly workflow (langflow-ai#5654)
fix: stop using uv to catch dependency timeouts
1 parent 88fa784 commit 02c76a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release_nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ jobs:
102102
# TODO: Unsure why the whl is not built in src/backend/base/dist
103103
mkdir src/backend/base/dist
104104
mv dist/*.whl src/backend/base/dist/
105-
uv pip install src/backend/base/dist/*.whl
106-
uv run python -m langflow run --host 127.0.0.1 --port 7860 --backend-only &
105+
python -m pip install src/backend/base/dist/*.whl
106+
python -m langflow run --host 127.0.0.1 --port 7860 --backend-only &
107107
SERVER_PID=$!
108108
# Wait for the server to start
109109
timeout 120 bash -c 'until curl -f http://127.0.0.1:7860/api/v1/auto_login; do sleep 2; done' || (echo "Server did not start in time" && kill $SERVER_PID && exit 1)

0 commit comments

Comments
 (0)