Skip to content

Commit

Permalink
Add dependency on packaging for Plugin Versioning
Browse files Browse the repository at this point in the history
Fix Attribute Error for importlib.util for standalone instllation of Yapsy
  • Loading branch information
AmeyaVS committed Mar 21, 2024
1 parent a9256dd commit 092d982
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions package/setup.py
Expand Up @@ -62,6 +62,9 @@
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules'],
platforms='All',
install_requires = [
"packaging"
]
)

finally:
Expand Down
2 changes: 1 addition & 1 deletion package/yapsy/PluginManager.py
Expand Up @@ -128,7 +128,7 @@

import sys
import os
import importlib
import importlib.util

from yapsy import log
from yapsy import NormalizePluginNameForModuleName
Expand Down

0 comments on commit 092d982

Please sign in to comment.