Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

explain aiofiles dependency #135

Merged
merged 1 commit into from
Apr 7, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 7 additions & 2 deletions setup.py
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