Skip to content

Commit

Permalink
Adding revision number to the version string. There'll be a bit of a …
Browse files Browse the repository at this point in the history
…jump in the minor version number but now it'll be automatically kept up-to-date by Subversion
  • Loading branch information
[email protected] committed Mar 3, 2011
1 parent 3deaf89 commit 719559a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dot_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]>
Expand Down
6 changes: 4 additions & 2 deletions pydot.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 719559a

Please sign in to comment.