Skip to content

Commit 6437f5e

Browse files
COMPAT: bump minimum version to pyarrow 0.13 (#30812)
1 parent 510d9f6 commit 6437f5e

File tree

9 files changed

+9
-8
lines changed

9 files changed

+9
-8
lines changed

ci/deps/azure-36-locale.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies:
2727
- openpyxl
2828
# lowest supported version of pyarrow (putting it here instead of in
2929
# azure-36-minimum_versions because it needs numpy >= 1.14)
30-
- pyarrow=0.12
30+
- pyarrow=0.13
3131
- pytables
3232
- python-dateutil
3333
- pytz

ci/deps/azure-macos-36.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dependencies:
2222
- numexpr
2323
- numpy=1.14
2424
- openpyxl
25-
- pyarrow>=0.12.0
25+
- pyarrow>=0.13.0
2626
- pytables
2727
- python-dateutil==2.6.1
2828
- pytz

ci/deps/azure-windows-36.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dependencies:
2222
- numpy=1.15.*
2323
- openpyxl
2424
- jinja2
25-
- pyarrow>=0.12.0
25+
- pyarrow>=0.13.0
2626
- pytables
2727
- python-dateutil
2828
- pytz

ci/deps/azure-windows-37.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ dependencies:
2424
- numexpr
2525
- numpy=1.14.*
2626
- openpyxl
27+
- pyarrow=0.14
2728
- pytables
2829
- python-dateutil
2930
- pytz

ci/deps/travis-36-cov.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dependencies:
3131
# https://github.com/pandas-dev/pandas/pull/30009 openpyxl 3.0.2 broke
3232
- pandas-gbq
3333
- psycopg2
34-
- pyarrow>=0.12.0
34+
- pyarrow>=0.13.0
3535
- pymysql
3636
- pytables
3737
- python-snappy

doc/source/whatsnew/v1.0.0.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ Optional libraries below the lowest tested version may still work, but are not c
530530
+-----------------+-----------------+---------+
531531
| openpyxl | 2.5.7 | X |
532532
+-----------------+-----------------+---------+
533-
| pyarrow | 0.12.0 | X |
533+
| pyarrow | 0.13.0 | X |
534534
+-----------------+-----------------+---------+
535535
| pymysql | 0.7.1 | |
536536
+-----------------+-----------------+---------+

pandas/compat/_optional.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"odfpy": "1.3.0",
1717
"openpyxl": "2.5.7",
1818
"pandas_gbq": "0.8.0",
19-
"pyarrow": "0.12.0",
19+
"pyarrow": "0.13.0",
2020
"pytables": "3.4.2",
2121
"pytest": "5.0.1",
2222
"s3fs": "0.3.0",

pandas/tests/extension/arrow/test_bool.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import pandas._testing as tm
66
from pandas.tests.extension import base
77

8-
pytest.importorskip("pyarrow", minversion="0.12.0")
8+
pytest.importorskip("pyarrow", minversion="0.13.0")
99

1010
from .arrays import ArrowBoolArray, ArrowBoolDtype # isort:skip
1111

pandas/tests/extension/arrow/test_string.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import pandas as pd
44

5-
pytest.importorskip("pyarrow", minversion="0.12.0")
5+
pytest.importorskip("pyarrow", minversion="0.13.0")
66

77
from .arrays import ArrowStringDtype # isort:skip
88

0 commit comments

Comments
 (0)