Mercurial > repos > shellac > sam_consensus_v3
comparison env/lib/python3.9/site-packages/networkx/version.py @ 0:4f3585e2f14b draft default tip
"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
| author | shellac |
|---|---|
| date | Mon, 22 Mar 2021 18:12:50 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:4f3585e2f14b |
|---|---|
| 1 """ | |
| 2 Version information for NetworkX, created during installation. | |
| 3 | |
| 4 Do not add this file to the repository. | |
| 5 | |
| 6 """ | |
| 7 | |
| 8 import datetime | |
| 9 | |
| 10 version = '2.5' | |
| 11 date = 'Sat Aug 22 20:11:03 2020' | |
| 12 | |
| 13 # Was NetworkX built from a development version? If so, remember that the major | |
| 14 # and minor versions reference the "target" (rather than "current") release. | |
| 15 dev = False | |
| 16 | |
| 17 # Format: (name, major, min, revision) | |
| 18 version_info = ('networkx', '2', '5', None) | |
| 19 | |
| 20 # Format: a 'datetime.datetime' instance | |
| 21 date_info = datetime.datetime(2020, 8, 22, 20, 11, 3) | |
| 22 | |
| 23 # Format: (vcs, vcs_tuple) | |
| 24 vcs_info = (None, (None, None)) | |
| 25 |
