Changes between Version 1 and Version 5 of Ticket #31148
- Timestamp:
- 01/02/21 15:28:08 (20 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #31148
-
Property
Status
changed from
needs_review
topositive_review
-
Property
Authors
changed from
zlscherr
toZachary Scherr
- Property Cc slelievre added
-
Property
Reviewers
changed from
to
Dima Pasechnik
-
Property
Status
changed from
-
Ticket #31148 – Description
v1 v5 7 7 This can cause runtime issues with Matplotlib trying to call 8 8 the wrong qhull library. For example, this fixes the error that 9 ```bash 10 $ ./sage -tp 8 --long src/sage/plot/plot3d/list_plot3d.py 11 ``` 12 produces 13 ```bash 14 QH6249 qh_lib_check: Incorrect qhull library called. 15 Size of qhT for caller is 2896, but for library is 2792. 9 16 10 ./sage -tp 8 --long --warn-long 31.1 --random-seed=0 src/sage/plot/plot3d/list_plot3d.py 11 12 produces 13 14 QH6249 qh_lib_check: Incorrect qhull library called. Size of qhT for caller is 2896, but for library is 2792. 15 QH6256 qh_lib_check: Cannot continue. Library 'qhull 7.2.0 (2015.2 2016/01/18)' uses a static qhT (e.g., libqhull.so) 16 17 QH6256 qh_lib_check: Cannot continue. 18 Library 'qhull 7.2.0 (2015.2 2016/01/18)' 19 uses a static qhT (e.g., libqhull.so) 20 ``` 17 21 if the system has qhull 8.0.0 installed. 18 22 }}}