https://github.com/fenderglass/Ragout
Raw File
Tip revision: 11c2a948a2ffbdc6c004909962bbf45e2d274a4c authored by Mikhail Kolmogorov on 25 August 2015, 17:29:16 UTC
Merge branch 'devel' into path_cover
Tip revision: 11c2a94
version.py
"""
Version information for NetworkX, created during installation.

Do not add this file to the repository.

"""

import datetime

version = '1.8'
date = 'Sun Jul 28 16:57:14 2013'

# Was NetworkX built from a development version? If so, remember that the major
# and minor versions reference the "target" (rather than "current") release.
dev = False

# Format: (name, major, min, revision)
version_info = ('networkx', '1', '8', None)

# Format: a 'datetime.datetime' instance
date_info = datetime.datetime(2013, 7, 28, 16, 57, 14, 529707)

# Format: (vcs, vcs_tuple)
vcs_info = (None, (None, None))

back to top