-
Notifications
You must be signed in to change notification settings - Fork 0
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
Revisit filtered warnings #319
Comments
See pypa/pip#9250
|
See microsoft/vscode-python#16756.
|
Pre-commit emits some deprecation warnings when installing hooks.
|
Google Cloud (
|
|
|
|
|
|
See hhatto/autopep8#581.
|
|
|
|
See zeromq/pyzmq#1830 and python/cpython#77373. This is how it would be filtered:
See also this SO comment recommending the following solution: import platform
if platform.system() == "Windows":
import asyncio
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy()) |
|
|
|
(
r"distutils Version classes are deprecated\. Use packaging\.version instead\.",
DeprecationWarning,
),
(
r"unclosed file <_io\.BufferedReader name='.*'>",
ResourceWarning,
), |
Now that warning management is simplified, this no longer needs to be tracked. |
This long-lived issue will track filtered warnings for eventual un-filtering.
See pypa/setuptools#3837.
The text was updated successfully, but these errors were encountered: