Changelog history¶
ProPlot v1.0.0 (2020-##-##)¶
This will be published when some major refactoring tasks are completed. See GH#45, GH#46, and GH#50.
ProPlot v0.3.0 (2020-01-##)¶
Deprecated
Remove
subplots.innerspace,subplots.titlespace,subplots.xlabspace, andsubplots.ylabspacespacing arguments, automatically calculate default non-tight spacing using_get_spacebased on current tick lengths, label sizes, etc.Rename
basemap_defaultstobasemap_kwargsandcartopy_projstocartopy_names(@431a06ce).
Features
Users can now use
figurewithadd_subplotorsubplots(GH#50). This is a major improvement!GridSpecnow accepts physical units, rather than havingsubplotshandle the units (GH#50).Add
xlinewidth,ylinewidth,xgridcolor,ygridcolorkeyword args toformat(GH#50).Allow “hanging” twin x and y axes as members of the
EdgeStackcontainer. Arbitrarily many siblings are now permitted.Use
GeometrySolverfor calculating various automatic layout stuff instead of having 1000 hiddenFiguremethods (GH#50).Use
EdgeStackclass for handling stacks of colorbars, legends, and text (GH#50).rc__getitem__always returns the setting; “caching” can only be used explicitly by passingcache=Truetoget,fill, andcategory(GH#50).
Bug fixes
Internals
Handle all projection keyword arguments in
add_subplotinstead ofsubplots(GH#50).Panels, colorbars, and legends are now members of
EdgeStackstacks rather than getting inserted directly into the mainGridSpec(GH#50).Define
rcdefault values with inline dictionaries rather than with a default.proplotrcfile, change the auto-generated user.proplotrc(GH#50).
ProPlot v0.2.7 (2019-12-09)¶
Bug fixes
Fix issue where
AutoFormatterlogarithmic scale points are incorrect (@9b164733).
Documentation
Improve Configuring proplot documentation (@9d50719b).
Internals
ProPlot v0.2.5 (2019-12-07)¶
Features
Much better
CutoffScalealgorithm, permit arbitrary cutoffs (GH#83).
ProPlot v0.2.4 (2019-12-07)¶
Deprecated
Remove
fonts_systemandfonts_proplot, renamecolordicttocolors, make top-level variables more robust (@861583f8).
Documentation
Params table for
show_fonts(@861583f8).
Internals
Improvements to
register_colors.
ProPlot v0.2.3 (2019-12-05)¶
Bug fixes
Fix issue with overlapping gridlines (@8960ebdc).
Fix issue where auto colorbar labels are not applied when
globe=True(@ecb3c899).More sensible zorder for gridlines (@90d94e55).
Fix issue where customized super title settings are overridden when new axes are created (@35cb21f2).
Documentation
Organize ipython notebook documentation (@35cb21f2).
Internals
Major cleanup of the
colorbar_wrappersource code, handle minor ticks using the builtin matplotlib API just like major ticks (@b9976220).
ProPlot v0.2.2 (2019-12-04)¶
Deprecated
Rename
axes_gridtosubplot_grid(@ac14e9dd).
Bug fixes
Fix shared x and y axis bugs (@ac14e9dd).
Documentation
Make notebook examples PEP8 compliant (@97f5ffd4). Much more readable now.
ProPlot v0.2.1 (2019-12-02)¶
Deprecated
Rename
autoreload_setup,autosave_setup, andmatplotlib_setuptoipython_autoreload,ipython_autosave, andipython_matplotlib, respectively (@84e80c1e).
ProPlot v0.2.0 (2019-12-02)¶
Deprecated
Remove the
nbsetuprc setting in favor of separateautosave,autoreload, andmatplotlibsettings for triggering the respective%magic commands. (@3a622887;nbsetupis still accepted but no longer documented).Rename the
formatrc setting in favor of theinlinefmtsetting (@3a622887;formatis still accepted but no longer documented).Rename
FlexibleGridSpecandFlexibleSubplotSpectoGridSpecandSubplotSpec(@3a622887; until GH#50 is merged it is impossible to use these manually, so this won’t bother anyone).
Features
Support manual resizing for all backends, including
osxandqt(@3a622887).
Bug fixes
Disable automatic resizing for the
nbAgginteractive inline backend. Found no suitable workaround (@3a622887).
Internals
Organize the
rcdocumentation and the default.proplotrcfile (@3a622887).Rename
rcParamsCustomtorcParamsLong(@3a622887; this is inaccessible to the user).When calling
fig.canvas.print_figure()on a stale figure, callfig.canvas.draw()first. May be overkill forsavefigbut critical for correctly displaying already-drawn notebook figures.
ProPlot v0.1.0 (2019-12-01)¶
Internals
Include
flake8in Travis CI testing (@8743b857).Enforce source code PEP8 compliance (@78da51a7).
Use pre-commit for all future commits (@e14f6809).
Implement tight layout stuff with canvas monkey patches (@67221d10). ProPlot now works for arbitrary backends, not just inline and qt.
Documentation
Various RTD bugfixes (e.g. @37633a4c).