Skip to content
Snippets Groups Projects

setup-base-dir: also add a symlink to poulpe directly

Merged Pierre-Yves David requested to merge topic/default/more-setup into branch/default
1 file
+ 3
3
Compare changes
  • Side-by-side
  • Inline
+ 3
3
@@ -30,7 +30,7 @@
TOOLING = "tooling"
def install_poulpe():
def install_poulpe(poulpe_dir):
"""setup a venv and install poulpe in it"""
print("Installing poulpe (editable) into a new venv")
install_venv = [sys.executable, "-m", "venv", ".venv"]
@@ -46,7 +46,7 @@
"install",
"--quiet",
"--editable",
str(POULPE_DIR),
str(poulpe_dir),
]
commands = [install_venv, update_pip, install_poulpe]
@@ -132,7 +132,7 @@
old_dir = os.curdir
os.chdir(base_path)
try:
install_poulpe()
install_poulpe(POULPE_DIR)
setup_quick_access(base_path)
print("Create symlinks to Poulpe")
Loading