From b11a0af84a849e530732edd35fb827cb6158873a Mon Sep 17 00:00:00 2001 From: jmoore Date: Tue, 21 Dec 2021 11:11:52 +0100 Subject: [PATCH] Drop shortcut `fsspec[s3]` for dependency Use of the short rather than `fsspec` and `s3fs` separately leads to an old version of s3fs being installed. (The benefit of the shortcut is that it prevents dependabot PRs from failing.) see: * https://github.com/fsspec/s3fs/issues/528 * https://github.com/zarr-developers/zarr-python/pull/914 --- requirements_dev_optional.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements_dev_optional.txt b/requirements_dev_optional.txt index da300495d6..59b9ae035b 100644 --- a/requirements_dev_optional.txt +++ b/requirements_dev_optional.txt @@ -19,5 +19,6 @@ pytest-cov==3.0.0 pytest-doctestplus==0.11.2 pytest-timeout==2.0.2 h5py==3.6.0 -fsspec[s3]==2021.11.1 +fsspec==2021.11.1 +s3fs==2021.11.1 moto[server]>=1.3.14