From 076f5aa354e7b5c1d8985cb33d2b845a9f10ab57 Mon Sep 17 00:00:00 2001 From: Nico Fechtner Date: Wed, 23 Oct 2019 11:06:42 +0200 Subject: [PATCH 1/2] Using minimum instead of fixed dependency versions. --- setup.py | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/setup.py b/setup.py index f60e884..0b50f70 100644 --- a/setup.py +++ b/setup.py @@ -34,22 +34,22 @@ 'zapcli.commands', ], install_requires=[ - 'click==4.0', - 'python-owasp-zap-v2.4==0.0.14', - 'requests==2.20.1', - 'tabulate==0.7.5', - 'termcolor==1.1.0', - 'six==1.10.0', + 'click>=4.0', + 'python-owasp-zap-v2.4>=0.0.14', + 'requests>=2.20.1', + 'tabulate>=0.7.5', + 'termcolor>=1.1.0', + 'six>=1.10.0', ], extras_require={ 'dev': [ - 'coverage==3.7.1', - 'ddt==1.0.1', - 'mock==2.0.0', - 'pep8==1.6.2', - 'pylint==1.5.5', - 'pytest==3.0.7', - 'responses==0.5.1', + 'coverage>=3.7.1', + 'ddt>=1.0.1', + 'mock>=2.0.0', + 'pep8>=1.6.2', + 'pylint>=1.5.5', + 'pytest>=3.0.7', + 'responses>=0.5.1', ], }, include_package_data=True, From fa76a99362c8652cffcff5a20777251fbb4d3f6f Mon Sep 17 00:00:00 2001 From: Nico Fechtner Date: Mon, 28 Oct 2019 17:45:50 +0100 Subject: [PATCH 2/2] Fixed 'python-owasp-zap-v2.4' dependency, since it does not follow SemVer. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0b50f70..cdda393 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ ], install_requires=[ 'click>=4.0', - 'python-owasp-zap-v2.4>=0.0.14', + 'python-owasp-zap-v2.4==0.0.14', 'requests>=2.20.1', 'tabulate>=0.7.5', 'termcolor>=1.1.0',