Skip to content

Commit fe77e34

Browse files
jorisvandenbosschejreback
authored andcommitted
CI: ensure proper coverage of different pyarrow versions (#30039)
1 parent 6b189d7 commit fe77e34

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

ci/deps/azure-36-locale.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ dependencies:
2727
- xlrd=1.1.0
2828
- xlsxwriter=0.9.8
2929
- xlwt=1.2.0
30+
# lowest supported version of pyarrow (putting it here instead of in
31+
# azure-36-minimum_versions because it needs numpy >= 1.14)
32+
- pyarrow=0.12
3033
- pip
3134
- pip:
3235
- html5lib==1.0b2

ci/deps/azure-37-locale.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
name: pandas-dev
22
channels:
3-
- defaults
43
- conda-forge
54
dependencies:
65
- python=3.7.*
@@ -33,3 +32,4 @@ dependencies:
3332
- xlrd
3433
- xlsxwriter
3534
- xlwt
35+
- pyarrow>=0.15

ci/deps/travis-36-cov.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ dependencies:
3333
# https://github.com/pydata/pandas-gbq/issues/271
3434
- google-cloud-bigquery<=1.11
3535
- psycopg2
36-
# pyarrow segfaults on load: https://github.com/pandas-dev/pandas/issues/26716
37-
# - pyarrow=0.9.0
36+
- pyarrow>=0.12.0
3837
- pymysql
3938
- pytables
4039
- python-snappy

pandas/tests/io/test_parquet.py

+1
Original file line numberDiff line numberDiff line change
@@ -504,6 +504,7 @@ def test_empty_dataframe(self, pa):
504504
df = pd.DataFrame()
505505
check_round_trip(df, pa)
506506

507+
@pytest.mark.skip(reason="broken test")
507508
@td.skip_if_no("pyarrow", min_version="0.15.0")
508509
def test_additional_extension_arrays(self, pa):
509510
# test additional ExtensionArrays that are supported through the

0 commit comments

Comments
 (0)