1import sys
2
3# http://www.python.org/dev/peps/pep-0396/
4__version__ = '0.1.9'
5
6if sys.version_info[:2] < (2, 4):
7    raise RuntimeError('PyASN1 requires Python 2.4 or later')
8
9