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

cadonna 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 0aea498b9a MINOR: Pin ducktape version to < 0.9 (#12242)
0aea498b9a is described below

commit 0aea498b9a2e70bdd92859159c0a868e9b8900d9
Author: Bruno Cadonna <[email protected]>
AuthorDate: Thu Jun 2 20:21:23 2022 +0200

    MINOR: Pin ducktape version to < 0.9 (#12242)
    
    With newer ducktape versions than < 0.9 system tests
    may run into authentication issues with the AK system test
    infrastructure.
    
    The version will be bumped up once we have infrastructure
    in place for newer paramiko versions brought in by ducktape
    0.9.
    
    Reviewers: Lucas Bradstreet <[email protected]>, Matthias J. Sax 
<[email protected]>, Kvicii <[email protected]>
---
 tests/setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/setup.py b/tests/setup.py
index d00248d4ee..c33a802f05 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.8", "requests==2.24.0"],
+      install_requires=["ducktape<0.9", "requests==2.24.0"],
       tests_require=["pytest", "mock"],
       cmdclass={'test': PyTest},
       zip_safe=False

Reply via email to