Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ cmake-build-debug/
__pycache__/
*.pyc

# Python build artifacts
# Python package metadata
*.egg-info/
dist/
*.egg
Expand Down
3 changes: 3 additions & 0 deletions python/stdface/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,4 +262,7 @@ def _discover_plugins() -> None:
try:
import stdface.solvers # noqa: F401 — triggers auto-registration
except ImportError:
# Solvers package not available (e.g., minimal install, missing
# dependencies, or corrupted package). Plugin lookup will fail
# with a helpful KeyError listing available plugins.
pass