From b8f282468d836ec609af0fdc12eb8c85b14e5846 Mon Sep 17 00:00:00 2001 From: Aidar Samerkhanov Date: Tue, 9 May 2023 14:23:28 +0400 Subject: [PATCH] Update pulsar client for e2e tests --- tests/setup.sh | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/tests/setup.sh b/tests/setup.sh index 463ea557b..40425ce89 100755 --- a/tests/setup.sh +++ b/tests/setup.sh @@ -34,14 +34,7 @@ set -u PYTHON_MINOR=$(python3 -c 'import sys; print(sys.version_info[:][1])') # install pulsar-client -# NOTE (2021-11-15): PyPi doesn't contain pulsar-client for Python 3.9 so we have to use -# our manually built wheel file. When they update the repository, pulsar-client can be -# added as a regular PIP dependancy -if [ $PYTHON_MINOR -lt 9 ]; then - pip --timeout 1000 install "pulsar-client==2.8.1" -else - pip --timeout 1000 install https://s3-eu-west-1.amazonaws.com/deps.memgraph.io/pulsar_client-2.8.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl -fi +pip --timeout 1000 install "pulsar-client==3.1.0" for pkg in "${PIP_DEPS[@]}"; do pip --timeout 1000 install "$pkg"