diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6c31cbf12ce636ee2442add166c56a0d02848b7c..48fc68809164520a41e587a15f60d127fbad9a99 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 9f2f9988514413913c5492be2f689acad6f0726f..8cea156fbe1cbd6798ea878f84495c4d861670b4 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"