From cfeca4e21fceb958c533de8d476d71c4a5cfd532 Mon Sep 17 00:00:00 2001 From: Andrew Egelhofer Date: Tue, 18 Aug 2020 07:11:24 +0530 Subject: [PATCH] MINOR: Use new version of ducktape ducktape diff: https://github.com/confluentinc/ducktape/compare/v0.7.8...v0.7.9 - bcrypt (a dependency of ducktape) dropped Python2.7 support. ducktape-0.7.9 now pins bcrypt to a Python2.7-supported version. Author: Andrew Egelhofer Reviewers: Dhruvil Shah , Manikumar Reddy Closes #9192 from andrewegel/trunk --- tests/docker/Dockerfile | 2 +- tests/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/docker/Dockerfile b/tests/docker/Dockerfile index 09442323c66..503c240d1e4 100644 --- a/tests/docker/Dockerfile +++ b/tests/docker/Dockerfile @@ -33,7 +33,7 @@ LABEL ducker.creator=$ducker_creator # Update Linux and install necessary utilities. RUN apt update && apt install -y sudo netcat iptables rsync unzip wget curl jq coreutils openssh-server net-tools vim python-pip python-dev libffi-dev libssl-dev cmake pkg-config libfuse-dev && apt-get -y clean -RUN pip install -U pip==9.0.3 setuptools && pip install --upgrade cffi virtualenv pyasn1 boto3 pycrypto pywinrm ipaddress enum34 && pip install --upgrade ducktape==0.7.8 +RUN pip install -U pip==9.0.3 setuptools && pip install --upgrade cffi virtualenv pyasn1 boto3 pycrypto pywinrm ipaddress enum34 && pip install --upgrade ducktape==0.7.9 # Set up ssh COPY ./ssh-config /root/.ssh/config diff --git a/tests/setup.py b/tests/setup.py index 41bb720e625..e87304568e9 100644 --- a/tests/setup.py +++ b/tests/setup.py @@ -51,7 +51,7 @@ setup(name="kafkatest", license="apache2.0", packages=find_packages(), include_package_data=True, - install_requires=["ducktape==0.7.8", "requests==2.22.0"], + install_requires=["ducktape==0.7.9", "requests==2.22.0"], tests_require=["pytest", "mock"], cmdclass={'test': PyTest}, )