Skip to content

Commit

Permalink
Updating aiohttp in requirements.txt
Browse files Browse the repository at this point in the history
While attempting to install Caldera, I ran into this exact issue with Aiohttp -- it appears to be a very recent change: aio-libs/yarl#161

```
  File "caldera.py", line 16, in <module>
    from app import server
  File "/home/vagrant/caldera/caldera/app/server.py", line 13, in <module>
    from aiohttp import web, WSCloseCode
  File "/usr/local/lib/python3.5/dist-packages/aiohttp/web.py", line 15, in <module>
    from . import (hdrs, web_exceptions, web_fileresponse, web_middlewares,
  File "/usr/local/lib/python3.5/dist-packages/aiohttp/web_middlewares.py", line 5, in <module>
    from aiohttp.web_urldispatcher import SystemRoute
  File "/usr/local/lib/python3.5/dist-packages/aiohttp/web_urldispatcher.py", line 20, in <module>
    from yarl import URL, unquote
```

Updating aiohttp to 2.3.8 fixed the issue for me.
  • Loading branch information
clong authored Jan 16, 2018
1 parent e51e710 commit 0111589
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions caldera/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
requests==2.18.4
pyyaml==3.12
pymongo==3.5.1
aiohttp==2.3.2
aiohttp==2.3.8
aiohttp_jinja2==0.14.0
cryptography==2.1.3
itsdangerous==0.24
mongoengine==0.15.0
pyDatalog==0.17.1
ujson==1.35
unification==0.2.2
antlr4-python3-runtime==4.7
antlr4-python3-runtime==4.7

0 comments on commit 0111589

Please sign in to comment.