summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Beazley <dave@dabeaz.com>2015-04-26 16:19:23 -0500
committerDavid Beazley <dave@dabeaz.com>2015-04-26 16:19:23 -0500
commitfee743164e888f03c68ec87aef8fa63877c24c64 (patch)
treeef8060c86d60d7ab81bfdf6766edff7ff271a255
parentc81417ba8856ecbc0770f3b422c9a92bf6d24db3 (diff)
downloadply-fee743164e888f03c68ec87aef8fa63877c24c64.tar.gz
Fixed version numbers
-rw-r--r--ply/__init__.py1
-rw-r--r--ply/lex.py2
-rw-r--r--ply/yacc.py2
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'
#-----------------------------------------------------------------------------