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 2022/03/11 12:34:32 UTC

[kafka] branch 3.0 updated: MINOR: unpin ducktape dependency to always use the newest version (py3 edition) (#11884)

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

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


The following commit(s) were added to refs/heads/3.0 by this push:
     new 6fee0af  MINOR: unpin ducktape dependency to always use the newest version (py3 edition) (#11884)
6fee0af is described below

commit 6fee0aff9d15d1debdb4d5f8140339c6f4ffc982
Author: Stanislav Vodetskyi <49...@users.noreply.github.com>
AuthorDate: Fri Mar 11 04:18:19 2022 -0800

    MINOR: unpin ducktape dependency to always use the newest version (py3 edition) (#11884)
    
    Ensures we always have the latest published ducktape version.
    This way whenever we release a new one, we won't have to cherry pick a bunch of commits across a bunch of branches.
---
 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 aae4afe..f3647da 100644
--- a/tests/docker/Dockerfile
+++ b/tests/docker/Dockerfile
@@ -35,7 +35,7 @@ LABEL ducker.creator=$ducker_creator
 # we have to install git since it is included in openjdk:8 but not openjdk:11
 RUN apt update && apt install -y sudo git netcat iptables rsync unzip wget curl jq coreutils openssh-server net-tools vim python3-pip python3-dev libffi-dev libssl-dev cmake pkg-config libfuse-dev iperf traceroute && apt-get -y clean
 RUN python3 -m pip install -U pip==21.1.1;
-RUN pip3 install --upgrade cffi virtualenv pyasn1 boto3 pycrypto pywinrm ipaddress enum34 debugpy && pip3 install --upgrade ducktape==0.8.1
+RUN pip3 install --upgrade cffi virtualenv pyasn1 boto3 pycrypto pywinrm ipaddress enum34 debugpy && pip3 install --upgrade "ducktape>0.8"
 
 # Set up ssh
 COPY ./ssh-config /root/.ssh/config
diff --git a/tests/setup.py b/tests/setup.py
index fc85061..d00248d 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.8.8", "requests==2.24.0"],
+      install_requires=["ducktape>0.8", "requests==2.24.0"],
       tests_require=["pytest", "mock"],
       cmdclass={'test': PyTest},
       zip_safe=False