lamindb 0.63.5__py3-none-any.whl → 0.64.1__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
@@ -5,7 +5,7 @@ LaminDB helps you manage data batches with two basic registries:
5
5
  .. autosummary::
6
6
  :toctree: .
7
7
 
8
- File
8
+ Artifact
9
9
  Dataset
10
10
 
11
11
  Four registries track provenance of data batches:
@@ -54,7 +54,7 @@ Modules & settings:
54
54
 
55
55
  """
56
56
 
57
- __version__ = "0.63.5" # denote a release candidate for 0.1.0 with 0.1rc1
57
+ __version__ = "0.64.1" # denote a release candidate for 0.1.0 with 0.1rc1
58
58
 
59
59
  import os as _os
60
60
 
@@ -91,10 +91,10 @@ if _INSTANCE_SETUP:
91
91
  del InstanceNotSetupError
92
92
  del __getattr__ # delete so that imports work out
93
93
  from lnschema_core import ( # noqa
94
+ Artifact,
94
95
  Dataset,
95
96
  Feature,
96
97
  FeatureSet,
97
- File,
98
98
  Run,
99
99
  Storage,
100
100
  Transform,
@@ -102,10 +102,11 @@ if _INSTANCE_SETUP:
102
102
  User,
103
103
  )
104
104
 
105
+ File = Artifact # backward compat
106
+ from . import _artifact # noqa
105
107
  from . import _dataset # noqa
106
108
  from . import _feature # noqa
107
109
  from . import _feature_set # noqa
108
- from . import _file # noqa
109
110
  from . import _parents # noqa
110
111
  from . import _registry # noqa
111
112
  from . import _run # noqa