Skip to content

Commit 8acf83a

Browse files
committed
fix requirements
1 parent 3d3cb2f commit 8acf83a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

requirements_dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ python-dateutil==2.7.3
4646
readme-renderer==22.0
4747
requests==2.19.1
4848
requests-toolbelt==0.8.0
49-
setuptools-scm=3.1.0
49+
setuptools-scm==3.1.0
5050
s3fs==0.1.6
5151
s3transfer==0.1.13
5252
scandir==1.9.0

zarr/tests/test_convenience.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import atexit
55
import os
66
import unittest
7+
from numbers import Integral
78

89

910
import numpy as np
@@ -136,7 +137,7 @@ def test_consolidate_metadata():
136137
cmd['.zgroup'] = None
137138

138139
# test getsize on the store
139-
assert isinstance(getsize(cmd), int)
140+
assert isinstance(getsize(cmd), Integral)
140141

141142
# test new metadata are not writeable
142143
with pytest.raises(PermissionError):

0 commit comments

Comments
 (0)