Skip to content

Commit

Permalink
remove importlib_metadata dep in favor of stdlib
Browse files Browse the repository at this point in the history
  • Loading branch information
gotmax23 committed Jan 12, 2024
1 parent 7412e9e commit be5a171
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .config/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
GitPython
build>=0.3.1.post1 # py_package
diskcache >= 5.2.1
importlib-metadata
packaging
pip>=21.0.1 # py_package
pluggy
Expand Down
2 changes: 1 addition & 1 deletion src/mk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""init code of mk module."""
from importlib_metadata import PackageNotFoundError, version
from importlib.metadata import PackageNotFoundError, version

try:
__version__ = version(__name__)
Expand Down

0 comments on commit be5a171

Please sign in to comment.