Skip to content

Commit

Permalink
Exclude known-broken pyparsing versions
Browse files Browse the repository at this point in the history
We ran into the following pyparsing bug:
pyparsing/pyparsing#345

After some bisecting it turned out it's only present in pyparsing 3.0.5-6,
and the pyparsing folks were quick to fix it for 3.0.7.

Exclude the broken versions from install_requires.
  • Loading branch information
kimgr committed Dec 15, 2021
1 parent c60d50d commit a642623
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -35,7 +35,7 @@ def get_version():
],
platforms=['any'],
install_requires=[
'pyparsing>=2.0.0',
'pyparsing >=2.0.0, !=3.0.5, !=3.0.6',
],
classifiers=[
'Development Status :: 3 - Alpha',
Expand Down

0 comments on commit a642623

Please sign in to comment.