summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorptmcg <ptmcg@austin.rr.com>2019-11-03 20:13:47 -0600
committerptmcg <ptmcg@austin.rr.com>2019-11-03 20:13:47 -0600
commite40c1df06372654cf80c24d1a6e957d26603e53c (patch)
treeb18ad5e603223053cfe8e0f5a6b12f3e1ded4e65
parent78d4be0dd678cc70ada99784905ca26254d32035 (diff)
downloadpyparsing-git-e40c1df06372654cf80c24d1a6e957d26603e53c.tar.gz
Updates for 2.4.3 releasepyparsing_2.4.3
-rw-r--r--CHANGES4
-rw-r--r--pyparsing.py2
-rw-r--r--setup.py4
3 files changed, 6 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES
index 87a3193..fc9ff71 100644
--- a/CHANGES
+++ b/CHANGES
@@ -2,8 +2,8 @@
Change Log
==========
-Version 2.4.3 - October, 2019
------------------------------
+Version 2.4.3 - November, 2019
+------------------------------
- Fixed a bug in ParserElement.__eq__ that would for some parsers
create a recursion error at parser definition time. Thanks to
Michael Clerx for the assist. (Addresses issue #123)
diff --git a/pyparsing.py b/pyparsing.py
index a081209..7e35ed2 100644
--- a/pyparsing.py
+++ b/pyparsing.py
@@ -96,7 +96,7 @@ classes inherit from. Use the docstrings for examples of how to:
"""
__version__ = "2.4.3"
-__versionTime__ = "13 Oct 2019 19:20 UTC"
+__versionTime__ = "21 Oct 2019 23:43 UTC"
__author__ = "Paul McGuire <ptmcg@users.sourceforge.net>"
import string
diff --git a/setup.py b/setup.py
index 9de1761..092e5f8 100644
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@
"""Setup script for the pyparsing module distribution."""
from setuptools import setup
-from pyparsing import __version__ as pyparsing_version
+from pyparsing import __version__ as pyparsing_version, __doc__ as pyparsing_main_doc
modules = ["pyparsing",]
@@ -11,6 +11,7 @@ setup(# Distribution meta-data
name = "pyparsing",
version = pyparsing_version,
description = "Python parsing module",
+ long_description = pyparsing_main_doc,
author = "Paul McGuire",
author_email = "ptmcg@users.sourceforge.net",
url = "https://github.com/pyparsing/pyparsing/",
@@ -35,5 +36,6 @@ setup(# Distribution meta-data
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
+ 'Programming Language :: Python :: 3.8',
]
)