Skip to content

Commit f6b39f8

Browse files
authored
Merge pull request #3075 from activeloopai/relax-numpy
Allow numpy v2.
2 parents 166d5f5 + 6c778ea commit f6b39f8

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
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.51"
94+
__version__ = "3.9.52"
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/requirements/common.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
numpy==1.26.4
1+
numpy
22
pillow~=10.4.0
33
boto3
44
click

pyproject.toml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "deeplake"
3-
version = "3.9.51"
3+
version = "3.9.52"
44
description = "Activeloop Deep Lake"
55
authors = ["activeloop.ai <[email protected]>"]
66
license = "MPL-2.0"
@@ -15,12 +15,9 @@ classifiers = [
1515
]
1616

1717
[tool.poetry.dependencies]
18-
numpy = [
19-
{ version = "^1.24.0", python = "<3.12" },
20-
{ version = "^1.26.0", python = ">=3.12" },
21-
]
18+
numpy = "*"
2219
botocore = "*"
23-
python = ">=3.8,<=3.13"
20+
python = ">=3.8,<3.14"
2421
pillow = "~10.4.0"
2522
boto3 = "*"
2623
click = "*"
@@ -39,7 +36,7 @@ google-auth = { version = "~2.0.1", optional = true }
3936
google-auth-oauthlib = { version = "~0.4.5", optional = true }
4037
google-api-python-client = { version = "~2.31.0", optional = true }
4138
oauth2client = { version = "~4.1.3", optional = true }
42-
labelbox = { optional = true }
39+
labelbox = { version = "*", optional = true }
4340

4441
[tool.poetry.extras]
4542
audio = ["av"]

0 commit comments

Comments
 (0)