Skip to content

Commit

Permalink
Merge pull request #127 from sbesson/aiohttp
Browse files Browse the repository at this point in the history
Cap aiohttp to 3.x versions
  • Loading branch information
joshmoore authored Dec 10, 2021
2 parents d738d17 + afe173c commit 5c43ff5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ def read(fname):
install_requires += (["dask"],)
install_requires += (["zarr>=2.8.1"],)
install_requires += (["fsspec[s3]!=2021.07.0"],)
install_requires += (["aiohttp"],)
# See https://github.com/fsspec/filesystem_spec/issues/819
install_requires += (["aiohttp<4"],)
install_requires += (["requests"],)
install_requires += (["scikit-image"],)
install_requires += (["toolz"],)
Expand Down

0 comments on commit 5c43ff5

Please sign in to comment.