From f2f091e0a92ab1d7950a59c45c348135a776543c Mon Sep 17 00:00:00 2001 From: Dominik Rimpf <dominik.rimpf@kit.edu> Date: Mon, 18 Mar 2024 17:16:11 +0000 Subject: [PATCH] fix: urls --- .gitlab-ci.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6c31cbf..48fc688 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,7 +25,7 @@ before_script: - command -v bsdtar || apt-get -y install libarchive-tools - python3 -V # Print out python version for debugging - python3 -m venv || apt-get -y install python3-venv - - if [[ "$CI_COMMIT_BRANCH" != "main" ]]; then sed -i "s%git+https://git.scc.kit.edu/scc-net/net-suite/api-generator.git@master%git+https://git.scc.kit.edu/scc-net/net-suite/api-generator.git@${CI_COMMIT_BRANCH}%g" pyproject.toml; fi + - if [[ "$CI_COMMIT_BRANCH" != "main" ]]; then sed -i "s%git+https://gitlab.kit.edu/scc-net/netvs/api-generator.git@master%git+https://gitlab.kit.edu/scc-net/netvs/api-generator.git@${CI_COMMIT_BRANCH}%g" pyproject.toml; fi - if [[ "$CI_COMMIT_BRANCH" == "devel" ]]; then export NETDB_ENDPOINT=${NETDB_DEVEL_ENDPOINT}; fi diff --git a/pyproject.toml b/pyproject.toml index 9f2f998..8cea156 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,4 +1,4 @@ [build-system] # Minimum requirements for the build system to execute. -requires = ["setuptools", "wheel", "net_api_generator @ git+https://git.scc.kit.edu/scc-net/net-suite/api-generator.git@master", "semver", "requests"] +requires = ["setuptools", "wheel", "net_api_generator @ git+https://gitlab.kit.edu/scc-net/netvs/api-generator.git@master", "semver", "requests"] build-backend = "setuptools.build_meta" -- GitLab