-
-
Notifications
You must be signed in to change notification settings - Fork 372
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
avoid the use of pkg_resources when importlib.metadata is available #799
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #799 +/- ##
==========================================
- Coverage 83.19% 82.35% -0.85%
==========================================
Files 33 33
Lines 1119 1139 +20
==========================================
+ Hits 931 938 +7
- Misses 188 201 +13 ☔ View full report in Codecov by Sentry. |
@d9pouces |
It still has conflict and can't be merged, please rebase your branch with the current master branch |
Conflicts seem to have disappeared and this branch can be merged. |
…kg_resources is removed from Python 3.12
…kg_resources is removed from Python 3.12
for more information, see https://pre-commit.ci
d9cd87c
to
d3a7144
Compare
for more information, see https://pre-commit.ci
Thanks @d9pouces |
pkg_resources is removed from Python 3.12, and its use raises a warning.
importlib.metadata can be used to get distribution info.