Skip to content

Commit

Permalink
Update fsspec, gcsfs, s3fs (dask#5588)
Browse files Browse the repository at this point in the history
The most recent versions fix some hard to diagnose issues. Best to
update our minimum versions.
  • Loading branch information
TomAugspurger authored and jrbourbeau committed Nov 13, 2019
1 parent 830e692 commit 9c72876
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion continuous_integration/appveyor/environment.yaml
Expand Up @@ -18,7 +18,7 @@ dependencies:
- lz4
- psutil
- pytables
- fsspec>=0.5.1
- fsspec==0.6.0
- s3fs
- scipy
- fastparquet
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/travis/travis-36.yaml
Expand Up @@ -17,7 +17,7 @@ dependencies:
# - fastparquet
- h5py
- pytables
- fsspec>=0.5.1
- fsspec==0.6.0
- zarr
- tiledb-py
- sqlalchemy
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/travis/travis-37-dev.yaml
Expand Up @@ -23,7 +23,7 @@ dependencies:
- bcolz
- blosc
- s3fs
- fsspec>=0.5.1
- fsspec>=0.6.0
- boto3
- botocore
- bokeh
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/travis/travis-37.yaml
Expand Up @@ -16,7 +16,7 @@ dependencies:
- pytables
- zarr
- tiledb-py
- fsspec>=0.5.1
- fsspec>=0.6.0
- sqlalchemy
- pyarrow>=0.14.0
- coverage
Expand Down
6 changes: 3 additions & 3 deletions docs/source/install.rst
Expand Up @@ -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 |
+-------------+----------+--------------------------------------------------------------+
Expand All @@ -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 |
+-------------+----------+--------------------------------------------------------------+
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -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"
],
Expand All @@ -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"],
Expand Down

0 comments on commit 9c72876

Please sign in to comment.