You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ma...@apache.org on 2020/08/18 01:45:27 UTC

[kafka] branch 2.4 updated: MINOR: Use new version of ducktape

This is an automated email from the ASF dual-hosted git repository.

manikumar pushed a commit to branch 2.4
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/2.4 by this push:
     new 8372ed4  MINOR: Use new version of ducktape
8372ed4 is described below

commit 8372ed4d3565b2eb8c763b7eca7d58048648c3e8
Author: Andrew Egelhofer <ae...@confluent.io>
AuthorDate: Tue Aug 18 07:11:24 2020 +0530

    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 <ae...@confluent.io>
    
    Reviewers: Dhruvil Shah <dh...@confluent.io>, Manikumar Reddy <ma...@gmail.com>
    
    Closes #9192 from andrewegel/trunk
    
    (cherry picked from commit f6c26eaa04d8eb44c8decf91bb80b621e4086e84)
    Signed-off-by: Manikumar Reddy <ma...@gmail.com>
---
 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 b036d58..bfd04fd 100644
--- a/tests/docker/Dockerfile
+++ b/tests/docker/Dockerfile
@@ -34,7 +34,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 iperf traceroute && apt-get -y clean
 RUN python -m pip install -U pip==9.0.3;
-RUN pip install --upgrade cffi virtualenv pyasn1 boto3 pycrypto pywinrm ipaddress enum34 && pip install --upgrade ducktape==0.7.8
+RUN 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 ec20dd3..b9398dd 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},
       )