From 0869090d00ffa3fd29750b2d46d12384818ca865 Mon Sep 17 00:00:00 2001 From: Samiran Saha Date: Tue, 25 Nov 2025 12:13:33 +0530 Subject: [PATCH 1/2] grpcio only binary --- mac/env-setup-run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mac/env-setup-run.sh b/mac/env-setup-run.sh index f63679b..add07d4 100644 --- a/mac/env-setup-run.sh +++ b/mac/env-setup-run.sh @@ -202,7 +202,7 @@ setup_web_python() { detect_setup_python_env - pip3 install -r requirements.txt >> "$NOW_RUN_LOG_FILE" 2>&1 + pip3 install --only-binary grpcio -r requirements.txt >> "$NOW_RUN_LOG_FILE" 2>&1 pip3 uninstall -y pytest-html pytest-rerunfailures >> "$NOW_RUN_LOG_FILE" 2>&1 log_success "Dependencies installed" @@ -263,7 +263,7 @@ setup_app_python() { detect_setup_python_env # Install dependencies - pip3 install -r requirements.txt >> "$NOW_RUN_LOG_FILE" 2>&1 + pip install --only-binary grpcio -r requirements.txt >> "$NOW_RUN_LOG_FILE" 2>&1 log_success "Dependencies installed" local app_url=$BROWSERSTACK_APP From b6b4c432d6cf649c54d36d462a7af3f594ad95c5 Mon Sep 17 00:00:00 2001 From: Samiran Saha Date: Tue, 25 Nov 2025 12:30:55 +0530 Subject: [PATCH 2/2] remove detect latest python --- mac/env-setup-run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mac/env-setup-run.sh b/mac/env-setup-run.sh index add07d4..5cb1327 100644 --- a/mac/env-setup-run.sh +++ b/mac/env-setup-run.sh @@ -200,7 +200,7 @@ setup_web_python() { clone_repository "$REPO" "$TARGET_DIR" "" - detect_setup_python_env + # detect_setup_python_env pip3 install --only-binary grpcio -r requirements.txt >> "$NOW_RUN_LOG_FILE" 2>&1 pip3 uninstall -y pytest-html pytest-rerunfailures >> "$NOW_RUN_LOG_FILE" 2>&1 @@ -260,7 +260,7 @@ setup_app_python() { clone_repository "$REPO" "$TARGET_DIR" - detect_setup_python_env + # detect_setup_python_env # Install dependencies pip install --only-binary grpcio -r requirements.txt >> "$NOW_RUN_LOG_FILE" 2>&1