Skip to content

Commit 7a4dedb

Browse files
committed
added latest changes
1 parent 80a6d8e commit 7a4dedb

File tree

10 files changed

+385
-116
lines changed

10 files changed

+385
-116
lines changed

python/deeplake/__init__.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,13 @@ def progress_bar(iterable, *args, **kwargs):
1616
from deeplake.ingestion import from_coco
1717

1818

19-
__version__ = "4.2.14"
19+
__version__ = "4.3.3"
2020

2121
__all__ = [
2222
"__version__",
2323
"AgreementError",
2424
"AgreementNotAcceptedError",
25+
"Array",
2526
"AuthenticationError",
2627
"AuthorizationError",
2728
"BadRequestError",
@@ -71,6 +72,7 @@ def progress_bar(iterable, *args, **kwargs):
7172
"InvalidColumnValueError",
7273
"InvalidCredsKeyAssignmentError",
7374
"InvalidImageCompression",
75+
"InvalidTextCompression",
7476
"InvalidIndexCreationError",
7577
"InvalidLinkDataError",
7678
"InvalidLinkType",
@@ -82,13 +84,15 @@ def progress_bar(iterable, *args, **kwargs):
8284
"InvalidType",
8385
"InvalidTypeAndFormatPair",
8486
"InvalidTypeDimensions",
87+
"InvalidURIError",
8588
"JSONIndexNotFound",
8689
"JSONKeyNotFound",
8790
"LogExistsError",
8891
"LogNotexistsError",
8992
"Metadata",
9093
"NotFoundError",
9194
"NotLoggedInAgreementError",
95+
"PermissionDeniedError",
9296
"PushError",
9397
"QuantizationType",
9498
"Random",
@@ -108,6 +112,7 @@ def progress_bar(iterable, *args, **kwargs):
108112
"StorageKeyAlreadyExists",
109113
"StorageKeyNotFound",
110114
"StorageNetworkConnectionError",
115+
"StorageProviderMissingError",
111116
"Tag",
112117
"TagExistsError",
113118
"TagNotFoundError",
@@ -146,6 +151,7 @@ def progress_bar(iterable, *args, **kwargs):
146151
"delete_async",
147152
"disconnect",
148153
"exists",
154+
"exists_async",
149155
"explain_query",
150156
"from_coco",
151157
"from_csv",

0 commit comments

Comments
 (0)