Skip to content

Commit 1c8e7e4

Browse files
committed
Remove all animation-related functionality.
1 parent 45e9ceb commit 1c8e7e4

File tree

12 files changed

+234
-4825
lines changed

12 files changed

+234
-4825
lines changed

docs/installation.rst

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,6 @@ Ghostscript, which can't be installed via pip. If you use `Conda <https://docs.
2626

2727
$ conda install ghostscript
2828

29-
ffmpeg
30-
------
31-
32-
If you plan to render animated Toyplot figures as MP4 files, you'll need
33-
ffmpeg, which also can't be installed via pip. If you use `Conda <https://docs.conda.io/en/latest/>`_
34-
(again, strongly recommended), you can install it as follows::
35-
36-
$ conda install ffmpeg
37-
3829
.. _documentation:
3930

4031
Documentation

docs/reference.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ Python API
2424
toyplot.locator.rst
2525
toyplot.mark.rst
2626
toyplot.marker.rst
27-
toyplot.mp4.rst
2827
toyplot.pdf.rst
2928
toyplot.png.rst
3029
toyplot.projection.rst

docs/toyplot.mp4.rst

Lines changed: 0 additions & 7 deletions
This file was deleted.

docs/tutorial.ipynb

Lines changed: 233 additions & 1172 deletions
Large diffs are not rendered by default.

features/steps/administrivia.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
# rights in this software.
44

55
from behave import *
6-
import nose.tools
76

87
import os
98
import pkgutil

features/steps/testing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ def read_png(fobj):
336336
if meta["bitdepth"] == 1:
337337
image = numpy.resize(numpy.vstack(pixels), (height, width, planes))
338338
elif meta["bitdepth"] == 8:
339-
image = numpy.resize(numpy.vstack(map(numpy.uint8, pixels)), (height, width, planes))
339+
image = numpy.resize(numpy.vstack(list(map(numpy.uint8, pixels))), (height, width, planes))
340340
return image
341341

342342

features/steps/video.py

Lines changed: 0 additions & 111 deletions
This file was deleted.

features/video.feature

Lines changed: 0 additions & 17 deletions
This file was deleted.

notebooks/animation.ipynb

Lines changed: 0 additions & 2941 deletions
This file was deleted.

0 commit comments

Comments
 (0)