Change Log
==========
+Version 2.4.5 - November, 2019
+------------------------------
+- Fixed encoding when setup.py reads README.rst to include the
+ project long description when uploading to PyPI. A stray
+ unicode space in README.rst prevented the source install on
+ systems whose default encoding is not 'utf-8'.
+
+
Version 2.4.4 - November, 2019
--------------------------------
- Unresolved symbol reference in 2.4.3 release was masked by stdout
Metadata-Version: 1.2
Name: pyparsing
-Version: 2.4.4
+Version: 2.4.5
Summary: Python parsing module
Home-page: https://github.com/pyparsing/pyparsing/
Author: Paul McGuire
============
The pyparsing module is an alternative approach to creating and
- executing simple grammars, vs. the traditional lex/yacc approach, or the
+ executing simple grammars, vs. the traditional lex/yacc approach, or the
use of regular expressions. The pyparsing module provides a library of
classes that client code uses to construct the grammar directly in
Python code.
============
The pyparsing module is an alternative approach to creating and
-executing simple grammars, vs. the traditional lex/yacc approach, or the
+executing simple grammars, vs. the traditional lex/yacc approach, or the
use of regular expressions. The pyparsing module provides a library of
classes that client code uses to construct the grammar directly in
Python code.
Metadata-Version: 1.2
Name: pyparsing
-Version: 2.4.4
+Version: 2.4.5
Summary: Python parsing module
Home-page: https://github.com/pyparsing/pyparsing/
Author: Paul McGuire
============
The pyparsing module is an alternative approach to creating and
- executing simple grammars, vs. the traditional lex/yacc approach, or the
+ executing simple grammars, vs. the traditional lex/yacc approach, or the
use of regular expressions. The pyparsing module provides a library of
classes that client code uses to construct the grammar directly in
Python code.
namespace class
"""
-__version__ = "2.4.4"
-__versionTime__ = "05 Nov 2019 14:15 UTC"
+__version__ = "2.4.5"
+__versionTime__ = "09 Nov 2019 23:03 UTC"
__author__ = "Paul McGuire <ptmcg@users.sourceforge.net>"
import string
from setuptools import setup
from pyparsing import __version__ as pyparsing_version
+from io import open
# The directory containing this file
README_name = __file__.replace("setup.py", "README.rst")
# The text of the README file
-with open(README_name) as README:
+with open(README_name, encoding='utf8') as README:
pyparsing_main_doc = README.read()
modules = ["pyparsing",]