From e40c1df06372654cf80c24d1a6e957d26603e53c Mon Sep 17 00:00:00 2001 From: ptmcg Date: Sun, 3 Nov 2019 20:13:47 -0600 Subject: [PATCH] Updates for 2.4.3 release --- CHANGES | 4 ++-- pyparsing.py | 2 +- setup.py | 4 +++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index 87a3193a..fc9ff71c 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 a0812090..7e35ed2f 100644 --- a/pyparsing.py +++ b/pyparsing.py @@ -96,7 +96,7 @@ """ __version__ = "2.4.3" -__versionTime__ = "13 Oct 2019 19:20 UTC" +__versionTime__ = "21 Oct 2019 23:43 UTC" __author__ = "Paul McGuire " import string diff --git a/setup.py b/setup.py index 9de17616..092e5f89 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 @@ 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 @@ 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', ] )