From a62e68122387b28e58e11abd006a5d080c61d464 Mon Sep 17 00:00:00 2001 From: BasioMeusPuga Date: Fri, 16 Mar 2018 21:10:28 +0530 Subject: [PATCH] Fix python-poppler-qt5 version check --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index df4a9e4..0b37284 100644 --- a/setup.py +++ b/setup.py @@ -15,8 +15,7 @@ with codecs.open(path.join(HERE, 'README.md'), encoding='utf-8') as f: INSTALL_DEPS = ['PyQt5>=5.10.1', 'requests>=2.18.4', - 'beautifulsoup4>=4.6.0', - 'python-poppler-qt5>=0.24.2'] + 'beautifulsoup4>=4.6.0'] TEST_DEPS = ['pytest', 'unittest2'] DEV_DEPS = [] @@ -72,6 +71,7 @@ setup( # $ pip install -e .[dev,test] extras_require={ 'dev': DEV_DEPS, - 'test': TEST_DEPS + 'test': TEST_DEPS, + 'PDF': ['python-poppler-qt5'] }, )