registry.py: migrate deprecated pkg_resources#145
Open
hseg wants to merge 1 commit into
Open
Conversation
As noted in https://setuptools.pypa.io/en/latest/pkg_resources.html, pkg_resources is deprecated. We were only using it for iter_entry_points anyway, which has been moved to importlib.metadata:entry_points
|
FYI: Since 3.12, |
4 tasks
|
Hello. Two years without any commit. Is |
|
Could you please merge this PR? |
|
Did you see the time of the last contribution of xlcnd and their profile? |
hans-fritz-pommes
added a commit
to hans-fritz-pommes/isbnlib
that referenced
this pull request
Jan 22, 2026
|
I have created a fork and am now trying to maintain it. |
1 task
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
As noted in https://setuptools.pypa.io/en/latest/pkg_resources.html,
pkg_resourcesis deprecated. We were only using it foriter_entry_pointsanyway, which has been moved toimportlib.metadata:entry_pointsChanges proposed in this pull request:
pkg_resources:iter_entry_pointsbyimportlib.metadata:entry_points@xlcnd