File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -64,9 +64,9 @@ install:
64
64
pip install --upgrade setuptools
65
65
# Install only from travis wheelhouse
66
66
- if [ -z "$PRE" ]; then
67
- wheelhouse_pip_install python-dateutil $NUMPY $PANDAS pyparsing pillow sphinx!=1.3.0;
67
+ wheelhouse_pip_install python-dateutil $NUMPY $PANDAS pyparsing!=2.0.4 pillow sphinx!=1.3.0;
68
68
else
69
- pip install $PRE python-dateutil $NUMPY pyparsing pillow sphinx!=1.3.0;
69
+ pip install $PRE python-dateutil $NUMPY pyparsing!=2.0.4 pillow sphinx!=1.3.0;
70
70
fi
71
71
# Always install from pypi
72
72
- pip install $PRE pep8 cycler
Original file line number Diff line number Diff line change @@ -1238,7 +1238,7 @@ def check(self):
1238
1238
1239
1239
class Pyparsing (SetupPackage ):
1240
1240
name = "pyparsing"
1241
-
1241
+ # pyparsing 2.0.4 has broken python 3 support.
1242
1242
def is_ok (self ):
1243
1243
# pyparsing 2.0.0 bug, but it may be patched in distributions
1244
1244
try :
@@ -1274,9 +1274,9 @@ def check(self):
1274
1274
1275
1275
def get_install_requires (self ):
1276
1276
if self .is_ok ():
1277
- return ['pyparsing>=1.5.6' ]
1277
+ return ['pyparsing>=1.5.6,!=2.0.4 ' ]
1278
1278
else :
1279
- return ['pyparsing>=1.5.6,!=2.0.0' ]
1279
+ return ['pyparsing>=1.5.6,!=2.0.0,!=2.0.4 ' ]
1280
1280
1281
1281
1282
1282
class BackendAgg (OptionalBackendPackage ):
You can’t perform that action at this time.
0 commit comments