equal
deleted
inserted
replaced
1 #Copyright ReportLab Europe Ltd. 2000-2017 |
1 #Copyright ReportLab Europe Ltd. 2000-2017 |
2 #see license.txt for license details |
2 #see license.txt for license details |
3 __doc__="""The Reportlab PDF generation library.""" |
3 __doc__="""The Reportlab PDF generation library.""" |
4 Version = "3.4.29" |
4 Version = "3.4.30" |
5 __version__=Version |
5 __version__=Version |
6 __date__='20180322' |
6 __date__='20180323' |
7 |
7 |
8 import sys, os |
8 import sys, os |
9 |
9 |
10 if sys.version_info[0:2]!=(2, 7) and sys.version_info<(3, 3): |
10 if sys.version_info[0:2]!=(2, 7) and sys.version_info<(3, 3): |
11 raise ImportError("""reportlab requires Python 2.7+ or 3.3+; 3.0-3.2 are not supported.""") |
11 raise ImportError("""reportlab requires Python 2.7+ or 3.3+; 3.0-3.2 are not supported.""") |