diff --git a/continuous_integration/appveyor/environment.yaml b/continuous_integration/appveyor/environment.yaml index 5990938d5f8..0012dd5229c 100644 --- a/continuous_integration/appveyor/environment.yaml +++ b/continuous_integration/appveyor/environment.yaml @@ -18,7 +18,7 @@ dependencies: - lz4 - psutil - pytables - - fsspec>=0.5.1 + - fsspec==0.6.0 - s3fs - scipy - fastparquet diff --git a/continuous_integration/travis/travis-36.yaml b/continuous_integration/travis/travis-36.yaml index e11c807c6a0..6a07d576f6f 100644 --- a/continuous_integration/travis/travis-36.yaml +++ b/continuous_integration/travis/travis-36.yaml @@ -17,7 +17,7 @@ dependencies: # - fastparquet - h5py - pytables - - fsspec>=0.5.1 + - fsspec==0.6.0 - zarr - tiledb-py - sqlalchemy diff --git a/continuous_integration/travis/travis-37-dev.yaml b/continuous_integration/travis/travis-37-dev.yaml index 1978d439635..cef998c8d68 100644 --- a/continuous_integration/travis/travis-37-dev.yaml +++ b/continuous_integration/travis/travis-37-dev.yaml @@ -23,7 +23,7 @@ dependencies: - bcolz - blosc - s3fs - - fsspec>=0.5.1 + - fsspec>=0.6.0 - boto3 - botocore - bokeh diff --git a/continuous_integration/travis/travis-37.yaml b/continuous_integration/travis/travis-37.yaml index 803b8fa220a..d7921b6a024 100644 --- a/continuous_integration/travis/travis-37.yaml +++ b/continuous_integration/travis/travis-37.yaml @@ -16,7 +16,7 @@ dependencies: - pytables - zarr - tiledb-py - - fsspec>=0.5.1 + - fsspec>=0.6.0 - sqlalchemy - pyarrow>=0.14.0 - coverage diff --git a/docs/source/install.rst b/docs/source/install.rst index 62ccef30e12..3414a8a288c 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -96,9 +96,9 @@ These optional dependencies and their minimum supported versions are listed belo +-------------+----------+--------------------------------------------------------------+ | fastparquet | | Storing and reading data from parquet files | +-------------+----------+--------------------------------------------------------------+ -| fsspec | >=0.5.1 | Used for local, cluster and remote data IO | +| fsspec | >=0.6.0 | Used for local, cluster and remote data IO | +-------------+----------+--------------------------------------------------------------+ -| gcsfs | | File-system interface to Google Cloud Storage | +| gcsfs | >=0.4.0 | File-system interface to Google Cloud Storage | +-------------+----------+--------------------------------------------------------------+ | murmurhash | | Faster hashing of arrays | +-------------+----------+--------------------------------------------------------------+ @@ -112,7 +112,7 @@ These optional dependencies and their minimum supported versions are listed belo +-------------+----------+--------------------------------------------------------------+ | pyarrow | >=0.14.0 | Python library for Apache Arrow | +-------------+----------+--------------------------------------------------------------+ -| s3fs | | Reading from Amazon S3 | +| s3fs | >=0.4.0 | Reading from Amazon S3 | +-------------+----------+--------------------------------------------------------------+ | sqlalchemy | | Writing and reading from SQL databases | +-------------+----------+--------------------------------------------------------------+ diff --git a/setup.py b/setup.py index 117c2ac3023..956142912b9 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ "array": ["numpy >= 1.13.0", "toolz >= 0.7.3"], "bag": [ "cloudpickle >= 0.2.1", - "fsspec >= 0.5.1", + "fsspec >= 0.6.0", "toolz >= 0.7.3", "partd >= 0.3.10" ], @@ -20,7 +20,7 @@ "pandas >= 0.21.0", "toolz >= 0.7.3", "partd >= 0.3.10", - "fsspec >= 0.5.1", + "fsspec >= 0.6.0", ], "distributed": ["distributed >= 2.0"], "diagnostics": ["bokeh >= 1.0.0"],