We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d200082 commit 328a350Copy full SHA for 328a350
1 file changed
Dockerfile
@@ -64,7 +64,8 @@ RUN trimesh-setup --install=test,gmsh,gltf_validator,llvmpipe,binvox
64
USER user
65
66
# install things like pytest and make sure we're on Numpy 2.X
67
-RUN pip install .[all] && \
+# todo : imagio is forcing a downgrade of numpy 2 in-place
68
+RUN pip install .[all] && pip install --force-reinstall --upgrade "numpy>2" && \
69
python -c "import numpy as n; assert(n.__version__.startswith('2'))"
70
71
# check for lint problems
0 commit comments