mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-07 18:14:10 +00:00
13 lines
221 B
Python
13 lines
221 B
Python
"""jupyterhub version info"""
|
|
|
|
# Copyright (c) Jupyter Development Team.
|
|
# Distributed under the terms of the Modified BSD License.
|
|
|
|
version_info = (
|
|
0,
|
|
4,
|
|
0,
|
|
)
|
|
|
|
__version__ = '.'.join(map(str, version_info))
|