src/reportlab/__init__.py
changeset 4389 61a7f0840d00
parent 4388 9f93d62b9f6e
child 4390 bf8c59a72ff3
equal deleted inserted replaced
4388:9f93d62b9f6e 4389:61a7f0840d00
     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.""")