Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68ee05e commit 5ca9060Copy full SHA for 5ca9060
1 file changed
setupext.py
@@ -939,7 +939,8 @@ def get_install_requires(self):
939
if sys.version_info[0] >= 3:
940
return ['pyparsing>=2.0.0']
941
else:
942
- return ['pyparsing>=1.5.6,<=1.5.7']
+ # pyparsing >= 2.0.0 is not compatible with Python 2
943
+ return ['pyparsing>=1.5.6,<2.0.0']
944
945
946
class BackendAgg(OptionalBackendPackage):
0 commit comments