From 3474fbe03875c1496f84571598caa969c77f4a7b Mon Sep 17 00:00:00 2001 From: Etienne Pallier Date: Tue, 12 Apr 2022 17:53:47 +0200 Subject: [PATCH] added commentaires --- Dockerfile | 2 ++ pyros.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b0a4324..8c12d09 100644 --- a/Dockerfile +++ b/Dockerfile @@ -182,6 +182,8 @@ RUN pip install --user pip-tools # Installing packages required for Guitastro RUN pip install --user -r ./vendor/guitastro/install/requirements.txt +# Maybe unnecessary because same requirements as for pyros requirements_dev (?) +#RUN pip install --user -r ./vendor/guitastro/install/requirements_dev.txt # Installing packages required for PyROS RUN pip install --user -r ./install/requirements.txt diff --git a/pyros.py b/pyros.py index 16c2e22..24a5d29 100755 --- a/pyros.py +++ b/pyros.py @@ -587,8 +587,8 @@ def install_or_update(UPDATE: bool = False, with_packages: bool = True, with_dat if UPDATE: print("Running UPDATE command") else: + # Install GitPython package for git support inside python print("Running INSTALL command") - # Git clone Guitastro if not already cloned: try: from git import Repo except: -- libgit2 0.21.2