Skip to content
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

fix: modernize importlib #295

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 2 additions & 17 deletions ovos_plugin_manager/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
from threading import Event, Lock
from typing import Optional
import warnings
import pkg_resources
from ovos_utils.log import LOG, log_deprecation, deprecated
from importlib.metadata import entry_points
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Ensure environment compatibility for entry_points() usage
The pipeline is failing with the error “entry_points() got an unexpected keyword argument 'group'”. This commonly occurs in Python versions earlier than 3.10, where group is not a recognized parameter. Either upgrade the runtime to Python 3.10+ or provide a fallback implementation for earlier versions to maintain compatibility.

If you need a fallback approach, I can propose a backward-compatible snippet that filters entry points manually. Would you like me to open a GitHub issue to track this change?

🧰 Tools
🪛 GitHub Actions: Run UnitTests

[error] AttributeError: Module does not have the attribute '_iter_entrypoints'



class PluginTypes(str, Enum):
Expand Down Expand Up @@ -126,7 +126,7 @@ def find_plugins(plug_type: PluginTypes = None) -> dict:
else:
plugs = plug_type
for plug in plugs:
for entry_point in _iter_entrypoints(plug):
for entry_point in entry_points(group=plug):
JarbasAl marked this conversation as resolved.
Show resolved Hide resolved
try:
entrypoints[entry_point.name] = entry_point.load()
if entry_point.name not in entrypoints:
Expand All @@ -143,21 +143,6 @@ def find_plugins(plug_type: PluginTypes = None) -> dict:
find_plugins._errored = []


def _iter_entrypoints(plug_type: Optional[str]):
"""
Return an iterator containing all entrypoints of the requested type
@param plug_type: entrypoint name to load
@return: iterator of all entrypoints
"""
try:
from importlib_metadata import entry_points
for entry_point in entry_points(group=plug_type):
yield entry_point
except ImportError:
for entry_point in pkg_resources.iter_entry_points(plug_type):
yield entry_point


def load_plugin(plug_name: str, plug_type: Optional[PluginTypes] = None):
"""Load a specific plugin from a specific plugin type.

Expand Down
Loading