Skip to content

Commit e40c1df

Browse files
committed
Updates for 2.4.3 release
1 parent 78d4be0 commit e40c1df

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGES

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
Change Log
33
==========
44

5-
Version 2.4.3 - October, 2019
6-
-----------------------------
5+
Version 2.4.3 - November, 2019
6+
------------------------------
77
- Fixed a bug in ParserElement.__eq__ that would for some parsers
88
create a recursion error at parser definition time. Thanks to
99
Michael Clerx for the assist. (Addresses issue #123)

pyparsing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
"""
9797

9898
__version__ = "2.4.3"
99-
__versionTime__ = "13 Oct 2019 19:20 UTC"
99+
__versionTime__ = "21 Oct 2019 23:43 UTC"
100100
__author__ = "Paul McGuire <ptmcg@users.sourceforge.net>"
101101

102102
import string

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@
33
"""Setup script for the pyparsing module distribution."""
44

55
from setuptools import setup
6-
from pyparsing import __version__ as pyparsing_version
6+
from pyparsing import __version__ as pyparsing_version, __doc__ as pyparsing_main_doc
77

88
modules = ["pyparsing",]
99

1010
setup(# Distribution meta-data
1111
name = "pyparsing",
1212
version = pyparsing_version,
1313
description = "Python parsing module",
14+
long_description = pyparsing_main_doc,
1415
author = "Paul McGuire",
1516
author_email = "ptmcg@users.sourceforge.net",
1617
url = "https://github.com/pyparsing/pyparsing/",
@@ -35,5 +36,6 @@
3536
'Programming Language :: Python :: 3.5',
3637
'Programming Language :: Python :: 3.6',
3738
'Programming Language :: Python :: 3.7',
39+
'Programming Language :: Python :: 3.8',
3840
]
3941
)

0 commit comments

Comments
 (0)