Skip to content

Commit

Permalink
explain aiofiles dependency (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
mccalluc committed Apr 7, 2022
1 parent 78c2672 commit 3fd122a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,20 @@
'ipywidgets>=7.6.0',
'hypercorn>=0.11.0',
'ujson>=4.0.1',
'aiofiles>=0.6.0',
'starlette==0.14.0',
'zarr>=2.5.0',
'numcodecs>=0.5.7',
'scipy>=1.2.1',
'negspy>=0.2.24',
'generate-tiff-offsets>=0.1.7',
'pandas>=1.1.2',
'black>=21.11b1'
'black>=21.11b1',

# aiofiles is not explicitly referenced in our code,
# but it is an implicit dependency of starlette==0.14.0.
# https://github.com/encode/starlette/issues/49
# Upgrading starlette will remove this dependency.
'aiofiles>=0.6.0'
],
packages=find_packages(),
zip_safe=False,
Expand Down

0 comments on commit 3fd122a

Please sign in to comment.