Skip to content

Commit 7c8f92c

Browse files
committed
fix(tests): Replace removed egg syntax for installing client in CI
1 parent 9d725c9 commit 7c8f92c

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

tests/Jenkins/utilities.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,8 +297,9 @@ installDIRAC() {
297297

298298
if [[ -n "${INSTALLATION_BRANCH}" ]]; then
299299
# Use this for (e.g.) running backward-compatibility tests
300-
echo "pip-installing DIRAC from git+https://github.com/DIRACGrid/DIRAC.git@${INSTALLATION_BRANCH}#egg=DIRAC[client]"
301-
pip install "git+https://github.com/DIRACGrid/DIRAC.git@${INSTALLATION_BRANCH}#egg=DIRAC[client]"
300+
dirac_spec="DIRAC[client] @ git+https://github.com/DIRACGrid/DIRAC.git@${INSTALLATION_BRANCH}"
301+
echo "pip-installing DIRAC from $dirac_spec"
302+
pip install "$dirac_spec"
302303
else
303304
for module_path in "${ALTERNATIVE_MODULES[@]}"; do
304305
# Special handling for DIRAC with DIRACCommon subdirectory

0 commit comments

Comments
 (0)