diff options
author | imarom <imarom@cisco.com> | 2015-08-18 10:26:51 +0300 |
---|---|---|
committer | imarom <imarom@cisco.com> | 2015-08-18 10:26:51 +0300 |
commit | cbc645cba025f2098031350fc1323e6ffff33633 (patch) | |
tree | db867b2eb09d5b38d47e28a9876bc21f51f8cc57 /src/console/zmq/sugar/version.py | |
parent | 396b54ea57308890c29c1d9746f0cce32d990cf8 (diff) |
new files for Python console
Diffstat (limited to 'src/console/zmq/sugar/version.py')
-rwxr-xr-x | src/console/zmq/sugar/version.py | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/console/zmq/sugar/version.py b/src/console/zmq/sugar/version.py new file mode 100755 index 00000000..ea8fbbc4 --- /dev/null +++ b/src/console/zmq/sugar/version.py @@ -0,0 +1,48 @@ +"""PyZMQ and 0MQ version functions.""" + +# Copyright (C) PyZMQ Developers +# Distributed under the terms of the Modified BSD License. + + +from zmq.backend import zmq_version_info + + +VERSION_MAJOR = 14 +VERSION_MINOR = 5 +VERSION_PATCH = 0 +VERSION_EXTRA = "" +__version__ = '%i.%i.%i' % (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH) + +if VERSION_EXTRA: + __version__ = "%s-%s" % (__version__, VERSION_EXTRA) + version_info = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH, float('inf')) +else: + version_info = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH) + +__revision__ = '' + +def pyzmq_version(): + """return the version of pyzmq as a string""" + if __revision__: + return '@'.join([__version__,__revision__[:6]]) + else: + return __version__ + +def pyzmq_version_info(): + """return the pyzmq version as a tuple of at least three numbers + + If pyzmq is a development version, `inf` will be appended after the third integer. + """ + return version_info + + +def zmq_version(): + """return the version of libzmq as a string""" + return "%i.%i.%i" % zmq_version_info() + + +__all__ = ['zmq_version', 'zmq_version_info', + 'pyzmq_version','pyzmq_version_info', + '__version__', '__revision__' +] + |