From 67e76eac0524db1a39ed4a1e8ce7ee2cf1444f9f Mon Sep 17 00:00:00 2001 From: Deda Date: Tue, 27 Feb 2024 16:43:07 +0100 Subject: [PATCH] Add pip install networkx --- tests/setup.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/setup.sh b/tests/setup.sh index 7cab86db6..013a1eae1 100755 --- a/tests/setup.sh +++ b/tests/setup.sh @@ -34,6 +34,7 @@ PYTHON_MINOR=$(python3 -c 'import sys; print(sys.version_info[:][1])') # install pulsar-client pip --timeout 1000 install "pulsar-client==3.1.0" +pip --timeout 1000 install "networkx" for pkg in "${PIP_DEPS[@]}"; do pip --timeout 1000 install "$pkg" done