From 8c9d66ac0b8e7363678b6e18c4f34ba16bb9e37c Mon Sep 17 00:00:00 2001 From: David Stansby Date: Tue, 26 Jun 2018 10:24:08 +0100 Subject: [PATCH 1/2] Skip 3D rotation example in sphinx gallery --- examples/mplot3d/{rotate_axes3d.py => rotate_axes3d_sgskip.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename examples/mplot3d/{rotate_axes3d.py => rotate_axes3d_sgskip.py} (100%) diff --git a/examples/mplot3d/rotate_axes3d.py b/examples/mplot3d/rotate_axes3d_sgskip.py similarity index 100% rename from examples/mplot3d/rotate_axes3d.py rename to examples/mplot3d/rotate_axes3d_sgskip.py From 9c9d78c029cf091c89cd49a6038555260eb37f6f Mon Sep 17 00:00:00 2001 From: David Stansby Date: Fri, 29 Jun 2018 11:59:53 +0100 Subject: [PATCH 2/2] Also skip wire3d, and add comments --- examples/mplot3d/rotate_axes3d_sgskip.py | 3 +++ .../{wire3d_animation.py => wire3d_animation_sgskip.py} | 3 +++ 2 files changed, 6 insertions(+) rename examples/mplot3d/{wire3d_animation.py => wire3d_animation_sgskip.py} (90%) diff --git a/examples/mplot3d/rotate_axes3d_sgskip.py b/examples/mplot3d/rotate_axes3d_sgskip.py index aa12f3ce9a9a..666bb68f6cd7 100644 --- a/examples/mplot3d/rotate_axes3d_sgskip.py +++ b/examples/mplot3d/rotate_axes3d_sgskip.py @@ -6,6 +6,9 @@ A very simple animation of a rotating 3D plot. See wire3d_animation_demo for another simple example of animating a 3D plot. + +(This example is skipped when building the documentation gallery because it +intentionally takes a long time to run) ''' from mpl_toolkits.mplot3d import axes3d diff --git a/examples/mplot3d/wire3d_animation.py b/examples/mplot3d/wire3d_animation_sgskip.py similarity index 90% rename from examples/mplot3d/wire3d_animation.py rename to examples/mplot3d/wire3d_animation_sgskip.py index f52fa46d49b0..303a2817a0df 100644 --- a/examples/mplot3d/wire3d_animation.py +++ b/examples/mplot3d/wire3d_animation_sgskip.py @@ -4,6 +4,9 @@ ========================== A very simple 'animation' of a 3D plot. See also rotate_axes3d_demo. + +(This example is skipped when building the documentation gallery because it +intentionally takes a long time to run) """