Skip to content

Commit

Permalink
try the force-reinstall
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedh committed Aug 15, 2024
1 parent d200082 commit 328a350
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ RUN trimesh-setup --install=test,gmsh,gltf_validator,llvmpipe,binvox
USER user

# install things like pytest and make sure we're on Numpy 2.X
RUN pip install .[all] && \
# todo : imagio is forcing a downgrade of numpy 2 in-place
RUN pip install .[all] && pip install --force-reinstall --upgrade "numpy>2" && \
python -c "import numpy as n; assert(n.__version__.startswith('2'))"

# check for lint problems
Expand Down

0 comments on commit 328a350

Please sign in to comment.