Skip to content

Commit

Permalink
deps: expand supported pyarrow versions to v4 (#643)
Browse files Browse the repository at this point in the history
* deps: expand supported pyarrow versions to v4

* Expand *all* pyarrow pins.

* Constrain pyarrow to v4.0.0+ in Python 3.9 tests
  • Loading branch information
plamut committed May 5, 2021
1 parent 6cc6876 commit 9e1d386
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -47,10 +47,10 @@
# grpc.Channel.close() method isn't added until 1.32.0.
# https://github.com/grpc/grpc/pull/15254
"grpcio >= 1.32.0, < 2.0dev",
"pyarrow >= 1.0.0, < 4.0dev",
"pyarrow >= 1.0.0, < 5.0dev",
],
"pandas": ["pandas>=0.23.0", "pyarrow >= 1.0.0, < 4.0dev"],
"bignumeric_type": ["pyarrow >= 3.0.0, < 4.0dev"],
"pandas": ["pandas>=0.23.0", "pyarrow >= 1.0.0, < 5.0dev"],
"bignumeric_type": ["pyarrow >= 3.0.0, < 5.0dev"],
"tqdm": ["tqdm >= 4.7.4, <5.0.0dev"],
"opentelemetry": [
"opentelemetry-api >= 0.11b0",
Expand Down
7 changes: 7 additions & 0 deletions testing/constraints-3.9.txt
@@ -0,0 +1,7 @@
# This constraints file is used to make sure that the latest dependency versions
# we claim to support in setup.py are indeed installed in test sessions in the most
# recent Python version supported (3.9 at the time of writing - 2021-05-05).
#
# NOTE: Not comprehensive yet, will eventually be maintained semi-automatically by
# the renovate bot.
pyarrow>=4.0.0

0 comments on commit 9e1d386

Please sign in to comment.