From 57cfe3c7020ec0d207dee5174c36df4fd6fcfb3d Mon Sep 17 00:00:00 2001 From: Ewen Cheslack-Postava Date: Thu, 30 Jul 2020 10:47:44 -0700 Subject: [PATCH] Update dependency versions --- setup.py | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/setup.py b/setup.py index d749cdb4d..2f4f725f4 100644 --- a/setup.py +++ b/setup.py @@ -44,27 +44,29 @@ def run_tests(self): url="http://github.com/confluentinc/ducktape", packages=find_packages(), package_data={'ducktape': ['templates/report/*']}, - install_requires=['jinja2==2.10.1', - 'boto3==1.9.217', + install_requires=['jinja2==2.11.2', + 'boto3==1.15.9', # jinja2 pulls in MarkupSafe with a > constraint, but we need to constrain it for compatibility 'MarkupSafe<2.0.0', 'pyparsing<3.0.0', 'zipp<2.0.0', 'pywinrm==0.2.2', - 'requests==2.22.0', - 'paramiko~=2.6.0', - 'pyzmq==18.1.0', - 'pycryptodome==3.8.2', + 'requests==2.24.0', + 'paramiko~=2.7.2', + 'pyzmq==19.0.2', + 'pycryptodome==3.9.8', + # > 5.0 drops py27 support 'more-itertools==5.0.0', - 'tox==3.13.2', - 'six==1.12.0', - 'PyYAML==5.3'], - tests_require=['pytest==4.6.5', - 'mock==3.0.5', - 'psutil==5.6.3', - 'memory_profiler==0.55', + 'tox==3.20.0', + 'six==1.15.0', + 'PyYAML==5.3.1'], + tests_require=['pytest==6.1.0', + # 4.0 drops py27 support + 'mock==4.0.2', + 'psutil==5.7.2', + 'memory_profiler==0.57', 'statistics==1.0.3.5', 'requests-testadapter==0.3.0'], - setup_requires=['flake8==3.7.8'], + setup_requires=['flake8==3.8.3'], cmdclass={'test': PyTest}, )