-
-
Notifications
You must be signed in to change notification settings - Fork 170
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
Import error in aiohttp with yarl v1.0.0 #161
Comments
Ah sorry ... I just saw in the changelog that the drop was intentional. I'll leave the issue open just for reference. Feel free to close it if you prefer :) |
Just encountered this same problem, but it's not clear why these were dropped. Change log references #155 but doesn't explain why they were dropped. |
This private/public "collision" is a history of a year long... |
Unfortunately this has broken all my builds :( .. currently I'm trying to pin multidict and yarl to previous versions, but with no success .. not sure if I'm now hitting an issue with pipenv..
I have multidict pinned to 3.0.0 and yarl to 0.11.0 ... any ideas on how to get around this would be very welcome ... ! |
Ok, scratch that, managed to fix it by pinning aiohttp to 2.3.8 and unpinning yarl and multidict ... |
aiohttp is fixed |
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.
Hello,
with
yarl
v1.0.0 I get the following error when doingfrom aiohttp import web
:using
aiohttp-2.3.7
.The text was updated successfully, but these errors were encountered: