Skip to content

Commit

Permalink
Merge pull request #3004 from activeloopai/libdeeplake_version
Browse files Browse the repository at this point in the history
make libdeeplake dependency to always download the latest release
  • Loading branch information
activesoull authored Dec 13, 2024
2 parents fb7ef6b + 4e436b4 commit d6fc6e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ tqdm = "*"
lz4 = "*"
pyjwt = "*"
pydantic = "*"
libdeeplake = { version = "0.0.150", markers = "python_version >= '3.8' and sys_platform != 'win32'" }
libdeeplake = { markers = "python_version >= '3.8' and sys_platform != 'win32'" }
av = { version = ">=8.1.0", markers = "python_version >= '3.7' or sys_platform != 'win32'" }
aioboto3 = { version = ">=10.4.0", markers = "python_version >= '3.7' and sys_platform != 'win32'" }
nest_asyncio = { version = "*", markers = "python_version >= '3.7' and sys_platform != 'win32'" }
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def libdeeplake_available():
extras_require["all"] = [req_map[r] for r in all_extras]

if libdeeplake_available():
libdeeplake = "libdeeplake==0.0.150"
libdeeplake = "libdeeplake"
extras_require["enterprise"] = [libdeeplake, "pyjwt"]
extras_require["all"].append(libdeeplake)
install_requires.append(libdeeplake)
Expand Down

0 comments on commit d6fc6e3

Please sign in to comment.