From 7ba8e3de90f050eccd0be94ed859cc06e6f015ec Mon Sep 17 00:00:00 2001 From: Dorian Turba <froggit.commit.z3jqj@simplelogin.com> Date: Sat, 9 Sep 2023 15:33:31 +0200 Subject: [PATCH] add project_path to requirement path --- .../python/dependency_management/depandabot/depandabot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/python/dependency_management/depandabot/depandabot.yml b/templates/python/dependency_management/depandabot/depandabot.yml index 0e8361b..b4c6f91 100644 --- a/templates/python/dependency_management/depandabot/depandabot.yml +++ b/templates/python/dependency_management/depandabot/depandabot.yml @@ -10,8 +10,8 @@ depandabot: variables: PYTHON_SETUP: pip install pip-tools GITLAB_API_URL: "${CI_SERVER_HOST}" - REQUIREMENTS_FILE_PATH: "requirements.in" - OUTPUT_FILE_PATH: "requirements${IMAGE_TAG}.txt" + REQUIREMENTS_FILE_PATH: "${PROJECT_PATH}/requirements.in" + OUTPUT_FILE_PATH: "${PROJECT_PATH}/requirements${IMAGE_TAG}.txt" script: - !reference [.python_install, script] -- GitLab