File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -62,9 +62,9 @@ install:
62
62
pip install --upgrade setuptools
63
63
# Install only from travis wheelhouse
64
64
- if [ -z "$PRE" ]; then
65
- wheelhouse_pip_install python-dateutil $NUMPY $PANDAS pyparsing pillow sphinx!=1.3.0 $MOCK;
65
+ wheelhouse_pip_install python-dateutil $NUMPY $PANDAS pyparsing!=2.0.4 pillow sphinx!=1.3.0 $MOCK;
66
66
else
67
- pip install $PRE python-dateutil $NUMPY pyparsing pillow sphinx!=1.3.0;
67
+ pip install $PRE python-dateutil $NUMPY pyparsing!=2.0.4 pillow sphinx!=1.3.0;
68
68
fi
69
69
# Always install from pypi
70
70
- pip install $PRE pep8 cycler
Original file line number Diff line number Diff line change @@ -1261,7 +1261,7 @@ def check(self):
1261
1261
1262
1262
class Pyparsing (SetupPackage ):
1263
1263
name = "pyparsing"
1264
-
1264
+ # pyparsing 2.0.4 has broken python 3 support.
1265
1265
def is_ok (self ):
1266
1266
# pyparsing 2.0.0 bug, but it may be patched in distributions
1267
1267
try :
@@ -1297,9 +1297,9 @@ def check(self):
1297
1297
1298
1298
def get_install_requires (self ):
1299
1299
if self .is_ok ():
1300
- return ['pyparsing>=1.5.6' ]
1300
+ return ['pyparsing>=1.5.6,!=2.0.4 ' ]
1301
1301
else :
1302
- return ['pyparsing>=1.5.6,!=2.0.0' ]
1302
+ return ['pyparsing>=1.5.6,!=2.0.0,!=2.0.4 ' ]
1303
1303
1304
1304
1305
1305
class BackendAgg (OptionalBackendPackage ):
You can’t perform that action at this time.
0 commit comments