From 04a178548c03e9c62453e577be1ba8a3fa4f3a9a Mon Sep 17 00:00:00 2001 From: Yixing Lao Date: Fri, 10 Jan 2025 21:08:50 +0800 Subject: [PATCH] chore(pyproject.toml): remove upper bound constraint for numpy dependency to allow newer versions --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 67401617..1a4b0165 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ classifiers = [ "Programming Language :: Python :: 3", ] dependencies = [ - "numpy>=1.15.0,<=1.26.4", + "numpy>=1.15.0", "open3d>=0.16.0", "opencv-python>=4.5.1.48", "matplotlib>=3.3.4",