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 20:12:32 UTC

[airflow] branch v1-10-test updated: fixup! 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 a513964  fixup! Pin fsspec<8.0.0 for Python <3.6 to fix Static Checks
a513964 is described below

commit a5139645da073480d32bf799afd98947c3c12b3d
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Thu Aug 6 21:11:40 2020 +0100

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

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