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:21:22 UTC

[airflow] branch v1-10-test updated: 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


The following commit(s) were added to refs/heads/v1-10-test by this push:
     new 2f4d872  Pin fsspec<8.0.0 for Python <3.6 to fix Static Checks
2f4d872 is described below

commit 2f4d8727e38e1a8a60a1c8889e74f60e387d3b73
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..b4d1374 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<8.0.0;python_version<"3.6"'
 ]
 password = [
     'bcrypt>=2.0.0',