From 06a487988a6ea65be0490d76e51ce0e501f5a20b Mon Sep 17 00:00:00 2001 From: Batuhan Taskaya Date: Thu, 18 Mar 2021 17:25:48 +0300 Subject: [PATCH 1/4] ci: run py36 on the github actions --- .github/workflows/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 4fefe6c27..ffba1f084 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - TOXENV: [py37, py38, s3fs, gcsfs] + TOXENV: [py36, py37, py38, s3fs, gcsfs] env: TOXENV: ${{ matrix.TOXENV }} From d4fa3e6927c01dee2defe54aced57abcd04acd63 Mon Sep 17 00:00:00 2001 From: Batuhan Taskaya Date: Thu, 18 Mar 2021 22:05:11 +0300 Subject: [PATCH 2/4] downgraph python_requires to 3.6>= --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8a5869704..8c5f1e09b 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ license="BSD", keywords="file", packages=["fsspec", "fsspec.implementations"], - python_requires=">=3.7", + python_requires=">=3.6", install_requires=open("requirements.txt").read().strip().split("\n"), extras_require={ ":python_version < '3.8'": ["importlib_metadata"], From 146de635751fc2ce546d44661927a513eabac507 Mon Sep 17 00:00:00 2001 From: Batuhan Taskaya Date: Thu, 18 Mar 2021 22:21:18 +0300 Subject: [PATCH 3/4] bump arrow --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index dbe777b2c..86c32a614 100644 --- a/tox.ini +++ b/tox.ini @@ -16,7 +16,7 @@ conda_deps= lz4 distributed dask - pyarrow + 'pyarrow >= 1' panel notebook pygit2 From be300b38339f28eaa9c79c0a0f7a9baa0cf91465 Mon Sep 17 00:00:00 2001 From: Batuhan Taskaya Date: Thu, 18 Mar 2021 23:15:11 +0300 Subject: [PATCH 4/4] bump in setup too --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8c5f1e09b..6398e33ce 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ "git": ["pygit2"], "github": ["requests"], "gs": ["gcsfs"], - "hdfs": ["pyarrow"], + "hdfs": ["pyarrow >= 1"], "http": ["requests", "aiohttp"], "sftp": ["paramiko"], "s3": ["s3fs"],