File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -68,8 +68,9 @@ if "%JOB%" == "Build_Debug" (
68
68
exit /B 0
69
69
)
70
70
71
+ @ rem Pandas pinned to 0.22.0 because of regression in 0.23.0 (ARROW-2589)
71
72
conda create -n arrow -q -y python=%PYTHON% ^
72
- six pytest setuptools numpy pandas cython ^
73
+ six pytest setuptools numpy pandas=0.22.0 cython ^
73
74
thrift-cpp=0.11.0
74
75
75
76
call activate arrow
Original file line number Diff line number Diff line change @@ -36,11 +36,12 @@ source activate $CONDA_ENV_DIR
36
36
python --version
37
37
which python
38
38
39
+ # Pandas pinned to 0.22.0 because of regression in 0.23.0 (ARROW-2589)
39
40
conda install -y -q pip \
40
41
nomkl \
41
42
cloudpickle \
42
43
numpy=1.13.1 \
43
- pandas \
44
+ pandas=0.22.0 \
44
45
cython
45
46
46
47
# ARROW-2093: PyTorch increases the size of our conda dependency stack
You can’t perform that action at this time.
0 commit comments