~ubuntu-branches/ubuntu/saucy/python-networkx/saucy

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
"""
Version information for NetworkX, created during installation.

Do not add this file to the repository.

"""

import datetime

version = '1.7'
date = 'Wed Jul  4 17:53:34 2012'

# 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, 7, '70eea5d9e665')

# Format: a 'datetime.datetime' instance
date_info = datetime.datetime(2012, 7, 4, 17, 53, 34, 228318)

# Format: (vcs, vcs_tuple)
vcs_info = ('mercurial', ('70eea5d9e665', 'tip'))