Skip to content

Commit f9a552d

Browse files
committed
CI: partially revert #17065, un-pin pyarrow on some builds
1 parent e2588d9 commit f9a552d

5 files changed

+5
-5
lines changed

ci/requirements-2.7_BUILD_TEST.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ source activate pandas
44

55
echo "install 27 BUILD_TEST"
66

7-
conda install -n pandas -c conda-forge pyarrow=0.4.1 dask
7+
conda install -n pandas -c conda-forge pyarrow dask

ci/requirements-3.6.run

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jinja2
1515
sqlalchemy
1616
pymysql
1717
feather-format
18-
pyarrow=0.4.1
18+
pyarrow
1919
# psycopg2 (not avail on defaults ATM)
2020
beautifulsoup4
2121
s3fs

ci/requirements-3.6_DOC.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ echo "[install DOC_BUILD deps]"
66

77
pip install pandas-gbq
88

9-
conda install -n pandas -c conda-forge feather-format pyarrow=0.4.1 nbsphinx pandoc
9+
conda install -n pandas -c conda-forge feather-format pyarrow nbsphinx pandoc
1010

1111
conda install -n pandas -c r r rpy2 --yes

ci/requirements-3.6_WIN.run

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ xlrd
88
xlwt
99
scipy
1010
feather-format
11-
pyarrow=0.4.1
11+
pyarrow
1212
numexpr
1313
pytables
1414
matplotlib

pandas/util/_print_versions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ def show_versions(as_json=False):
6969
("Cython", lambda mod: mod.__version__),
7070
("numpy", lambda mod: mod.version.version),
7171
("scipy", lambda mod: mod.version.version),
72+
("pyarrow", lambda mod: mod.__version__),
7273
("xarray", lambda mod: mod.__version__),
7374
("IPython", lambda mod: mod.__version__),
7475
("sphinx", lambda mod: mod.__version__),
@@ -95,7 +96,6 @@ def show_versions(as_json=False):
9596
("s3fs", lambda mod: mod.__version__),
9697
("pandas_gbq", lambda mod: mod.__version__),
9798
("pandas_datareader", lambda mod: mod.__version__),
98-
("pyarrow", lambda mod: mod.__version__),
9999
]
100100

101101
deps_blob = list()

0 commit comments

Comments
 (0)