Skip to content

Commit fd8ca6f

Browse files
author
Joe Hamman
authored
Merge branch 'master' into fix_consolidate_metadata_read_only_store
2 parents 2bd18ed + 5f7e2b6 commit fd8ca6f

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

requirements_dev_numpy.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Break this out into a separate file to allow testing against
22
# different versions of numpy. This file should pin to the latest
33
# numpy version.
4-
numpy==1.21.4
4+
numpy==1.21.5

requirements_dev_optional.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,6 @@ pytest-cov==3.0.0
1919
pytest-doctestplus==0.11.2
2020
pytest-timeout==2.0.2
2121
h5py==3.6.0
22-
fsspec[s3]==2021.11.1
22+
fsspec==2021.11.1
23+
s3fs==2021.11.1
2324
moto[server]>=1.3.14

zarr/tests/test_storage.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1156,8 +1156,8 @@ def s3(request):
11561156
pytest.importorskip("moto")
11571157

11581158
port = 5555
1159-
endpoint_uri = 'http://127.0.0.1:%s/' % port
1160-
proc = subprocess.Popen(shlex.split("moto_server s3 -p %s" % port),
1159+
endpoint_uri = 'http://127.0.0.1:%d/' % port
1160+
proc = subprocess.Popen(shlex.split("moto_server s3 -p %d" % port),
11611161
stderr=subprocess.DEVNULL, stdout=subprocess.DEVNULL)
11621162

11631163
timeout = 5

0 commit comments

Comments
 (0)