Skip to content

Commit

Permalink
Avoid pyparsing version 3.0.5 (#489)
Browse files Browse the repository at this point in the history
Fixes #486 by avoiding the version of pyparsing that broke packaging.
  • Loading branch information
henryiii committed Nov 16, 2021
1 parent 8cb9dbf commit c76247c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
author=about["__author__"],
author_email=about["__email__"],
python_requires=">=3.6",
install_requires=["pyparsing>=2.0.2"], # Needed to avoid issue #91
install_requires=["pyparsing>=2.0.2,!=3.0.5"], # 2.0.2 + needed to avoid issue #91
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
Expand Down

0 comments on commit c76247c

Please sign in to comment.