We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7bd2f8 commit 9f76d35Copy full SHA for 9f76d35
ci/cpp-python-msvc-build.bat
@@ -68,8 +68,9 @@ if "%JOB%" == "Build_Debug" (
68
exit /B 0
69
)
70
71
+@rem Pandas pinned to 0.22.0 because of regression in 0.23.0 (ARROW-2589)
72
conda create -n arrow -q -y python=%PYTHON% ^
- six pytest setuptools numpy pandas cython ^
73
+ six pytest setuptools numpy pandas=0.22.0 cython ^
74
thrift-cpp=0.11.0
75
76
call activate arrow
ci/travis_script_python.sh
@@ -36,11 +36,12 @@ source activate $CONDA_ENV_DIR
36
python --version
37
which python
38
39
+# Pandas pinned to 0.22.0 because of regression in 0.23.0 (ARROW-2589)
40
conda install -y -q pip \
41
nomkl \
42
cloudpickle \
43
numpy=1.13.1 \
- pandas \
44
+ pandas=0.22.0 \
45
cython
46
47
# ARROW-2093: PyTorch increases the size of our conda dependency stack
0 commit comments