From 53607a05b7a23e64dd5058838c6e0d13cee824b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Schr=C3=B6der?= <fschroeder@techfak.uni-bielefeld.de> Date: Mon, 24 Mar 2025 11:12:04 +0100 Subject: [PATCH] Update pip install commands in GitLab CI configuration Revised the pip install commands to improve dependency management. Consolidated 'pymumble' installation into a grouped extras requirement '[mumble]'. This ensures better clarity and usage of optional dependencies. --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 22e1580..3d8ed0c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -16,8 +16,8 @@ pages: script: - apt-get update -qy - apt-get install -y python3-dev python3-pip graphviz graphviz-dev portaudio19-dev - - pip install pdoc pymumble - - pip install . + - pip install pdoc + - pip install '.[mumble]' - pdoc --output-dir public cooperative_cuisine !cooperative_cuisine.reinforcement_learning !cooperative_cuisine.pygame_2d_vis.performance_benchmark --logo https://gitlab.ub.uni-bielefeld.de/uploads/-/system/project/avatar/6780/Cooking-Vector-Illustration-Icon-Graphics-4267218-1-580x435.jpg --docformat google --favicon cooperative-cuisine/cooperative_cuisine/pygame_2d_vis/images/favicon.ico --footer-text "Developed@SCS" artifacts: paths: -- GitLab