equal
deleted
inserted
replaced
1 #Copyright ReportLab Europe Ltd. 2000-2018 |
1 #Copyright ReportLab Europe Ltd. 2000-2018 |
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.5.31" |
4 Version = "3.5.32" |
5 __version__=Version |
5 __version__=Version |
6 __date__='20191019' |
6 __date__='20191024' |
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, 5): |
10 if sys.version_info[0:2]!=(2, 7) and sys.version_info<(3, 5): |
11 raise ImportError("""reportlab requires Python 2.7+ or 3.5+; 3.0-3.4 are not supported. |
11 raise ImportError("""reportlab requires Python 2.7+ or 3.5+; 3.0-3.4 are not supported. |