You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by da...@apache.org on 2022/02/03 11:53:18 UTC

[kafka] branch 2.6 updated: MINOR: Use ducktape version 0.7.17 (#11730)

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

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


The following commit(s) were added to refs/heads/2.6 by this push:
     new e6542d1  MINOR: Use ducktape version 0.7.17 (#11730)
e6542d1 is described below

commit e6542d179883fb794aa6b235474108d99c48267d
Author: Stanislav Vodetskyi <49...@users.noreply.github.com>
AuthorDate: Thu Feb 3 03:51:14 2022 -0800

    MINOR: Use ducktape version 0.7.17 (#11730)
    
    Ducktape 0.7.17 locked a couple of dependencies to their last py2 compatible versions - this ensures more or less stable python 2 builds for kafkatest (until some other package breaks it). Since 2.7 and above uses ducktape 0.8.x and python 3, this change does not apply there.
    
    See these PRs for details on ducktape:
    https://github.com/confluentinc/ducktape/pull/291
    https://github.com/confluentinc/ducktape/pull/292
    
    Reviewers: David Jacot <dj...@confluent.io>
---
 tests/docker/Dockerfile | 2 +-
 tests/setup.py          | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/tests/docker/Dockerfile b/tests/docker/Dockerfile
index 37ae1cc..66d1c38 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.11
+RUN pip install --upgrade cffi virtualenv pyasn1 boto3 pycrypto pywinrm ipaddress enum34 && pip install --upgrade ducktape==0.7.17
 
 # Set up ssh
 COPY ./ssh-config /root/.ssh/config
diff --git a/tests/setup.py b/tests/setup.py
index 3f2f198..6927710 100644
--- a/tests/setup.py
+++ b/tests/setup.py
@@ -47,11 +47,11 @@ setup(name="kafkatest",
       version=version,
       description="Apache Kafka System Tests",
       author="Apache Kafka",
-      platforms=["any"], 
+      platforms=["any"],
       license="apache2.0",
       packages=find_packages(),
       include_package_data=True,
-      install_requires=["ducktape==0.7.11", "requests==2.22.0"],
+      install_requires=["ducktape==0.7.17", "requests==2.22.0"],
       tests_require=["pytest", "mock"],
       cmdclass={'test': PyTest},
       )