Skip to content

Commit

Permalink
Merge pull request #3013 from activeloopai/3_9_36
Browse files Browse the repository at this point in the history
Updated versions for 3.9.36 release
  • Loading branch information
activesoull authored Jan 16, 2025
2 parents 42917b2 + 888a77c commit 1ea0628
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deeplake/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
]


__version__ = "3.9.35"
__version__ = "3.9.36"
warn_if_update_required(__version__)
__encoded_version__ = np.array(__version__)
config = {"s3": Config(max_pool_connections=50, connect_timeout=300, read_timeout=300)}
Expand Down
2 changes: 1 addition & 1 deletion deeplake/core/dataset/indra_dataset_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def __getitem__(
)
else:
raise InvalidKeyTypeError(item)
raise AttributeError("Dataset has no attribute - {item}")
raise AttributeError(f"Dataset has no attribute - {item}")

def __getattr__(self, key):
try:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "deeplake"
version = "3.9.35"
version = "3.9.36"
description = "Activeloop Deep Lake"
authors = ["activeloop.ai <[email protected]>"]
license = "MPL-2.0"
Expand Down

0 comments on commit 1ea0628

Please sign in to comment.