-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
Broken aiohttp version in rewrite #1280
Comments
Getting this error?
This is due to yarl 1.2 having a breaking change that breaks aiohttp. Downgrade your yarl using |
In relation to fourjr's answer above, it may be necessary to downgrade even further Reference: aio-libs/aiohttp#2662 |
It may also be worth noting that you can reinstall aiohttp to the most recent version with zero issues instead. Been running three bots on rewrite for the past month and have yet to come across a problem with this. #892 seems to suggest the author is against updating, however. |
Fixed by bumping. |
I think that the
aiohttp
dependency version is broken in rewrite.The following Dockerfile produces the following traceback when the container is run (
src/app.py
simplyimport discord
):Upgrading aiohttp after the install to the most recent version resolves the issue, but the build warns that
discord-py 1.0.0a0 has requirement aiohttp<2.3.0,>=2.0.0, but you'll have aiohttp 3.2.1 which is incompatible.
The text was updated successfully, but these errors were encountered: