Skip to content

Commit

Permalink
Revert "chore: bump minimum pyarrow version"
Browse files Browse the repository at this point in the history
This reverts commit f44a6ae.
  • Loading branch information
judahrand committed Sep 22, 2021
1 parent b5f00f9 commit a7fb8fa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -54,11 +54,11 @@
# grpc.Channel.close() method isn't added until 1.32.0.
# https://github.com/grpc/grpc/pull/15254
"grpcio >= 1.38.1, < 2.0dev",
"pyarrow >= 4.0.0, < 6.0dev",
"pyarrow >= 3.0.0, < 6.0dev",
],
"geopandas": ["geopandas>=0.9.0, <1.0dev", "Shapely>=1.6.0, <2.0dev"],
"pandas": ["pandas>=0.23.0", "pyarrow >= 4.0.0, < 6.0dev"],
"bignumeric_type": ["pyarrow >= 4.0.0, < 6.0dev"],
"pandas": ["pandas>=0.23.0", "pyarrow >= 3.0.0, < 6.0dev"],
"bignumeric_type": ["pyarrow >= 3.0.0, < 6.0dev"],
"tqdm": ["tqdm >= 4.7.4, <5.0.0dev"],
"opentelemetry": [
"opentelemetry-api >= 0.11b0",
Expand Down
2 changes: 1 addition & 1 deletion testing/constraints-3.6.txt
Expand Up @@ -17,7 +17,7 @@ opentelemetry-sdk==0.11b0
pandas==0.24.2
proto-plus==1.10.0
protobuf==3.12.0
pyarrow==4.0.0
pyarrow==3.0.0
requests==2.18.0
Shapely==1.6.0
six==1.13.0
Expand Down
4 changes: 2 additions & 2 deletions tests/system/test_arrow.py
Expand Up @@ -23,8 +23,8 @@


pyarrow = pytest.importorskip(
"pyarrow", minversion="4.0.0"
) # Needs `use_compliant_nested_type` for `load_table_from_dataframe`.
"pyarrow", minversion="3.0.0"
) # Needs decimal256 for BIGNUMERIC columns.


@pytest.mark.parametrize(
Expand Down

0 comments on commit a7fb8fa

Please sign in to comment.