You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by kk...@apache.org on 2020/06/18 05:11:17 UTC

[kafka] branch 2.1 updated: MINOR: Upgrade ducktape to 0.7.8 (#8879)

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

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


The following commit(s) were added to refs/heads/2.1 by this push:
     new 4f1d4ff  MINOR: Upgrade ducktape to 0.7.8 (#8879)
4f1d4ff is described below

commit 4f1d4ffe9c97e03051bd77fb09bd957a1d496bc1
Author: Ego <ae...@confluent.io>
AuthorDate: Wed Jun 17 21:53:22 2020 -0700

    MINOR: Upgrade ducktape to 0.7.8 (#8879)
    
    Newer version of ducktape that updates some dependencies and adds some features. You can see that diff here:
    
    https://github.com/confluentinc/ducktape/compare/v0.7.7...v0.7.8
    
    Reviewer: Konstantine Karantasis <ko...@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 1fa8dd6..98206ac 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  && 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.7
+RUN pip install --upgrade cffi virtualenv pyasn1 boto3 pycrypto pywinrm ipaddress enum34 && pip install --upgrade ducktape==0.7.8
 
 # Set up ssh
 COPY ./ssh-config /root/.ssh/config
diff --git a/tests/setup.py b/tests/setup.py
index fb63934..ec20dd3 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.7", "requests==2.20.0"],
+      install_requires=["ducktape==0.7.8", "requests==2.22.0"],
       tests_require=["pytest", "mock"],
       cmdclass={'test': PyTest},
       )