Skip to content
Snippets Groups Projects
Commit 992de6299cc5 authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

setup-base-dir: quiet pip install with explicit flag

parent 2bb4f38f6522
No related branches found
No related tags found
No related merge requests found
...@@ -25,9 +25,10 @@ ...@@ -25,9 +25,10 @@
update_pip = [ update_pip = [
str(Path(".venv") / "bin" / "pip"), str(Path(".venv") / "bin" / "pip"),
"install", "install",
"-U", "--quiet",
"--upgrade",
"pip", "pip",
] ]
install_poulpe = [ install_poulpe = [
str(Path(".venv") / "bin" / "pip"), str(Path(".venv") / "bin" / "pip"),
"install", "install",
...@@ -29,9 +30,10 @@ ...@@ -29,9 +30,10 @@
"pip", "pip",
] ]
install_poulpe = [ install_poulpe = [
str(Path(".venv") / "bin" / "pip"), str(Path(".venv") / "bin" / "pip"),
"install", "install",
"-e", "--quiet",
"--editable",
str(POULPE_DIR), str(POULPE_DIR),
] ]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment