You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by mj...@apache.org on 2020/04/14 23:59:12 UTC

[kafka] branch 1.1 updated: MINOR: Upgrade ducktape to 0.7.7 (#8487)

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

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


The following commit(s) were added to refs/heads/1.1 by this push:
     new f1a5730  MINOR: Upgrade ducktape to 0.7.7 (#8487)
f1a5730 is described below

commit f1a5730500b99938497923995619ccd5730e1c5b
Author: Ewen Cheslack-Postava <me...@ewencp.org>
AuthorDate: Tue Apr 14 16:36:52 2020 -0700

    MINOR: Upgrade ducktape to 0.7.7 (#8487)
    
    This fixes a version pinning issue where a transitive dependency had a
    major version upgrade that a dependency did not account for, breaking
    the build.
    
    Reviewers: Andrew Egelhofer <ae...@confluent.io>, Matthias J. Sax <ma...@confluent.io>
---
 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 b923a42..3d3ae6c 100644
--- a/tests/docker/Dockerfile
+++ b/tests/docker/Dockerfile
@@ -32,7 +32,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.5
+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.7
 
 # Set up ssh
 COPY ./ssh-config /root/.ssh/config
diff --git a/tests/setup.py b/tests/setup.py
index 14a3695..5e23a66 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.5", "requests==2.20.0"],
+      install_requires=["ducktape==0.7.7", "requests==2.20.0"],
       tests_require=["pytest", "mock"],
       cmdclass={'test': PyTest},
       )