Files
jupyterhub/jupyterhub/version.py
MinRK 8ca425fd8a make it a proper package
both jupyterhub and configurable-http-proxy
2014-08-20 20:26:02 -07:00

16 lines
359 B
Python

"""jupyterhub version info"""
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
version_info = (
0,
0,
1,
'dev', # comment-out this line for a release
)
__version__ = '.'.join(map(str, version_info[:3]))
if len(version_info) > 3:
__version__ = '%s-%s' % (__version__, version_info[3])