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.
This commit is contained in:
Stanislav Vodetskyi 2022-03-11 04:18:19 -08:00 committed by GitHub
parent 87eb0cf03c
commit 7e683852b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -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 # 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 iproute2 && apt-get -y clean 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 && apt-get -y clean
RUN python3 -m pip install -U pip==21.1.1; 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 # Set up ssh
COPY ./ssh-config /root/.ssh/config COPY ./ssh-config /root/.ssh/config

View File

@ -51,7 +51,7 @@ setup(name="kafkatest",
license="apache2.0", license="apache2.0",
packages=find_packages(), packages=find_packages(),
include_package_data=True, 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"], tests_require=["pytest", "mock"],
cmdclass={'test': PyTest}, cmdclass={'test': PyTest},
zip_safe=False zip_safe=False