Tighten up package requirements to deal with incompatible img2pdf 0.2 release

This commit is contained in:
James R. Barlow
2016-02-05 14:37:05 -08:00
parent cb3ba8e973
commit 60593b5ad3
2 changed files with 11 additions and 10 deletions
+6 -5
View File
@@ -1,5 +1,6 @@
ruffus>=2.6.3
Pillow>=2.4.0
reportlab>=3.1.44
PyPDF2>=1.25.1
git+https://github.com/jbarlow83/img2pdf.git@e9bcce0afc3720752ca53a991db93f911a1df709#egg=img2pdf-0.1.5.dev
ruffus==2.6.3
Pillow==3.1.1
reportlab==3.2.0
PyPDF2==1.25.1
git+https://github.com/jbarlow83/img2pdf.git@0.1.5.dev
+5 -5
View File
@@ -210,11 +210,11 @@ setup(
],
use_scm_version={'version_scheme': 'post-release'},
install_requires=[
'ruffus',
'Pillow',
'reportlab',
'PyPDF2',
'img2pdf'
'ruffus>=2.6.3',
'Pillow>=2.4.0',
'reportlab>=3.1.44',
'PyPDF2>=1.25.1',
'img2pdf==0.1.5.dev'
],
tests_require=tests_require,
entry_points={