https://github.com/fenderglass/Ragout
Raw File
Tip revision: d3f213f733f5d80a62f00d4967b26edb7a06ba72 authored by Mikhail Kolmogorov on 22 March 2015, 19:11:36 UTC
1.1 release
Tip revision: d3f213f
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