We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
pkg_resources
Currently this uses pkg_resources, which is planned to go away:
streamz/streamz/plugins.py
Line 3 in b73a8c4
The code using it mainly uses the iter_entry_points function:
iter_entry_points
Lines 17 to 22 in b73a8c4
This could be replaced by importlib.metadata.entry_points, which has been around since Python 3.8.
importlib.metadata.entry_points
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently this uses
pkg_resources
, which is planned to go away:streamz/streamz/plugins.py
Line 3 in b73a8c4
The code using it mainly uses the
iter_entry_points
function:streamz/streamz/plugins.py
Lines 17 to 22 in b73a8c4
This could be replaced by
importlib.metadata.entry_points
, which has been around since Python 3.8.The text was updated successfully, but these errors were encountered: