Skip to content

Commit f44a6ae

Browse files
committed
chore: bump minimum pyarrow version
1 parent 62fd565 commit f44a6ae

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@
5454
# grpc.Channel.close() method isn't added until 1.32.0.
5555
# https://github.com/grpc/grpc/pull/15254
5656
"grpcio >= 1.38.1, < 2.0dev",
57-
"pyarrow >= 3.0.0, < 6.0dev",
57+
"pyarrow >= 4.0.0, < 6.0dev",
5858
],
5959
"geopandas": ["geopandas>=0.9.0, <1.0dev", "Shapely>=1.6.0, <2.0dev"],
60-
"pandas": ["pandas>=0.23.0", "pyarrow >= 3.0.0, < 6.0dev"],
61-
"bignumeric_type": ["pyarrow >= 3.0.0, < 6.0dev"],
60+
"pandas": ["pandas>=0.23.0", "pyarrow >= 4.0.0, < 6.0dev"],
61+
"bignumeric_type": ["pyarrow >= 4.0.0, < 6.0dev"],
6262
"tqdm": ["tqdm >= 4.7.4, <5.0.0dev"],
6363
"opentelemetry": [
6464
"opentelemetry-api >= 0.11b0",

testing/constraints-3.6.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ opentelemetry-sdk==0.11b0
1717
pandas==0.24.2
1818
proto-plus==1.10.0
1919
protobuf==3.12.0
20-
pyarrow==3.0.0
20+
pyarrow==4.0.0
2121
requests==2.18.0
2222
Shapely==1.6.0
2323
six==1.13.0

tests/system/test_arrow.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323

2424

2525
pyarrow = pytest.importorskip(
26-
"pyarrow", minversion="3.0.0"
27-
) # Needs decimal256 for BIGNUMERIC columns.
26+
"pyarrow", minversion="4.0.0"
27+
) # Needs `use_compliant_nested_type` for `load_table_from_dataframe`.
2828

2929

3030
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)