lamindb 0.69.2__py3-none-any.whl → 0.69.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
lamindb/__init__.py CHANGED
@@ -31,7 +31,7 @@ Modules & settings:
31
31
  .. autosummary::
32
32
  :toctree: .
33
33
 
34
- validation
34
+ Annotate
35
35
  settings
36
36
  setup
37
37
  UPath
@@ -39,7 +39,7 @@ Modules & settings:
39
39
 
40
40
  """
41
41
 
42
- __version__ = "0.69.2" # denote a release candidate for 0.1.0 with 0.1rc1
42
+ __version__ = "0.69.3" # denote a release candidate for 0.1.0 with 0.1rc1
43
43
 
44
44
  import os as _os
45
45
 
@@ -71,7 +71,9 @@ if _check_instance_setup(from_lamindb=True):
71
71
  )
72
72
 
73
73
  from . import (
74
+ _annotate,
74
75
  _artifact,
76
+ _can_validate,
75
77
  _collection,
76
78
  _feature,
77
79
  _feature_set,
@@ -82,11 +84,11 @@ if _check_instance_setup(from_lamindb=True):
82
84
  _storage,
83
85
  _transform,
84
86
  _ulabel,
85
- _validate,
86
87
  core,
87
88
  )
88
89
 
89
90
  dev = core # backward compat
91
+ from ._annotate import Annotate
90
92
  from ._finish import finish
91
93
  from ._save import save
92
94
  from ._view import view