-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding revision number to the version string. There'll be a bit of a …
…jump in the minor version number but now it'll be automatically kept up-to-date by Subversion
- Loading branch information
1 parent
3deaf89
commit 719559a
Showing
2 changed files
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
The dotparser parses graphviz files in dot and dot files and transforms them | ||
into a class representation defined by pydot. | ||
The module needs pyparsing (tested with version 1.2.2) and pydot (tested with 0.9.10) | ||
The module needs pyparsing (tested with version 1.2.2) and pydot | ||
Author: Michael Krause <[email protected]> | ||
Fixes by: Ero Carrera <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,13 +11,15 @@ | |
DOT Language: http://www.graphviz.org/doc/info/lang.html | ||
Programmed and tested with Graphviz 2.26.3 and Python 2.6 on OSX 10.6.4 | ||
by Ero Carrera (c) 2004-2010 [[email protected]] | ||
Copyright (c) 2005-2011 Ero Carrera <[email protected]> | ||
Distributed under MIT license [http://opensource.org/licenses/mit-license.html]. | ||
""" | ||
|
||
__revision__ = "$LastChangedRevision$" | ||
__author__ = 'Ero Carrera' | ||
__version__ = '1.0.4' | ||
__version__ = '1.0.%d' % int( __revision__[21:-2] ) | ||
__license__ = 'MIT' | ||
|
||
import os | ||
|