You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2021/03/14 19:03:40 UTC

[airflow] branch master updated: Fixes limits on Arrow for plexus test (#14781)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/master by this push:
     new 7fff3b1  Fixes limits on Arrow for plexus test (#14781)
7fff3b1 is described below

commit 7fff3b122b0158a365d889d31630dc88b5cdd220
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Sun Mar 14 20:03:26 2021 +0100

    Fixes limits on Arrow for plexus test (#14781)
    
    Arrow must be <1.0.0 for plexus to work
---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index c1f82d9..128fd99 100644
--- a/setup.py
+++ b/setup.py
@@ -391,7 +391,7 @@ pinot = [
     'pinotdb>0.1.2,<1.0.0',
 ]
 plexus = [
-    'arrow>=0.16.0',
+    'arrow>=0.16.0,<1.0.0',
 ]
 postgres = [
     'psycopg2-binary>=2.7.4',