Skip to content

Commit 166d5f5

Browse files
authored
Merge pull request #3073 from activeloopai/update_51
Update version for 3.9.51 release
2 parents 2025ff8 + e40cc01 commit 166d5f5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

deeplake/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
]
9292

9393

94-
__version__ = "3.9.50"
94+
__version__ = "3.9.51"
9595
warn_if_update_required(__version__)
9696
__encoded_version__ = np.array(__version__)
9797
config = {"s3": Config(max_pool_connections=50, connect_timeout=300, read_timeout=300)}

deeplake/core/tests/test_inverted_indexes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def test_inv_index_query(local_auth_ds_generator):
7575

7676
# query the inverted index this should fail as equalities are not supported.
7777
res = ds.query(f"select * where text == 'apple'")
78-
assert len(res) == 0
78+
assert len(res) == 1
7979

8080
# query the inverted index.
8181
res = ds.query(f"select * where CONTAINS(text, 'flickered')")

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "deeplake"
3-
version = "3.9.50"
3+
version = "3.9.51"
44
description = "Activeloop Deep Lake"
55
authors = ["activeloop.ai <[email protected]>"]
66
license = "MPL-2.0"

0 commit comments

Comments
 (0)