File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,6 @@ install:
78
78
- SET REQ=ci\requirements-%PYTHON_VERSION%_WIN.run
79
79
- cmd : echo "installing requirements from %REQ%"
80
80
- cmd : conda install -n pandas --file=%REQ%
81
- - cmd : conda install bzip2 # XXX: remove when fixed in defaults
82
81
- cmd : conda list -n pandas
83
82
- cmd : echo "installing requirements from %REQ% - done"
84
83
Original file line number Diff line number Diff line change @@ -799,6 +799,10 @@ def test_complibs(self):
799
799
# Remove lzo if its not available on this platform
800
800
if not tables .which_lib_version ('lzo' ):
801
801
all_complibs .remove ('lzo' )
802
+ # Remove bzip2 if its not available on this platform
803
+ if not tables .which_lib_version ("bzip2" ):
804
+ all_complibs .remove ("bzip2" )
805
+
802
806
all_levels = range (0 , 10 )
803
807
all_tests = [(lib , lvl ) for lib in all_complibs for lvl in all_levels ]
804
808
You can’t perform that action at this time.
0 commit comments