From fee743164e888f03c68ec87aef8fa63877c24c64 Mon Sep 17 00:00:00 2001 From: David Beazley Date: Sun, 26 Apr 2015 16:19:23 -0500 Subject: Fixed version numbers --- ply/__init__.py | 1 + ply/lex.py | 2 +- ply/yacc.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ply/__init__.py b/ply/__init__.py index 853a985..757dc37 100644 --- a/ply/__init__.py +++ b/ply/__init__.py @@ -1,4 +1,5 @@ # PLY package # Author: David Beazley (dave@dabeaz.com) +__version__ = '3.6' __all__ = ['lex','yacc'] diff --git a/ply/lex.py b/ply/lex.py index 47cfa44..8ba2051 100644 --- a/ply/lex.py +++ b/ply/lex.py @@ -31,7 +31,7 @@ # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # ----------------------------------------------------------------------------- -__version__ = '3.5' +__version__ = '3.6' __tabversion__ = '3.5' import re diff --git a/ply/yacc.py b/ply/yacc.py index 5527fde..f18e3eb 100644 --- a/ply/yacc.py +++ b/ply/yacc.py @@ -67,7 +67,7 @@ import inspect import base64 import warnings -__version__ = '3.5' +__version__ = '3.6' __tabversion__ = '3.5' #----------------------------------------------------------------------------- -- cgit v1.2.1