Changes to animatplot
0.4.0
Features
Bug Fixes
Timeline slider now formats
np.datetimeproperly by default. #21
Breaking Changes
The x, y inputs to the Line Block are not positional only. #29
Removed axis kwargs that deprecated in favor of ax in 0.3.0. #31
Developer Changes
Testing tools were moving into the tests folder and are no longer a subpackage of animatplot. #26
Authors
* indicates new author in this release.
0.3.0
Deprecations
The
axiskeyword argument has been replaced (everywhere) in favour ofax, andaxiswill be removed completely in0.4.0. This does not apply tot_axiswhich is unchanged. See #10 for rational.
Features
The Pcolormesh block now accepts 1D arrays (in addition to 2D) for x and y inputs.
Animation.timeline_slider now accepts a
textargument to change the name of the slider.New blocks:
Scatterfor animating scatter plots. Capable of animating size and position of the points, but not yet the color.Updatea block that accepts a generic function that takes a frame number. Good if another block doesn’t already exist for some tasks.
Composition Blocks: These are functions that return a list of blocks (and maybe a timeline). These are in the blocks subpackage and can be identified by the
_compsuffix.New (and very experimental)
animationssubpackage (well new to the public api). Contains some new convenice functions.vector_plotwraps Pcolormesh and Quiver to produce animated vector fields.
Bug Fixes
Previously, an Animation with a timeline_slider, but no toggle would cause an error.
Breaking Changes
The
textargument to timeline_slider is now the first positional argument.The order of positional arguments for the
Nukeblock has changed. This was required to give theaxargument a default.
Developer Changes
New animation unittesting framework
Tests / doc building now runs on CircleCI.
0.2.2
Fix .animations and .blocks subpackages not being distributed properly.
0.2.0
Complete and total overhaul of animatplot using with the idea of
blocksas a foundationChuck all previous attempts to support python 2 in the dumpster
0.1.0.dev3
This is the original release.