-
Notifications
You must be signed in to change notification settings - Fork 23
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
Remove dependency on pkg_resources #140
Comments
In addition to the above setuptools has now deprecated the use of See the setuptools changelog |
Let me know if this is a good idea, I feel like we can do better than filtering warnings but I don't know if there will be side effects on other projects if we use implicit namespaces, this fix uses PEP 420 which is the desired way by setuptools |
Dependent libraries still use https://github.com/googleapis/python-datastore/blob/main/google/__init__.py files — do these need to be removed manually? |
Yes, it is necessary to remove |
Is your feature request related to a problem? Please describe.
Trying to reduce boot time for my Cloud Run API I'm profiling imports, and google.rpc add significant time to the applications imports due to the use of pkg_resources
Describe the solution you'd like
Similar to googleapis/python-api-core#361 - it would be awesome if we could remove the use or pkg_resources (not idea of the effort though)
The text was updated successfully, but these errors were encountered: