Skip to content

Commit

Permalink
Improve dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Mar 6, 2021
1 parent af99973 commit a64a53b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGES.rst
Expand Up @@ -9,6 +9,7 @@ in progress
- Get rid of the "httptools" dependency
- Store the image format for later reuse directly after reading the original image
- Run black and isort on the code base
- Improve dependencies


2020-06-08 0.3.0
Expand Down
12 changes: 6 additions & 6 deletions setup.py
Expand Up @@ -48,16 +48,16 @@
},
zip_safe=False,
install_requires=[
"docopt==0.6.2",
"munch==2.3.2",
"Pillow==7.1.2",
"requests==2.23.0",
"docopt>=0.6,<1",
"munch>=2.3,<3",
"Pillow>=8,<9",
"requests>=2.23,<3",
"requests-cache>=0.5,<0.6",
],
extras_require={
"service": [
"fastapi==0.55.1",
"uvicorn==0.11.5",
"fastapi>=0.55.1,<0.64",
"uvicorn<=0.13.3",
],
},
entry_points={
Expand Down

0 comments on commit a64a53b

Please sign in to comment.