From 50089cb57a4da90d6972bc1ad7f31b9c1e048eee Mon Sep 17 00:00:00 2001 From: BasioMeusPuga Date: Sat, 17 Mar 2018 00:38:09 +0530 Subject: [PATCH] Remove version requirements --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 0b37284..a68a369 100644 --- a/setup.py +++ b/setup.py @@ -13,9 +13,9 @@ VERSION = "{}.{}.{}".format(MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION) with codecs.open(path.join(HERE, 'README.md'), encoding='utf-8') as f: LONG_DESC = f.read() -INSTALL_DEPS = ['PyQt5>=5.10.1', - 'requests>=2.18.4', - 'beautifulsoup4>=4.6.0'] +INSTALL_DEPS = ['PyQt5', + 'requests', + 'beautifulsoup4'] TEST_DEPS = ['pytest', 'unittest2'] DEV_DEPS = []