version.py 175 B

123456
  1. # Copyright (c) Jupyter Development Team.
  2. # Distributed under the terms of the Modified BSD License.
  3. version_info = (4, 6, 3)
  4. __version__ = '.'.join(map(str, version_info))