This is an automated email from the ASF dual-hosted git repository.
chia7712 pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/trunk by this push:
new f93ffeb337f KAFKA-20360 Upgrade ducktape from 0.13 to 0.14 and
requests from 2.32.2 to 2.32.4 (#21878)
f93ffeb337f is described below
commit f93ffeb337f770edfa331cd1d1e0b815b6123b97
Author: Murali Basani <[email protected]>
AuthorDate: Thu Mar 26 22:41:15 2026 +0100
KAFKA-20360 Upgrade ducktape from 0.13 to 0.14 and requests from 2.32.2 to
2.32.4 (#21878)
Upgrade ducktape from 0.13 to 0.14 and requests from 2.32.2 to 2.32.4
Reviewers: Ken Huang <[email protected]>, Chia-Ping Tsai
<[email protected]>
---
tests/docker/Dockerfile | 2 +-
tests/docker/requirements.txt | 2 +-
tests/setup.py | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/tests/docker/Dockerfile b/tests/docker/Dockerfile
index 89b555aa3da..23b99c29233 100644
--- a/tests/docker/Dockerfile
+++ b/tests/docker/Dockerfile
@@ -62,7 +62,7 @@ LABEL ducker.creator=$ducker_creator
# Update Linux and install necessary utilities.
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 iproute2
iputils-ping && apt-get -y clean
RUN python3 -m pip install -U pip==21.1.1;
-# NOTE: ducktape 0.13.0 supports py 3.9, 3.10, 3.11, 3.12 and 3.13
+# NOTE: ducktape 0.14.0 supports py 3.9, 3.10, 3.11, 3.12 and 3.13
COPY requirements.txt requirements.txt
RUN pip3 install --upgrade -r requirements.txt
diff --git a/tests/docker/requirements.txt b/tests/docker/requirements.txt
index cb4a99f75bd..27b3255ea56 100644
--- a/tests/docker/requirements.txt
+++ b/tests/docker/requirements.txt
@@ -22,4 +22,4 @@ pywinrm
ipaddress
debugpy
psutil
-ducktape==0.13.0
\ No newline at end of file
+ducktape==0.14.0
\ No newline at end of file
diff --git a/tests/setup.py b/tests/setup.py
index cd23665f21f..2460b870dee 100644
--- a/tests/setup.py
+++ b/tests/setup.py
@@ -49,7 +49,7 @@ setup(name="kafkatest",
license="apache2.0",
packages=find_packages(),
include_package_data=True,
- install_requires=["ducktape==0.13.0", "requests>=2.32.2",
"psutil==5.7.2", "pytest==8.3.3", "mock==5.1.0"],
+ install_requires=["ducktape==0.14.0", "requests>=2.32.4",
"psutil==5.7.2", "pytest==8.3.3", "mock==5.1.0"],
cmdclass={'test': PyTest},
zip_safe=False
)