From 5d4549bae996d2ebbf3fb8533a5b30209c4f876a Mon Sep 17 00:00:00 2001 From: cbolich Date: Sun, 21 May 2023 11:23:58 -0700 Subject: [PATCH] Update requirements.txt fixed transforms3d version old version was using deprecated numpy AttributeError: module 'numpy' has no attribute 'float'. `np.float` was a deprecated alias for the builtin `float`. To avoid this error in existing code, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here. --- scripts/inpaint/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/inpaint/requirements.txt b/scripts/inpaint/requirements.txt index 0fc9a07..5afee8f 100644 --- a/scripts/inpaint/requirements.txt +++ b/scripts/inpaint/requirements.txt @@ -1,7 +1,7 @@ opencv-python==4.2.0.32 vispy==0.6.4 moviepy==1.0.2 -transforms3d==0.3.1 +transforms3d==0.4.1 networkx==2.3 cynetworkx scikit-image