summaryrefslogtreecommitdiff
path: root/pysnmp/__init__.py
blob: 17874aefee7e1b15cee7473ea3d1875e05c5b2d3 (plain)
1
2
3
4
5
# http://www.python.org/dev/peps/pep-0396/
__version__ = '4.3.1'
# backward compatibility
version = tuple([int(x) for x in __version__.split('.')])
majorVersionId = version[0]