Skip to content

Commit

Permalink
Updates for 2.4.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ptmcg committed Nov 4, 2019
1 parent 78d4be0 commit e40c1df
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion pyparsing.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 <ptmcg@users.sourceforge.net>"

import string
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@
"""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",]

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/",
Expand All @@ -35,5 +36,6 @@
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
)

0 comments on commit e40c1df

Please sign in to comment.