You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2020/08/06 19:41:02 UTC

[airflow] 01/01: Pin fsspec<8.0.0 for Python <3.6 to fix Static Checks

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

kaxilnaik pushed a commit to branch v1-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit badd86ae4ed9b002265f474674bad9371e22f9a0
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Thu Aug 6 20:19:35 2020 +0100

    Pin fsspec<8.0.0 for Python <3.6 to fix Static Checks
---
 setup.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 327e157..af6f5ab 100644
--- a/setup.py
+++ b/setup.py
@@ -325,7 +325,8 @@ pagerduty = [
 papermill = [
     'papermill[all]>=1.0.0',
     'nteract-scrapbook[all]>=0.2.1',
-    'pyarrow<1.0.0'
+    'pyarrow<1.0.0',
+    'fsspec<0.8.0;python_version<"3.6"'
 ]
 password = [
     'bcrypt>=2.0.0',