From c5944bda489a3bd7b815a300eedd1c99d4f6adeb Mon Sep 17 00:00:00 2001 From: zyd14 Date: Mon, 4 Nov 2024 14:37:44 -0700 Subject: [PATCH] Fixing install_dev_python_modules Make command (#25710) ## Summary & Motivation Addressing #25709 ## How I Tested These Changes Created a new virtual environment, then ran `make install_dev_python_modules`, confirming the modules were installed correctly. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 31adeb0c25445..1be48b8703620 100644 --- a/Makefile +++ b/Makefile @@ -51,13 +51,13 @@ prettier: ':!:README.md'` --write install_dev_python_modules: - python scripts/install_dev_python_modules.py -qqq + python scripts/install_dev_python_modules.py -q install_dev_python_modules_verbose: python scripts/install_dev_python_modules.py install_dev_python_modules_verbose_m1: - python scripts/install_dev_python_modules.py -qqq --include-prebuilt-grpcio-wheel + python scripts/install_dev_python_modules.py -q --include-prebuilt-grpcio-wheel graphql: cd js_modules/dagster-ui/; make generate-graphql; make generate-perms