Skip to content

Commit

Permalink
Drop importlib_metadata dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
lochhh committed Nov 10, 2023
1 parent 34d16fa commit 57b4b9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions aeon/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from importlib_metadata import PackageNotFoundError, version
from importlib.metadata import PackageNotFoundError, version

try:
# Change here if project is renamed and does not equal the package name
Expand All @@ -10,4 +10,4 @@
del version, PackageNotFoundError

# Set functions avaialable directly under the 'aeon' top-level namespace
from aeon.io.api import load
from aeon.io.api import load
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ dependencies = [
"dotmap",
"fastparquet",
"graphviz",
"importlib_metadata",
"ipykernel",
"jupyter",
"jupyterlab",
Expand Down

0 comments on commit 57b4b9e

Please sign in to comment.