From 18fc8917c9943fc200d6ebf713d0e26de4795cf8 Mon Sep 17 00:00:00 2001 From: Danny Sag Date: Fri, 28 Feb 2014 11:19:17 +1030 Subject: [PATCH] Adding reportlab 2.7 as a dependency, with a comment that this is due to a bug in pisa, and also that this may not work on Python 3.x --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index d86deb430..d3a1f4541 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,12 @@ install_requires=[ "mezzanine >= 3.0.6", "pisa >= 3.0.33", + "reportlab == 2.7" ], + # NOTE: reportlab 3.0 does not work with pisa 3.0.33, due to a + # bad version check. + # However, reportlab 2.7 will not work with Python 3! + # classifiers=[ "Development Status :: 4 - Beta",