-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Deprecation warnings in 3.8 #3273
Comments
GitMate.io thinks possibly related issues are #3252 (False-positive deprecation warning for partial async handlers), #1575 (Deprecation policy), #130 (Multiple Test Warnings on Python 3.4 (ResourceWarning / DeprecationWarning)), #2670 ([injection] 2.3.8 broke certain regex match patterns), and #1603 (1.3 Release). |
I'm getting the same warnings while writing tests for an application using Python 3.7 and pytest 3.8.0. |
Please do the patch! It's quite easy. |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a [new issue] for related bugs. |
/home/travis/virtualenv/python3.8-dev/lib/python3.8/site-packages/aiohttp/multipart.py:8: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working
from collections import Mapping, Sequence, deque
This is a safe change to make, collections.abc was introduced in 3.3.
The text was updated successfully, but these errors were encountered: