Skip to content

Commit

Permalink
Change version import to relative import (milvus-io#181)
Browse files Browse the repository at this point in the history
change version import to relative import
  • Loading branch information
eddyxu committed Sep 22, 2022
1 parent 876565f commit 4c52033
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions python/lance/__init__.py
Expand Up @@ -20,9 +20,8 @@
import pyarrow.compute as pc
import pyarrow.dataset as ds

import lance.version

__version__ = lance.version.__version__
from . import version
__version__ = version.__version__

from lance.lib import BuildScanner, LanceFileFormat, WriteTable, _wrap_dataset
from lance.types import register_extension_types
Expand Down

0 comments on commit 4c52033

Please sign in to comment.