mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-18 07:23:00 +00:00
16 lines
359 B
Python
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])
|