summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory M. Turner <gmt@be-evil.net>2015-07-29 12:15:40 -0700
committerGregory M. Turner <gmt@be-evil.net>2015-07-29 12:15:40 -0700
commit687e65a1b6d99d934c77c6fbfae6869f11b601bb (patch)
treeb131b1d780abbe86eb518919b01bcfa6855f0058
parentdbf122652d38ba03ff9f9fe4aa9bee3693e6775f (diff)
downloadply-687e65a1b6d99d934c77c6fbfae6869f11b601bb.tar.gz
Fix in-source version constants for 3.7
Signed-off-by: Gregory M. Turner <gmt@be-evil.net>
-rw-r--r--README.md2
-rw-r--r--ply/__init__.py2
-rw-r--r--ply/lex.py2
-rw-r--r--ply/yacc.py2
-rw-r--r--setup.py2
5 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index c630d81..ec10aaf 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-PLY (Python Lex-Yacc) Version 3.6
+PLY (Python Lex-Yacc) Version 3.7
Copyright (C) 2001-2015,
David M. Beazley (Dabeaz LLC)
diff --git a/ply/__init__.py b/ply/__init__.py
index 757dc37..2461a44 100644
--- a/ply/__init__.py
+++ b/ply/__init__.py
@@ -1,5 +1,5 @@
# PLY package
# Author: David Beazley (dave@dabeaz.com)
-__version__ = '3.6'
+__version__ = '3.7'
__all__ = ['lex','yacc']
diff --git a/ply/lex.py b/ply/lex.py
index 772325c..70edf13 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.6'
+__version__ = '3.7'
__tabversion__ = '3.5'
import re
diff --git a/ply/yacc.py b/ply/yacc.py
index eb02cc2..f863c7c 100644
--- a/ply/yacc.py
+++ b/ply/yacc.py
@@ -67,7 +67,7 @@ import inspect
import base64
import warnings
-__version__ = '3.6'
+__version__ = '3.7'
__tabversion__ = '3.5'
#-----------------------------------------------------------------------------
diff --git a/setup.py b/setup.py
index c6f2b44..f46aa07 100644
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,7 @@ PLY is extremely easy to use and provides very extensive error checking.
It is compatible with both Python 2 and Python 3.
""",
license="""BSD""",
- version = "3.6",
+ version = "3.7",
author = "David Beazley",
author_email = "dave@dabeaz.com",
maintainer = "David Beazley",