python 3.6+ warning
See original GitHub issueWhen running with python 3.6+ I’m getting the following warning from pytest. It sounds like something that should be easy to alleviate.
venv/lib/python3.7/site-packages/fsspec/__init__.py:47
/home/vidstige/src/volumental-vaka/venv/lib/python3.7/site-packages/fsspec/__init__.py:47: DeprecationWarning: SelectableGroups dict interface is deprecated. Use select.
for spec in entry_points.get("fsspec.specs", []):
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
Warning control — Python 3.6.3 documentation - Read the Docs
Warning messages are normally written to sys.stderr , but their disposition can be changed flexibly, from ignoring all warnings to turning them into...
Read more >Python 3.6 is no longer supported by the Python core team
CryptographyDeprecationWarning: Python 3.6 is no longer supported by the Python core team - Stack Overflow. Stack Overflow for Teams – Start ...
Read more >What's New In Python 3.6 — Python 3.11.1 documentation
When a ResourceWarning warning is logged, the tracemalloc module is now used to try to retrieve the traceback where the destroyed object was...
Read more >Python 3.6 is no longer supported" warning on all Salt ... - Reddit
the warning is from an updated version of PyOpenSSL. and we are working to address the fact that redhat has not updated their...
Read more >Frequently asked questions — Cryptography 3.1 documentation
Note: Using cryptography.utils.CryptographyDeprecationWarning is not possible here because specifying it triggers import cryptography internally that emits ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Correct, and it will likely be dropped on the timescale of months.
Already trying to use select if available: https://github.com/fsspec/filesystem_spec/blob/00b812378461efc8ac273914a359ed4fdb1beb94/fsspec/__init__.py#L50 .