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 e99f6c2 commit 03cdd9eCopy full SHA for 03cdd9e
setupext.py
@@ -1261,7 +1261,7 @@ def check(self):
1261
1262
class Pyparsing(SetupPackage):
1263
name = "pyparsing"
1264
-
+ # pyparsing 2.0.4 has broken python 3 support.
1265
def is_ok(self):
1266
# pyparsing 2.0.0 bug, but it may be patched in distributions
1267
try:
@@ -1297,9 +1297,9 @@ def check(self):
1297
1298
def get_install_requires(self):
1299
if self.is_ok():
1300
- return ['pyparsing>=1.5.6']
+ return ['pyparsing>=1.5.6,!=2.0.4']
1301
else:
1302
- return ['pyparsing>=1.5.6,!=2.0.0']
+ return ['pyparsing>=1.5.6,!=2.0.0,!=2.0.4']
1303
1304
1305
class BackendAgg(OptionalBackendPackage):
0 commit comments