diff --git a/testbed/matplotlib__matplotlib/doc/Makefile b/testbed/matplotlib__matplotlib/doc/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..53b7c02b68fa8d79ba7f4dad9a9fc043f0230da6 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/Makefile @@ -0,0 +1,48 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line. +SPHINXOPTS = -W --keep-going +SPHINXBUILD = python -msphinx +SPHINXPROJ = matplotlib +SOURCEDIR = . +BUILDDIR = build + +# Put it first so that "make" without argument is like "make help". +help: + @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +.PHONY: help Makefile + +# workaround because sphinx does not completely clean up (#11139) +clean: + @$(SPHINXBUILD) -M clean "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + rm -rf "$(SOURCEDIR)/build" + rm -rf "$(SOURCEDIR)/api/_as_gen" + rm -rf "$(SOURCEDIR)/gallery" + rm -rf "$(SOURCEDIR)/plot_types" + rm -rf "$(SOURCEDIR)/tutorials" + rm -rf "$(SOURCEDIR)/users/explain" + rm -rf "$(SOURCEDIR)/savefig" + rm -rf "$(SOURCEDIR)/sphinxext/__pycache__" + rm -f $(SOURCEDIR)/_static/constrained_layout*.png + +show: + @python -c "import webbrowser; webbrowser.open_new_tab('file://$(shell pwd)/build/html/index.html')" + +html-noplot: + $(SPHINXBUILD) -D plot_gallery=0 -b html $(SOURCEDIR) $(BUILDDIR)/html $(SPHINXOPTS) $(O) + @echo + @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." + +# This will skip the subdirectories listed in .mpl_skip_subdirs.yaml If +# this file does not exist, one will be created for you. This option useful +# to quickly build parts of the docs, but the resulting build will not +# have all the crosslinks etc. +html-skip-subdirs: + $(SPHINXBUILD) -D skip_sub_dirs=1 -b html $(SOURCEDIR) $(BUILDDIR)/html $(SPHINXOPTS) $(O) + +# Catch-all target: route all unknown targets to Sphinx using the new +# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). +%: Makefile + @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) diff --git a/testbed/matplotlib__matplotlib/doc/README.txt b/testbed/matplotlib__matplotlib/doc/README.txt new file mode 100644 index 0000000000000000000000000000000000000000..0caf5e013c9b8542d27efaea98faf2b266db100a --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/README.txt @@ -0,0 +1,43 @@ +Matplotlib documentation +======================== + +Building the documentation +-------------------------- + +See :file:`doc/devel/documenting_mpl.rst` for instructions to build the docs. + +Organization +------------ + +This is the top level build directory for the Matplotlib +documentation. All of the documentation is written using sphinx, a +python documentation system built on top of ReST. This directory contains + +* users - the user documentation, e.g., installation, plotting tutorials, +configuration tips, faq, explanations, etc. + +* devel - documentation for Matplotlib developers + +* api - placeholders to automatically generate the api documentation + +* tutorials, plot_types, and gallery - automatically +generated by sphinx-gallery from ``../tutorials``, ``../plot_types``, and +``../examples`` respectively (these are only present if docs have been +built locally). + +* thirdpartypackages - redirect to + +* mpl_toolkits - documentation of individual toolkits that ship with + Matplotlib + +* index.rst - the top level include document for Matplotlib docs + +* conf.py - the sphinx configuration + +* Makefile and make.bat - entry points for building the docs + +* _static - used by the sphinx build system + +* _templates - used by the sphinx build system + +* sphinxext - Sphinx extensions for the Matplotlib docs diff --git a/testbed/matplotlib__matplotlib/doc/api/_api_api.rst b/testbed/matplotlib__matplotlib/doc/api/_api_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..a41af9009bcf08192351678cb5d9f1bfb99b9f9d --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/_api_api.rst @@ -0,0 +1,13 @@ +******************* +``matplotlib._api`` +******************* + +.. automodule:: matplotlib._api + :members: + :undoc-members: + :show-inheritance: + +.. automodule:: matplotlib._api.deprecation + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/backend_agg_api.rst b/testbed/matplotlib__matplotlib/doc/api/backend_agg_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..752f348f87474d6168b730708d672217f6e54d9f --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/backend_agg_api.rst @@ -0,0 +1,8 @@ +*********************************** +``matplotlib.backends.backend_agg`` +*********************************** + +.. automodule:: matplotlib.backends.backend_agg + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/backend_bases_api.rst b/testbed/matplotlib__matplotlib/doc/api/backend_bases_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..c98a6af3e05e05eaa0b985103ce5c710c23d3f73 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/backend_bases_api.rst @@ -0,0 +1,8 @@ +**************************** +``matplotlib.backend_bases`` +**************************** + +.. automodule:: matplotlib.backend_bases + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/backend_cairo_api.rst b/testbed/matplotlib__matplotlib/doc/api/backend_cairo_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..66371ec6895c299e051b4427efc18b21e639ddb9 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/backend_cairo_api.rst @@ -0,0 +1,8 @@ +************************************* +``matplotlib.backends.backend_cairo`` +************************************* + +.. automodule:: matplotlib.backends.backend_cairo + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/backend_pdf_api.rst b/testbed/matplotlib__matplotlib/doc/api/backend_pdf_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..014c3e6e50178a551f0ec24d06b5046bd65bb192 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/backend_pdf_api.rst @@ -0,0 +1,8 @@ +*********************************** +``matplotlib.backends.backend_pdf`` +*********************************** + +.. automodule:: matplotlib.backends.backend_pdf + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/backend_pgf_api.rst b/testbed/matplotlib__matplotlib/doc/api/backend_pgf_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..9f90beb72a1b44835a35e92a38c68d5ca13b2b76 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/backend_pgf_api.rst @@ -0,0 +1,8 @@ +*********************************** +``matplotlib.backends.backend_pgf`` +*********************************** + +.. automodule:: matplotlib.backends.backend_pgf + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/backend_ps_api.rst b/testbed/matplotlib__matplotlib/doc/api/backend_ps_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..d9b07d961b4bd025d409389dea7472d4a4495b82 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/backend_ps_api.rst @@ -0,0 +1,8 @@ +********************************** +``matplotlib.backends.backend_ps`` +********************************** + +.. automodule:: matplotlib.backends.backend_ps + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/backend_svg_api.rst b/testbed/matplotlib__matplotlib/doc/api/backend_svg_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..2e7c1c9f5db1e451b236bd66a2f05ec7ef434fca --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/backend_svg_api.rst @@ -0,0 +1,8 @@ +*********************************** +``matplotlib.backends.backend_svg`` +*********************************** + +.. automodule:: matplotlib.backends.backend_svg + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/backend_template_api.rst b/testbed/matplotlib__matplotlib/doc/api/backend_template_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..8198eeae121eb806d823d443c675345350d56bca --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/backend_template_api.rst @@ -0,0 +1,8 @@ +**************************************** +``matplotlib.backends.backend_template`` +**************************************** + +.. automodule:: matplotlib.backends.backend_template + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/category_api.rst b/testbed/matplotlib__matplotlib/doc/api/category_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..895f7c961141645732e3a7e90ab4f1ebfd67de39 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/category_api.rst @@ -0,0 +1,8 @@ +*********************** +``matplotlib.category`` +*********************** + +.. automodule:: matplotlib.category + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/cbook_api.rst b/testbed/matplotlib__matplotlib/doc/api/cbook_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..4c8ef9cc50fa5208921714d8ddb22a6dfd196b34 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/cbook_api.rst @@ -0,0 +1,8 @@ +******************** +``matplotlib.cbook`` +******************** + +.. automodule:: matplotlib.cbook + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/colorbar_api.rst b/testbed/matplotlib__matplotlib/doc/api/colorbar_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..745589a39fa41e60da47e0a64e786d407ef2cb59 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/colorbar_api.rst @@ -0,0 +1,8 @@ +*********************** +``matplotlib.colorbar`` +*********************** + +.. automodule:: matplotlib.colorbar + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/container_api.rst b/testbed/matplotlib__matplotlib/doc/api/container_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..4bc05067fd26f20dddb420ed93019012c50d9468 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/container_api.rst @@ -0,0 +1,8 @@ +************************ +``matplotlib.container`` +************************ + +.. automodule:: matplotlib.container + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/contour_api.rst b/testbed/matplotlib__matplotlib/doc/api/contour_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..7fe159efd9eb7ce86687d6e71b7d7a6a88777305 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/contour_api.rst @@ -0,0 +1,8 @@ +********************** +``matplotlib.contour`` +********************** + +.. automodule:: matplotlib.contour + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/dviread.rst b/testbed/matplotlib__matplotlib/doc/api/dviread.rst new file mode 100644 index 0000000000000000000000000000000000000000..9d07407a1753ef15d79917418ba453296d2bfcc8 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/dviread.rst @@ -0,0 +1,9 @@ +********************** +``matplotlib.dviread`` +********************** + +.. automodule:: matplotlib.dviread + :members: + :undoc-members: + :exclude-members: Page, Text, Box + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/ft2font.rst b/testbed/matplotlib__matplotlib/doc/api/ft2font.rst new file mode 100644 index 0000000000000000000000000000000000000000..a1f984abdda590d4bdcd2f7b99f531e67222ff07 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/ft2font.rst @@ -0,0 +1,8 @@ +********************** +``matplotlib.ft2font`` +********************** + +.. automodule:: matplotlib.ft2font + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/hatch_api.rst b/testbed/matplotlib__matplotlib/doc/api/hatch_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..b706be379a15000334d7b41d4ff8785664abac30 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/hatch_api.rst @@ -0,0 +1,8 @@ +******************** +``matplotlib.hatch`` +******************** + +.. automodule:: matplotlib.hatch + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/image_api.rst b/testbed/matplotlib__matplotlib/doc/api/image_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..df3177395eef0ad200aa68a5d5b258cd5887fd2d --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/image_api.rst @@ -0,0 +1,8 @@ +******************** +``matplotlib.image`` +******************** + +.. automodule:: matplotlib.image + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/layout_engine_api.rst b/testbed/matplotlib__matplotlib/doc/api/layout_engine_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..8890061e0979b14d56a53e1e59d6dcdb9a3b406f --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/layout_engine_api.rst @@ -0,0 +1,9 @@ +**************************** +``matplotlib.layout_engine`` +**************************** + +.. currentmodule:: matplotlib.layout_engine + +.. automodule:: matplotlib.layout_engine + :members: + :inherited-members: diff --git a/testbed/matplotlib__matplotlib/doc/api/legend_api.rst b/testbed/matplotlib__matplotlib/doc/api/legend_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..c6808b15665db9f5945d11cacde91214ff4a1535 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/legend_api.rst @@ -0,0 +1,8 @@ +********************* +``matplotlib.legend`` +********************* + +.. automodule:: matplotlib.legend + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/legend_handler_api.rst b/testbed/matplotlib__matplotlib/doc/api/legend_handler_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..dfdf04730ce2621c0a923129bdd5c037190e22ab --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/legend_handler_api.rst @@ -0,0 +1,7 @@ +***************************** +``matplotlib.legend_handler`` +***************************** + +.. automodule:: matplotlib.legend_handler + :members: + :undoc-members: diff --git a/testbed/matplotlib__matplotlib/doc/api/markers_api.rst b/testbed/matplotlib__matplotlib/doc/api/markers_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..5193d2dd90c9d99e7b0294a2969f172f45c98dd3 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/markers_api.rst @@ -0,0 +1,18 @@ +********************** +``matplotlib.markers`` +********************** + +.. currentmodule:: matplotlib.markers + +.. automodule:: matplotlib.markers + :no-members: + :no-inherited-members: + +Classes +------- + +.. autosummary:: + :toctree: _as_gen/ + :template: autosummary.rst + + MarkerStyle diff --git a/testbed/matplotlib__matplotlib/doc/api/mlab_api.rst b/testbed/matplotlib__matplotlib/doc/api/mlab_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..3e80b04cad274b3ee19cf4afedaf4d7fe78aea48 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/mlab_api.rst @@ -0,0 +1,8 @@ +******************* +``matplotlib.mlab`` +******************* + +.. automodule:: matplotlib.mlab + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/README.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/README.rst new file mode 100644 index 0000000000000000000000000000000000000000..de494911e6b20c510187f25ed57f93eadb69b1ba --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/README.rst @@ -0,0 +1,32 @@ +:orphan: + +Adding API change notes +======================= + +API change notes for future releases are collected in +:file:`next_api_changes`. They are divided into four subdirectories: + +- **Deprecations**: Announcements of future changes. Typically, these will + raise a deprecation warning and users of this API should change their code + to stay compatible with future releases of Matplotlib. If possible, state + what should be used instead. +- **Removals**: Parts of the API that got removed. If possible, state what + should be used instead. +- **Behaviour changes**: API that stays valid but will yield a different + result. +- **Development changes**: Changes to the build process, dependencies, etc. + +Please place new entries in these directories with a new file named +``99999-ABC.rst``, where ``99999`` would be the PR number, and ``ABC`` the +author's initials. Typically, each change will get its own file, but you may +also amend existing files when suitable. The overall goal is a comprehensible +documentation of the changes. + +Please avoid using references in section titles, as it causes links to be +confusing in the table of contents. Instead, ensure that a reference is +included in the descriptive text. A typical entry could look like this:: + + Locators + ~~~~~~~~ + The unused `Locator.autoscale()` method is deprecated (pass the axis + limits to `Locator.view_limits()` instead). diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/behavior/25192-DS.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/behavior/25192-DS.rst new file mode 100644 index 0000000000000000000000000000000000000000..5f15a3da02df905814462747477d9a4adc161c5f --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/behavior/25192-DS.rst @@ -0,0 +1,4 @@ +``canvas`` argument now required for ``FigureFrameWx`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +``FigureFrameWx`` now requires a keyword-only ``canvas`` argument +when it is constructed. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/behavior/25247-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/behavior/25247-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..b45a43adf7a42237996f915a041a4fc62693b330 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/behavior/25247-AL.rst @@ -0,0 +1,20 @@ +``ContourSet`` is now a single Collection +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Prior to this release, `.ContourSet` (the object returned by `~.Axes.contour`) +was a custom object holding multiple `.Collection`\s (and not an `.Artist`) +-- one collection per level, each connected component of that level's contour +being an entry in the corresponding collection. + +`.ContourSet` is now instead a plain `.Collection` (and thus an `.Artist`). +The collection contains a single path per contour level; this path may be +non-continuous in case there are multiple connected components. + +Setting properties on the ContourSet can now usually be done using standard +collection setters (``cset.set_linewidth(3)`` to use the same linewidth +everywhere or ``cset.set_linewidth([1, 2, 3, ...])`` to set different +linewidths on each level) instead of having to go through the individual +sub-components (``cset.collections[0].set_linewidth(...)``). Note that +during the transition period, it remains possible to access the (deprecated) +``.collections`` attribute; this causes the ContourSet to modify itself to use +the old-style multi-Collection representation. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/behavior/25456-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/behavior/25456-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..fc3080439c5e7237c6d759004a7b235be6eeaca9 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/behavior/25456-AL.rst @@ -0,0 +1,10 @@ +Changes of API after deprecation +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +- `.dviread.find_tex_file` now raises `FileNotFoundError` when the requested filename is + not found. +- `.Figure.colorbar` now raises if *cax* is not given and it is unable to determine from + which Axes to steal space, i.e. if *ax* is also not given and *mappable* has not been + added to an Axes. +- `.pyplot.subplot` and `.pyplot.subplot2grid` no longer auto-remove preexisting + overlapping Axes; explicitly call ``Axes.remove`` as needed. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/behavior/25775-HZ.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/behavior/25775-HZ.rst new file mode 100644 index 0000000000000000000000000000000000000000..118195811b981fd6302d1a5e9deca54eecd339f3 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/behavior/25775-HZ.rst @@ -0,0 +1,29 @@ +Default antialiasing behavior changes for ``Text`` and ``Annotation`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +``matplotlib.pyplot.annotate()`` and ``matplotlib.pyplot.text()`` now support parameter *antialiased* when initializing. +Examples: + +.. code-block:: + + mpl.text.Text(.5, .5, "foo\nbar", antialiased=True) + plt.text(0.5, 0.5, '6 inches x 2 inches', antialiased=True) + ax.annotate('local max', xy=(2, 1), xytext=(3, 1.5), antialiased=False) + +See "What's New" for more details on usage. + +With this new feature, you may want to make sure that you are creating and saving/showing the figure under the same context:: + + # previously this was a no-op, now it is what works + with rccontext(text.antialiased=False): + fig, ax = plt.subplots() + ax.annotate('local max', xy=(2, 1), xytext=(3, 1.5)) + fig.savefig('/tmp/test.png') + + # previously this had an effect, now this is a no-op + fig, ax = plt.subplots() + ax.annotate('local max', xy=(2, 1), xytext=(3, 1.5)) + with rccontext(text.antialiased=False): + fig.savefig('/tmp/test.png') + +Also note that antialiasing for tick labels will be set with :rc:`text.antialiased` when they are created (usually when a ``Figure`` is created) - This means antialiasing for them can no longer be changed by modifying :rc:`text.antialiased`. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/behavior/26479-ES.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/behavior/26479-ES.rst new file mode 100644 index 0000000000000000000000000000000000000000..5299ebe985f8ac6af095a1d8238c8bcad638e205 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/behavior/26479-ES.rst @@ -0,0 +1,6 @@ +PostScript paper type adds option to use figure size +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The :rc:`ps.papertype` rcParam can now be set to ``'figure'``, which will use +a paper size that corresponds exactly with the size of the figure that is being +saved. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/00001-ABC.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/00001-ABC.rst new file mode 100644 index 0000000000000000000000000000000000000000..541047ed1d8d95b196283274756d0db5370c72bf --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/00001-ABC.rst @@ -0,0 +1,7 @@ +Template for deprecations +~~~~~~~~~~~~~~~~~~~~~~~~~ + +Add description here... + +Please rename file with PR number and your initials i.e. "99999-ABC.rst" +and ``git add`` the new file. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/23200-OG.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/23200-OG.rst new file mode 100644 index 0000000000000000000000000000000000000000..1b135dc241bbdcd4374fba8c1e8e2e0ed12d2f1e --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/23200-OG.rst @@ -0,0 +1,6 @@ +Calling ``paths.get_path_collection_extents`` with empty *offsets* +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Calling `~.get_path_collection_extents` with an empty *offsets* parameter +has an ambiguous interpretation and is therefore deprecated. When the +deprecation period expires, this will produce an error. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/24312-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/24312-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..ea5ec5a9a475c2a419867d7fe34142164c0f5904 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/24312-AL.rst @@ -0,0 +1,9 @@ +``axes_grid1.axes_divider`` API changes +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The ``AxesLocator`` class is deprecated. The ``new_locator`` method of divider +instances now instead returns an opaque callable (which can still be passed to +``ax.set_axes_locator``). + +``Divider.locate`` is deprecated; use ``Divider.new_locator(...)(ax, renderer)`` +instead. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/24913-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/24913-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..7f99459a183a844f6d5abba71fb7dcab894009d0 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/24913-AL.rst @@ -0,0 +1,3 @@ +``bbox.anchored()`` with no explicit container +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Not passing a *container* argument to `.BboxBase.anchored` is now deprecated. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/24985-OG.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/24985-OG.rst new file mode 100644 index 0000000000000000000000000000000000000000..5662d5f3ef2870cec550b1c83d0f70346685a91c --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/24985-OG.rst @@ -0,0 +1,17 @@ +Functions in ``mpl_toolkits.mplot3d.proj3d`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The function ``transform`` is just an alias for ``proj_transform``, +use the latter instead. + +The following functions are either unused (so no longer required in Matplotlib) +or considered private. If you rely on them, please make a copy of the code, +including all functions that starts with a ``_`` (considered private). + +* ``ortho_transformation`` +* ``persp_transformation`` +* ``proj_points`` +* ``proj_trans_points`` +* ``rot_x`` +* ``rotation_about_vector`` +* ``view_transformation`` diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/24990-OG.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/24990-OG.rst new file mode 100644 index 0000000000000000000000000000000000000000..180be1fd7659707d8513889b78bffcec0bcf391c --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/24990-OG.rst @@ -0,0 +1,5 @@ +Arguments other than ``renderer`` to ``get_tightbbox`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +... are keyword-only arguments. This is for consistency and that +different classes have different additional arguments. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25027-GL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25027-GL.rst new file mode 100644 index 0000000000000000000000000000000000000000..30137ee091dfab04d22c78d203ab4aa185b45c28 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25027-GL.rst @@ -0,0 +1,12 @@ +The object returned by ``pcolor()`` has changed to a ``PolyQuadMesh`` class +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The old object was a `.PolyCollection` with flattened vertices and array data. +The new `.PolyQuadMesh` class subclasses `.PolyCollection`, but adds in better +2D coordinate and array handling in alignment with `.QuadMesh`. Previously, if +a masked array was input, the list of polygons within the collection would shrink +to the size of valid polygons and users were required to keep track of which +polygons were drawn and call ``set_array()`` with the smaller "compressed" array size. +Passing the "compressed" and flattened array values is now deprecated and the +full 2D array of values (including the mask) should be passed +to `.PolyQuadMesh.set_array`. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25101-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25101-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..be937fb3cf0dde4ff9cc061b405de0b1bc323918 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25101-AL.rst @@ -0,0 +1,3 @@ +``LocationEvent.lastevent`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~ +... is deprecated with no replacement. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25138-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25138-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..ef2b1c750e258429fd2296d6a4a176d56c91a433 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25138-AL.rst @@ -0,0 +1,6 @@ +``allsegs``, ``allkinds``, ``tcolors`` and ``tlinewidths`` attributes of `.ContourSet` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +These attributes are deprecated; if required, directly retrieve the vertices +and codes of the Path objects from ``ContourSet.get_paths()`` and the colors +and the linewidths via ``ContourSet.get_facecolor()``, ``ContourSet.get_edgecolor()`` +and ``ContourSet.get_linewidths()``. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25247-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25247-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..2b922b874f5fe814b255a5581c632581b6087e1a --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25247-AL.rst @@ -0,0 +1,9 @@ +``ContourSet.collections`` +~~~~~~~~~~~~~~~~~~~~~~~~~~ +... is deprecated. `.ContourSet` is now implemented as a single `.Collection` of paths, +each path corresponding to a contour level, possibly including multiple unconnected +components. + +During the deprecation period, accessing ``ContourSet.collections`` will revert the +current ContourSet instance to the old object layout, with a separate `.PathCollection` +per contour level. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25282-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25282-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..0915ba5c65f0cf35e52756dc8f5616397b19cdd1 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25282-AL.rst @@ -0,0 +1,3 @@ +``INVALID_NON_AFFINE``, ``INVALID_AFFINE``, ``INVALID`` attributes of ``TransformNode`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +These attributes are deprecated. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25352-GL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25352-GL.rst new file mode 100644 index 0000000000000000000000000000000000000000..e7edd57a6453dd1110fefb432925b9cc34bc78e6 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25352-GL.rst @@ -0,0 +1,4 @@ +``Grouper.clean()`` +~~~~~~~~~~~~~~~~~~~ + +with no replacement. The Grouper class now cleans itself up automatically. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25427-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25427-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..1f1c886b35595be5f52e4f6ec63ebc2147b1c46d --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25427-AL.rst @@ -0,0 +1,4 @@ +``GridHelperCurveLinear.get_data_boundary`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +... is deprecated. Use ``grid_finder.extreme_finder(*[None] * 5)`` to get the +extremes of the grid. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25469-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25469-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..94432a0db1bfa1b12191f449ab1cea5dca428f0a --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25469-AL.rst @@ -0,0 +1,5 @@ +*np_load* parameter of ``cbook.get_sample_data`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +This parameter is deprecated; `.get_sample_data` now auto-loads numpy arrays. +Use ``get_sample_data(..., asfileobj=False)`` instead to get the filename of +the data file, which can then be passed to `open`, if desired. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25484-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25484-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..d6989dcea25fe20b32f5f81274bb4ed906b3f194 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25484-AL.rst @@ -0,0 +1,4 @@ +``RendererAgg.tostring_rgb`` and ``FigureCanvasAgg.tostring_rgb`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +... are deprecated with no direct replacement. Consider using ``buffer_rgba`` +instead, which should cover most use cases. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25557-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25557-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..32b6debb23d85ebf30ba5e22c0a747a0413f0c6a --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25557-AL.rst @@ -0,0 +1,3 @@ +The parameter of ``Annotation.contains`` and ``Legend.contains`` is renamed to *mouseevent* +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +... consistently with `.Artist.contains`. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25559-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25559-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..0c1e5d785e81a03beb595f3f9beecd74f5e76ea4 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25559-AL.rst @@ -0,0 +1,5 @@ +Accessing ``event.guiEvent`` after event handlers return +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +... is deprecated: for some GUI toolkits, it is unsafe to do so. In the +future, ``event.guiEvent`` will be set to None once the event handlers return; +you may separately stash the object at your own risk. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25584-KS.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25584-KS.rst new file mode 100644 index 0000000000000000000000000000000000000000..d4a52cba06edda9530dd7ae6022a24d2130d2327 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25584-KS.rst @@ -0,0 +1,5 @@ +Widgets +~~~~~~~ + +The *visible* attribute getter of Selector widgets has been deprecated; +use ``get_visible`` diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25588-KS.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25588-KS.rst new file mode 100644 index 0000000000000000000000000000000000000000..bbe1549fc85e86664761555b1139265cebfb05c2 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25588-KS.rst @@ -0,0 +1,19 @@ +Method parameters renamed to match base classes +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The only parameter of ``transform_affine`` and ``transform_non_affine`` in ``Transform`` subclasses is renamed +to *values*. + +The *points* parameter of ``transforms.IdentityTransform.transform`` is renamed to *values*. + +The *trans* parameter of ``table.Cell.set_transform`` is renamed to *t* consistently with +`.Artist.set_transform`. + +The *clippath* parameters of ``axis.Axis.set_clip_path`` and ``axis.Tick.set_clip_path`` are +renamed to *path* consistently with `.Artist.set_clip_path`. + +The *s* parameter of ``images.NonUniformImage.set_filternorm`` is renamed to *filternorm* +consistently with ```_ImageBase.set_filternorm``. + +The *s* parameter of ``images.NonUniformImage.set_filterrad`` is renamed to *filterrad* +consistently with ```_ImageBase.set_filterrad``. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25651-REC.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25651-REC.rst new file mode 100644 index 0000000000000000000000000000000000000000..dd588ad76bcfb7cffcf0d373dad20987a30eb628 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25651-REC.rst @@ -0,0 +1,3 @@ +*numdecs* parameter and attribute of ``LogLocator`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +... are deprecated without replacement, because they have no effect. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25708-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25708-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..9e4fa2a336afa29fc4030bb837a75cfd2d136adc --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25708-AL.rst @@ -0,0 +1,3 @@ +``NavigationToolbar2QT.message`` is deprecated +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +... with no replacement. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25728-OG.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25728-OG.rst new file mode 100644 index 0000000000000000000000000000000000000000..09af74845c4a4d300e4794bddec54fb5b44b5bef --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25728-OG.rst @@ -0,0 +1,4 @@ +``ft2font.FT2Image.draw_rect`` and ``ft2font.FT2Font.get_xys`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +... are deprecated as they are unused. If you rely on these, please let us know. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25742-ES.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25742-ES.rst new file mode 100644 index 0000000000000000000000000000000000000000..2189a0665b65f81b40a3df2eb51b8a4b19a73798 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25742-ES.rst @@ -0,0 +1,5 @@ +``backend_ps.psDefs`` +~~~~~~~~~~~~~~~~~~~~~ + +The ``psDefs`` module-level variable in ``backend_ps`` is deprecated with no +replacement. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25774-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25774-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..0e018429e642d774f16e80edbaa82dfa74c51170 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25774-AL.rst @@ -0,0 +1,4 @@ +Callable axisartist Axes +~~~~~~~~~~~~~~~~~~~~~~~~ +Calling an axisartist Axes to mean `~matplotlib.pyplot.axis` is deprecated; explicitly +call the method instead. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25781-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25781-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..4416376c2ca44372bbbe13cedb0a0b12f96e956f --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25781-AL.rst @@ -0,0 +1,4 @@ +``AnchoredEllipse`` is deprecated +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Instead, directly construct an `.AnchoredOffsetbox`, an `.AuxTransformBox`, and an +`~.patches.Ellipse`, as demonstrated in :doc:`/gallery/misc/anchored_artists`. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25785-ES.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25785-ES.rst new file mode 100644 index 0000000000000000000000000000000000000000..656a3bfad81662d6efc5f54dea6f262e4f4b6cb5 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25785-ES.rst @@ -0,0 +1,6 @@ +Automatic papersize selection in PostScript +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Setting :rc:`ps.papersize` to ``'auto'`` or passing ``papersize='auto'`` to +`.Figure.savefig` is deprecated. Either pass an explicit paper type name, or +omit this parameter to use the default from the rcParam. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25841-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25841-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..70ebc012ab443d2b6288c1d36d4ac14edf08a10e --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25841-AL.rst @@ -0,0 +1,4 @@ +``Tick.set_label1`` and ``Tick.set_label2`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +... are deprecated. Calling these methods from third-party code usually has no +effect, as the labels are overwritten at draw time by the tick formatter. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25859-ES.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25859-ES.rst new file mode 100644 index 0000000000000000000000000000000000000000..a7de954c621575d613ce6d673d97961157fe354b --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25859-ES.rst @@ -0,0 +1,5 @@ +Passing extra positional arguments to ``Figure.add_axes`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Positional arguments passed to `.Figure.add_axes` other than a rect or an +existing ``Axes`` are currently ignored, and doing so is now deprecated. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25889-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25889-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..123c4b88c17bb17b7226bb9db430da1feae46139 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/25889-AL.rst @@ -0,0 +1,4 @@ +``CbarAxesBase.toggle_label`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +... is deprecated. Instead, use standard methods for manipulating colorbar +labels (`.Colorbar.set_label`) and tick labels (`.Axes.tick_params`). diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26056-OG.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26056-OG.rst new file mode 100644 index 0000000000000000000000000000000000000000..66b7a3221d0d5f01e3bc9153a2999f246f101008 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26056-OG.rst @@ -0,0 +1,5 @@ +``TexManager.texcache`` +~~~~~~~~~~~~~~~~~~~~~~~ + +... is considered private and deprecated. The location of the cache directory is +clarified in the doc-string. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26190-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26190-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..0bf4bd15097cbbac2ce455b39f21f76c25413ade --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26190-AL.rst @@ -0,0 +1,7 @@ +Artists explicitly passed in will no longer be filtered by legend() based on their label +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Currently, artists explicitly passed to ``legend(handles=[...])`` are filtered +out if their label starts with an underscore. This behavior is deprecated; +explicitly filter out such artists +(``[art for art in artists if not art.get_label().startswith('_')]``) if +necessary. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26241-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26241-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..40b4fa277deb25057b80770f421576918b199468 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26241-AL.rst @@ -0,0 +1,3 @@ +``FigureCanvasBase.switch_backends`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +... is deprecated with no replacement. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26294-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26294-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..97b4a7f29d4865fd4d255ceaa9ea04f8ce04acc0 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26294-AL.rst @@ -0,0 +1,3 @@ +``cbook.Stack`` is deprecated +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +... with no replacement. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26295-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26295-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..f62d409911968e09732f792f84ead9be696d6db6 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26295-AL.rst @@ -0,0 +1,3 @@ +``inset_location.InsetPosition`` is deprecated +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Use `~.Axes.inset_axes` instead. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26329-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26329-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..ca06e94639ddab6d479f7e97610651fa9533640c --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26329-AL.rst @@ -0,0 +1,5 @@ +``axisartist.axes_grid`` and ``axisartist.axes_rgb`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +These modules, which provide wrappers combining the functionality of +`.axes_grid1` and `.axisartist`, are deprecated; directly use e.g. +``AxesGrid(..., axes_class=axislines.Axes)`` instead. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26399-REC.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26399-REC.rst new file mode 100644 index 0000000000000000000000000000000000000000..99af88b8d9eab0148d56e065b5caf7bee7ba0938 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26399-REC.rst @@ -0,0 +1,5 @@ +``ContourSet.antialiased`` +~~~~~~~~~~~~~~~~~~~~~~~~~~ +... is deprecated; use `~.Collection.get_antialiased` or +`~.Collection.set_antialiased` instead. Note that `~.Collection.get_antialiased` +returns an array. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26444-ES.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26444-ES.rst new file mode 100644 index 0000000000000000000000000000000000000000..6e5b48532f2a1cb724184fa22b5d4b3b7e761814 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26444-ES.rst @@ -0,0 +1,5 @@ +Passing non-int or sequence of non-int to ``Table.auto_set_column_width`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Column numbers are ints, and formerly passing any other type was effectively +ignored. This will become an error in the future. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26469-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26469-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..1a9b14047c086884184c7c76104f8d3eda6e64f8 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26469-AL.rst @@ -0,0 +1,13 @@ +``PdfPages(keep_empty=True)`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +A zero-page pdf is not valid, thus passing ``keep_empty=True`` to +`.backend_pdf.PdfPages` and `.backend_pgf.PdfPages`, and the ``keep_empty`` +attribute of these classes, are deprecated. Currently, these classes default +to keeping empty outputs, but that behavior is deprecated too. Explicitly +passing ``keep_empty=False`` remains supported for now to help transition to +the new behavior. + +Furthermore, `.backend_pdf.PdfPages` no longer immediately creates the target +file upon instantiation, but only when the first figure is saved. To fully +control file creation, directly pass an opened file object as argument +(``with open(path, "wb") as file, PdfPages(file) as pdf: ...``). diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26472-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26472-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..d603c4bb08dccd194da250570b2a327eba21fe11 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26472-AL.rst @@ -0,0 +1,5 @@ +Auto-closing of figures when switching backend +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +... is deprecated. Explicitly call ``plt.close("all")`` if necessary. In the +future, allowable backend switches (i.e. those that do not swap a GUI event +loop with another one) will not close existing figures. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26780-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26780-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..96cfdab93f551660db297be4e88b10c4f71c66cb --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/deprecations/26780-AL.rst @@ -0,0 +1,3 @@ +Support for passing the "frac" key in ``annotate(..., arrowprops={"frac": ...})`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +... has been removed. This key has had no effect since Matplotlib 1.5. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/development/00001-ABC.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/development/00001-ABC.rst new file mode 100644 index 0000000000000000000000000000000000000000..6db90a13e44c15ad94f4b38a8673ca11112a74fb --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/development/00001-ABC.rst @@ -0,0 +1,7 @@ +Development change template +~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Enter description here.... + +Please rename file with PR number and your initials i.e. "99999-ABC.rst" +and ``git add`` the new file. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/development/24531-DOS.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/development/24531-DOS.rst new file mode 100644 index 0000000000000000000000000000000000000000..9de154e410c6a8abea837845ca596705dd841915 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/development/24531-DOS.rst @@ -0,0 +1,13 @@ +Increase to minimum supported optional dependencies +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +For Matplotlib 3.8, the :ref:`minimum supported versions of optional dependencies +` are being bumped: + ++------------+-----------------+---------------+ +| Dependency | min in mpl3.7 | min in mpl3.8 | ++============+=================+===============+ +| Tk | 8.4 | 8.5 | ++------------+-----------------+---------------+ + +This is consistent with our :ref:`min_deps_policy` diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/development/24919-KS.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/development/24919-KS.rst new file mode 100644 index 0000000000000000000000000000000000000000..fece0616ac71050ce33618795c9b0ba079ed5b90 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/development/24919-KS.rst @@ -0,0 +1,20 @@ +Increase to minimum supported versions of dependencies +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +For Matplotlib 3.8, the :ref:`minimum supported versions ` are +being bumped: + ++------------+-----------------+---------------+ +| Dependency | min in mpl3.7 | min in mpl3.8 | ++============+=================+===============+ +| Python | 3.8 | 3.9 | ++------------+-----------------+---------------+ +| kiwisolver | 1.0.1 | 1.3.1 | ++------------+-----------------+---------------+ +| NumPy | 1.20.0 | 1.21.0 | ++------------+-----------------+---------------+ +| Pillow | 6.2.1 | 8.0 | ++------------+-----------------+---------------+ + +This is consistent with our :ref:`min_deps_policy` and `NEP29 +`__ diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/development/24976-KS.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/development/24976-KS.rst new file mode 100644 index 0000000000000000000000000000000000000000..8d20cee441be6c7d05b0b53bc448280360991daf --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/development/24976-KS.rst @@ -0,0 +1,18 @@ +Provisional support for PEP484 Type Hint Annotations +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +New public API should be type hinted in ``.pyi`` stub files (except ``pyplot`` and tests +which are typed in-line). +Tests should be type hinted minimally, essentially only when ``mypy`` generates errors. + +CI and configuration for running ``mypy`` have been added. + + +Generation of ``pyplot.py`` requires ``black`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The autogenerated portions of ``pyplot.py`` use ``black`` autoformatting to ensure +syntax-correct, readable output code. + +As such ``black`` is now a development and test requirement (for the test which +regenerates ``pyplot``). diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/development/25363-OG.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/development/25363-OG.rst new file mode 100644 index 0000000000000000000000000000000000000000..c73696d3472cfe12babb40c357872e6e7deb0da7 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/development/25363-OG.rst @@ -0,0 +1,4 @@ +Support for Qt<5.12 has been dropped +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +... as there are no wheels or conda packages that support both Qt 5.11 (or +older) and Python 3.9 (or newer). diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/development/25475-ES.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/development/25475-ES.rst new file mode 100644 index 0000000000000000000000000000000000000000..58c0b518b40749e65ddd8f91406cf26f2a726aa6 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/development/25475-ES.rst @@ -0,0 +1,9 @@ +Wheels for some systems are no longer distributed +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Pre-compiled wheels for 32-bit Linux and Windows are no longer provided on PyPI +since Matplotlib 3.8. + +Multi-architecture ``universal2`` wheels for macOS are no longer provided on PyPI since +Matplotlib 3.8. In general, ``pip`` will always prefer the architecture-specific +(``amd64``- or ``arm64``-only) wheels, so these provided little benefit. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/development/26443-TAC.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/development/26443-TAC.rst new file mode 100644 index 0000000000000000000000000000000000000000..b7f3bf47573f38f5ea6245be4fd2d7e4b1d392b3 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/development/26443-TAC.rst @@ -0,0 +1,7 @@ +New wheel architectures +~~~~~~~~~~~~~~~~~~~~~~~ + + +Wheels have been added for: + +- musl based systems diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/removals/00001-ABC.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/removals/00001-ABC.rst new file mode 100644 index 0000000000000000000000000000000000000000..3cc5b6344f7f1913836ab14b0051a18974c0b5da --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/removals/00001-ABC.rst @@ -0,0 +1,7 @@ +Removal change template +~~~~~~~~~~~~~~~~~~~~~~~ + +Enter description of methods/classes removed here.... + +Please rename file with PR number and your initials i.e. "99999-ABC.rst" +and ``git add`` the new file. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/removals/24923-ES.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/removals/24923-ES.rst new file mode 100644 index 0000000000000000000000000000000000000000..fcab80e66e8db320982c7d6b94969fcac70af0f5 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/removals/24923-ES.rst @@ -0,0 +1,15 @@ +cbook removals +~~~~~~~~~~~~~~ + +- ``matplotlib.cbook.MatplotlibDeprecationWarning`` and + ``matplotlib.cbook.mplDeprecation`` are removed; use + `matplotlib.MatplotlibDeprecationWarning` instead. +- ``cbook.maxdict``; use the standard library ``functools.lru_cache`` instead. + +Groupers from ``get_shared_x_axes`` / ``get_shared_y_axes`` are immutable +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Modifications to the Groupers returned by ``get_shared_x_axes`` and +``get_shared_y_axes`` are no longer allowed. Note that previously, calling e.g. +``join()`` would already fail to set up the correct structures for sharing +axes; use `.Axes.sharex` or `.Axes.sharey` instead. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/removals/24942-OG.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/removals/24942-OG.rst new file mode 100644 index 0000000000000000000000000000000000000000..9e08140110ba7793a865bf2ec78e61cdf0421ad9 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/removals/24942-OG.rst @@ -0,0 +1,11 @@ +Deprecated modules removed +~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The following deprecated modules are removed: + +* ``afm`` +* ``docstring`` +* ``fontconfig_pattern`` +* ``tight_bbox`` +* ``tight_layout`` +* ``type1font`` diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/removals/24984-OG.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/removals/24984-OG.rst new file mode 100644 index 0000000000000000000000000000000000000000..59d6d12ba9265f5939773ff819f509ea8b5d21e6 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/removals/24984-OG.rst @@ -0,0 +1,174 @@ +Parameters to ``plt.figure()`` and the ``Figure`` constructor +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +All parameters to `.pyplot.figure` and the `.Figure` constructor, other than +*num*, *figsize*, and *dpi*, are now keyword-only. + +``stem(..., use_line_collection=False)`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +... is no longer supported. This was a compatibility fallback to a +former more inefficient representation of the stem lines. + +Positional / keyword arguments +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Passing all but the very few first arguments positionally in the constructors +of Artists is no longer possible. Most arguments are now keyword-only. + +The *emit* and *auto* parameters of ``set_xlim``, ``set_ylim``, +``set_zlim``, ``set_rlim`` are now keyword-only. + +The *transOffset* parameter of `.Collection.set_offset_transform` and the +various ``create_collection`` methods of legend handlers has been renamed to +*offset_transform* (consistently with the property name). + +``Axes.get_window_extent`` / ``Figure.get_window_extent`` accept only +*renderer*. This aligns the API with the general `.Artist.get_window_extent` +API. All other parameters were ignored anyway. + +Methods to set parameters in ``LogLocator`` and ``LogFormatter*`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +In `~.LogFormatter` and derived subclasses, the methods ``base`` and +``label_minor`` for setting the respective parameter are removed and +replaced by ``set_base`` and ``set_label_minor``, respectively. + +In `~.LogLocator`, the methods ``base`` and ``subs`` for setting the respective +parameter are removed. Instead, use ``set_params(base=..., subs=...)``. + +``Axes.get_renderer_cache`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The canvas now takes care of the renderer and whether to cache it or not, +so the ``Axes.get_renderer_cache`` method is removed. The +alternative is to call ``axes.figure.canvas.get_renderer()``. + +Unused methods in ``Axis``, ``Tick``, ``XAxis``, and ``YAxis`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +``Tick.label`` is now removed. Use ``Tick.label1`` instead. + +The following methods are no longer used and removed without a replacement: + +- ``Axis.get_ticklabel_extents`` +- ``Tick.get_pad_pixels`` +- ``XAxis.get_text_heights`` +- ``YAxis.get_text_widths`` + +``mlab.stride_windows`` +~~~~~~~~~~~~~~~~~~~~~~~ + +... is removed. Use ``numpy.lib.stride_tricks.sliding_window_view`` instead. + +``Axes3D`` +~~~~~~~~~~ + +The ``dist`` attribute has been privatized. Use the *zoom* keyword argument in +`.Axes3D.set_box_aspect` instead. + +The ``w_xaxis``, ``w_yaxis``, and ``w_zaxis`` attributes are now removed. +Instead use ``xaxis``, ``yaxis``, and ``zaxis``. + +3D Axis +~~~~~~~ + +``mplot3d.axis3d.Axis.set_pane_pos`` is removed. This is an internal method +where the provided values are overwritten during drawing. Hence, it does not +serve any purpose to be directly accessible. + +The two helper functions ``mplot3d.axis3d.move_from_center`` and +``mplot3d.axis3d.tick_update_position`` are considered internal and deprecated. +If these are required, please vendor the code from the corresponding private +methods ``_move_from_center`` and ``_tick_update_position``. + +``checkdep_usetex`` removed +~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +This method was only intended to disable tests in case no latex install was +found. As such, it is considered to be private and for internal use only. + +Please vendor the code from a previous version if you need this. + +``date_ticker_factory`` removed +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The ``date_ticker_factory`` method in the `matplotlib.dates` module is +removed. Instead use `~.AutoDateLocator` and `~.AutoDateFormatter` for a +more flexible and scalable locator and formatter. + +If you need the exact ``date_ticker_factory`` behavior, please copy the code +from a previous version. + +``transforms.Affine2D.identity()`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +... is removed in favor of directly calling the `.Affine2D` constructor with +no arguments. + +Removals in ``testing.decorators`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The unused class ``CleanupTestCase`` and decorator ``cleanup`` are removed. +The function ``check_freetype_version`` is considered internal and removed. +Vendor the code from a previous version. + +``text.get_rotation()`` +~~~~~~~~~~~~~~~~~~~~~~~ + +... is removed with no replacement. Copy the previous implementation if +needed. + +Miscellaneous internals +~~~~~~~~~~~~~~~~~~~~~~~ + +- ``axes_grid1.axes_size.AddList``; use ``sum(sizes, start=Fixed(0))`` (for + example) to sum multiple size objects. +- ``axes_size.Padded``; use ``size + pad`` instead +- ``axes_size.SizeFromFunc``, ``axes_size.GetExtentHelper`` +- ``AxisArtistHelper.delta1`` and ``AxisArtistHelper.delta2`` +- ``axislines.GridHelperBase.new_gridlines`` and + ``axislines.Axes.new_gridlines`` +- ``_DummyAxis.dataLim`` and ``_DummyAxis.viewLim``; use + ``get_data_interval()``, ``set_data_interval()``, ``get_view_interval()``, + and ``set_view_interval()`` instead. +- ``ImageMagickBase.delay`` and ``ImageMagickBase.output_args`` +- ``MathtextBackend``, ``MathtextBackendAgg``, ``MathtextBackendPath``, + ``MathTextWarning`` +- ``TexManager.get_font_config``; it previously returned an internal hashed key + for used for caching purposes. +- ``TextToPath.get_texmanager``; directly construct a `.texmanager.TexManager` + instead. +- ``ticker.is_close_to_int``; use ``math.isclose(x, round(x))`` instead. +- ``ticker.is_decade``; use ``y = numpy.log(x)/numpy.log(base); + numpy.isclose(y, numpy.round(y))`` instead. + + +Backend-specific removals +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +- ``backend_pdf.Name.hexify`` +- ``backend_pdf.Operator`` and ``backend_pdf.Op.op`` are removed in favor of + a single standard `enum.Enum` interface on `.backend_pdf.Op`. +- ``backend_pdf.fill``; vendor the code of the similarly named private + functions if you rely on these functions. +- ``backend_pgf.LatexManager.texcommand`` and + ``backend_pgf.LatexManager.latex_header`` +- ``backend_pgf.NO_ESCAPE`` +- ``backend_pgf.common_texification`` +- ``backend_pgf.get_fontspec`` +- ``backend_pgf.get_preamble`` +- ``backend_pgf.re_mathsep`` +- ``backend_pgf.writeln`` +- ``backend_ps.convert_psfrags`` +- ``backend_ps.quote_ps_string``; vendor the code of the similarly named + private functions if you rely on it. +- ``backend_svg.escape_attrib``; vendor the code of the similarly named private + functions if you rely on it. +- ``backend_svg.escape_cdata``; vendor the code of the similarly named private + functions if you rely on it. +- ``backend_svg.escape_comment``; vendor the code of the similarly named + private functions if you rely on it. +- ``backend_svg.short_float_fmt``; vendor the code of the similarly named + private functions if you rely on it. +- ``backend_svg.generate_transform`` and ``backend_svg.generate_css`` diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/removals/25456-AL.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/removals/25456-AL.rst new file mode 100644 index 0000000000000000000000000000000000000000..2d9011a504cef6bcc2cec1735b66a676c7adb2ca --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/removals/25456-AL.rst @@ -0,0 +1,51 @@ +Removal of deprecated APIs +~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The following deprecated APIs have been removed. Unless a replacement is stated, please +vendor the previous implementation if needed. + +- The following methods of `.FigureCanvasBase`: ``pick`` (use ``Figure.pick`` instead), + ``resize``, ``draw_event``, ``resize_event``, ``close_event``, ``key_press_event``, + ``key_release_event``, ``pick_event``, ``scroll_event``, ``button_press_event``, + ``button_release_event``, ``motion_notify_event``, ``leave_notify_event``, + ``enter_notify_event`` (for all the ``foo_event`` methods, construct the relevant + `.Event` object and call ``canvas.callbacks.process(event.name, event)`` instead). +- ``ToolBase.destroy`` (connect to ``tool_removed_event`` instead). +- The *cleared* parameter to `.FigureCanvasAgg.get_renderer` (call ``renderer.clear()`` + instead). +- The following methods of `.RendererCairo`: ``set_ctx_from_surface`` and + ``set_width_height`` (use ``set_context`` instead, which automatically infers the + canvas size). +- The ``window`` or ``win`` parameters and/or attributes of ``NavigationToolbar2Tk``, + ``NavigationToolbar2GTK3``, and ``NavigationToolbar2GTK4``, and the ``lastrect`` + attribute of ``NavigationToolbar2Tk`` +- The ``error_msg_gtk`` function and the ``icon_filename`` and ``window_icon`` globals + in ``backend_gtk3``; the ``error_msg_wx`` function in ``backend_wx``. +- ``FigureManagerGTK3Agg`` and ``FigureManagerGTK4Agg`` (use ``FigureManagerGTK3`` + instead); ``RendererGTK3Cairo`` and ``RendererGTK4Cairo``. +- ``NavigationToolbar2Mac.prepare_configure_subplots`` (use + `~.NavigationToolbar2.configure_subplots` instead). +- ``FigureManagerMac.close``. +- The ``qApp`` global in `.backend_qt` (use ``QtWidgets.QApplication.instance()`` + instead). +- The ``offset_text_height`` method of ``RendererWx``; the ``sizer``, ``figmgr``, + ``num``, ``toolbar``, ``toolmanager``, ``get_canvas``, and ``get_figure_manager`` + attributes or methods of ``FigureFrameWx`` (use ``frame.GetSizer()``, + ``frame.canvas.manager``, ``frame.canvas.manager.num``, ``frame.GetToolBar()``, + ``frame.canvas.manager.toolmanager``, the *canvas_class* constructor parameter, and + ``frame.canvas.manager``, respectively, instead). +- ``FigureFrameWxAgg`` and ``FigureFrameWxCairo`` (use + ``FigureFrameWx(..., canvas_class=FigureCanvasWxAgg)`` and + ``FigureFrameWx(..., canvas_class=FigureCanvasWxCairo)``, respectively, instead). +- The ``filled`` attribute and the ``draw_all`` method of `.Colorbar` (instead of + ``draw_all``, use ``figure.draw_without_rendering``). +- Calling `.MarkerStyle` without setting the *marker* parameter or setting it to None + (use ``MarkerStyle("")`` instead). +- Support for third-party canvas classes without a ``required_interactive_framework`` + attribute (this can only occur if the canvas class does not inherit from + `.FigureCanvasBase`). +- The ``canvas`` and ``background`` attributes of `.MultiCursor`; the + ``state_modifier_keys`` attribute of selector widgets. +- Passing *useblit*, *horizOn*, or *vertOn* positionally to `.MultiCursor`. +- Support for the ``seaborn-`` styles; use ``seaborn-v0_8-`` instead, or + directly use the seaborn API. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/removals/25584-KS.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/removals/25584-KS.rst new file mode 100644 index 0000000000000000000000000000000000000000..45fc1aa2de174204c358fc0d3e8556cd7755a9eb --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/removals/25584-KS.rst @@ -0,0 +1,24 @@ +``Figure.callbacks`` is removed +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The Figure ``callbacks`` property has been removed. The only signal was +"dpi_changed", which can be replaced by connecting to the "resize_event" on the +canvas ``figure.canvas.mpl_connect("resize_event", func)`` instead. + + + +Passing too many positional arguments to ``tripcolor`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +... raises ``TypeError`` (extra arguments were previously ignored). + + +The *filled* argument to ``Colorbar`` is removed +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +This behavior was already governed by the underlying ``ScalarMappable``. + + +Widgets +~~~~~~~ + +The *visible* attribute setter of Selector widgets has been removed; use ``set_visible`` +The associated getter is also deprecated, but not yet expired. diff --git a/testbed/matplotlib__matplotlib/doc/api/next_api_changes/removals/25648-TS.rst b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/removals/25648-TS.rst new file mode 100644 index 0000000000000000000000000000000000000000..59189e9eb217d2e7dd0a8cd95c5a49fd9f0ae385 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/next_api_changes/removals/25648-TS.rst @@ -0,0 +1,6 @@ +``Axes3D.set_frame_on`` and ``Axes3D.get_frame_on`` removed +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +``Axes3D.set_frame_on`` is documented as "Set whether the 3D axes panels are +drawn.". However, it has no effect on 3D axes and is being removed in +favor of ``Axes3D.set_axis_on`` and ``Axes3D.set_axis_off``. diff --git a/testbed/matplotlib__matplotlib/doc/api/offsetbox_api.rst b/testbed/matplotlib__matplotlib/doc/api/offsetbox_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..667444fdf55f9cb91d600f4ef788b957b31bef8a --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/offsetbox_api.rst @@ -0,0 +1,11 @@ +************************ +``matplotlib.offsetbox`` +************************ + +.. inheritance-diagram:: matplotlib.offsetbox + :parts: 1 + +.. automodule:: matplotlib.offsetbox + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/patches_api.rst b/testbed/matplotlib__matplotlib/doc/api/patches_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..5b1eefa919717ae8b44918f3668cc4ab290c3be6 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/patches_api.rst @@ -0,0 +1,50 @@ +********************** +``matplotlib.patches`` +********************** + + +.. inheritance-diagram:: matplotlib.patches + :parts: 1 + +.. automodule:: matplotlib.patches + :no-members: + :no-inherited-members: + +Classes +------- + +.. autosummary:: + :toctree: _as_gen/ + :template: autosummary.rst + + Annulus + Arc + Arrow + ArrowStyle + BoxStyle + Circle + CirclePolygon + ConnectionPatch + ConnectionStyle + Ellipse + FancyArrow + FancyArrowPatch + FancyBboxPatch + Patch + PathPatch + StepPatch + Polygon + Rectangle + RegularPolygon + Shadow + Wedge + +Functions +--------- + +.. autosummary:: + :toctree: _as_gen/ + :template: autosummary.rst + + bbox_artist + draw_bbox diff --git a/testbed/matplotlib__matplotlib/doc/api/path_api.rst b/testbed/matplotlib__matplotlib/doc/api/path_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..4ee7200b1921c2b58b6b1c482f8d62f06e59f755 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/path_api.rst @@ -0,0 +1,8 @@ +******************* +``matplotlib.path`` +******************* + +.. automodule:: matplotlib.path + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/patheffects_api.rst b/testbed/matplotlib__matplotlib/doc/api/patheffects_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..1f124b051d135667ab6c76af5a287347e1323761 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/patheffects_api.rst @@ -0,0 +1,8 @@ +************************** +``matplotlib.patheffects`` +************************** + +.. automodule:: matplotlib.patheffects + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/projections/geo.rst b/testbed/matplotlib__matplotlib/doc/api/projections/geo.rst new file mode 100644 index 0000000000000000000000000000000000000000..beaa7ec343f3ef43ca8bd18dd7ff99eb5131728d --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/projections/geo.rst @@ -0,0 +1,7 @@ +****************************** +``matplotlib.projections.geo`` +****************************** + +.. automodule:: matplotlib.projections.geo + :members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/projections/polar.rst b/testbed/matplotlib__matplotlib/doc/api/projections/polar.rst new file mode 100644 index 0000000000000000000000000000000000000000..3491fd92d16e9c937f5c49fb4a5dc9da61ffc7d6 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/projections/polar.rst @@ -0,0 +1,7 @@ +******************************** +``matplotlib.projections.polar`` +******************************** + +.. automodule:: matplotlib.projections.polar + :members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/quiver_api.rst b/testbed/matplotlib__matplotlib/doc/api/quiver_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..8dbcce61beb5529502ba379ea888ac923f13859c --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/quiver_api.rst @@ -0,0 +1,20 @@ +********************* +``matplotlib.quiver`` +********************* + +.. currentmodule:: matplotlib.quiver + +.. automodule:: matplotlib.quiver + :no-members: + :no-inherited-members: + +Classes +------- + +.. autosummary:: + :toctree: _as_gen/ + :template: autosummary.rst + + Quiver + QuiverKey + Barbs diff --git a/testbed/matplotlib__matplotlib/doc/api/rcsetup_api.rst b/testbed/matplotlib__matplotlib/doc/api/rcsetup_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..7c5d109e2a78a815416ec9da3cd658eb55778353 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/rcsetup_api.rst @@ -0,0 +1,8 @@ +********************** +``matplotlib.rcsetup`` +********************** + +.. automodule:: matplotlib.rcsetup + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/sphinxext_mathmpl_api.rst b/testbed/matplotlib__matplotlib/doc/api/sphinxext_mathmpl_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..839334ca39fec1bed6993e1c6874e62decd2cf2c --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/sphinxext_mathmpl_api.rst @@ -0,0 +1,7 @@ +================================ +``matplotlib.sphinxext.mathmpl`` +================================ + +.. automodule:: matplotlib.sphinxext.mathmpl + :exclude-members: latex_math + :no-undoc-members: diff --git a/testbed/matplotlib__matplotlib/doc/api/sphinxext_plot_directive_api.rst b/testbed/matplotlib__matplotlib/doc/api/sphinxext_plot_directive_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..a3b75c09bdd8514a809a6ff9c93159563cb29f18 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/sphinxext_plot_directive_api.rst @@ -0,0 +1,6 @@ +======================================= +``matplotlib.sphinxext.plot_directive`` +======================================= + +.. automodule:: matplotlib.sphinxext.plot_directive + :no-undoc-members: diff --git a/testbed/matplotlib__matplotlib/doc/api/spines_api.rst b/testbed/matplotlib__matplotlib/doc/api/spines_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..f119ef4e80f431e1f6b7157c933cfdb9e258d721 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/spines_api.rst @@ -0,0 +1,8 @@ +********************* +``matplotlib.spines`` +********************* + +.. automodule:: matplotlib.spines + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/table_api.rst b/testbed/matplotlib__matplotlib/doc/api/table_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..ee44af0949f7bf9d8a930ada3c115a73a5b352de --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/table_api.rst @@ -0,0 +1,8 @@ +******************** +``matplotlib.table`` +******************** + +.. automodule:: matplotlib.table + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/texmanager_api.rst b/testbed/matplotlib__matplotlib/doc/api/texmanager_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..0dc52d2bc27cb83d53b236b9bc7da48473ac837f --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/texmanager_api.rst @@ -0,0 +1,8 @@ +************************* +``matplotlib.texmanager`` +************************* + +.. automodule:: matplotlib.texmanager + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/api/ticker_api.rst b/testbed/matplotlib__matplotlib/doc/api/ticker_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..652050dafedc0bfa7933898f94e3e37efd0691b6 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/ticker_api.rst @@ -0,0 +1,12 @@ +********************* +``matplotlib.ticker`` +********************* + +.. automodule:: matplotlib.ticker + :members: + :undoc-members: + :show-inheritance: + + +.. inheritance-diagram:: matplotlib.ticker + :parts: 1 diff --git a/testbed/matplotlib__matplotlib/doc/api/toolkits/axisartist.rst b/testbed/matplotlib__matplotlib/doc/api/toolkits/axisartist.rst new file mode 100644 index 0000000000000000000000000000000000000000..8cac4d68a266dcbda348973be0dc223e82b7b27e --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/toolkits/axisartist.rst @@ -0,0 +1,45 @@ +.. module:: mpl_toolkits.axisartist + +``mpl_toolkits.axisartist`` +=========================== + +The *axisartist* namespace provides a derived Axes implementation +(:class:`mpl_toolkits.axisartist.Axes`), designed to support curvilinear +grids. The biggest difference is that the artists that are responsible for +drawing axis lines, ticks, ticklabels, and axis labels are separated out from +Matplotlib's Axis class. + +You can find a tutorial describing usage of axisartist at the +:ref:`axisartist_users-guide-index` user guide. + +.. figure:: ../../gallery/axisartist/images/sphx_glr_demo_curvelinear_grid_001.png + :target: ../../gallery/axisartist/demo_curvelinear_grid.html + :align: center + :scale: 50 + +.. note:: + + This module contains classes and function that were formerly part of the + ``mpl_toolkits.axes_grid`` module that was removed in 3.6. Additional + classes from that older module may also be found in + `mpl_toolkits.axes_grid1`. + +.. currentmodule:: mpl_toolkits + +**The submodules of the axisartist API are:** + +.. autosummary:: + :toctree: ../_as_gen + :template: automodule.rst + + axisartist.angle_helper + axisartist.axes_divider + axisartist.axes_grid + axisartist.axes_rgb + axisartist.axis_artist + axisartist.axisline_style + axisartist.axislines + axisartist.floating_axes + axisartist.grid_finder + axisartist.grid_helper_curvelinear + axisartist.parasite_axes diff --git a/testbed/matplotlib__matplotlib/doc/api/tri_api.rst b/testbed/matplotlib__matplotlib/doc/api/tri_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..0b4e046eec08fac4beeabc24b708d2903b28d94e --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/tri_api.rst @@ -0,0 +1,38 @@ +****************** +``matplotlib.tri`` +****************** + +Unstructured triangular grid functions. + +.. py:module:: matplotlib.tri + +.. autoclass:: matplotlib.tri.Triangulation + :members: + +.. autoclass:: matplotlib.tri.TriContourSet + :show-inheritance: + +.. autoclass:: matplotlib.tri.TriFinder + +.. autoclass:: matplotlib.tri.TrapezoidMapTriFinder + :members: __call__ + :show-inheritance: + +.. autoclass:: matplotlib.tri.TriInterpolator + +.. autoclass:: matplotlib.tri.LinearTriInterpolator + :members: __call__, gradient + :show-inheritance: + +.. autoclass:: matplotlib.tri.CubicTriInterpolator + :members: __call__, gradient + :show-inheritance: + +.. autoclass:: matplotlib.tri.TriRefiner + +.. autoclass:: matplotlib.tri.UniformTriRefiner + :show-inheritance: + :members: + +.. autoclass:: matplotlib.tri.TriAnalyzer + :members: diff --git a/testbed/matplotlib__matplotlib/doc/api/units_api.rst b/testbed/matplotlib__matplotlib/doc/api/units_api.rst new file mode 100644 index 0000000000000000000000000000000000000000..aae2d7aa32543ddaab5c44262d07b4d95923846c --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/api/units_api.rst @@ -0,0 +1,8 @@ +******************** +``matplotlib.units`` +******************** + +.. automodule:: matplotlib.units + :members: + :undoc-members: + :show-inheritance: diff --git a/testbed/matplotlib__matplotlib/doc/conf.py b/testbed/matplotlib__matplotlib/doc/conf.py new file mode 100644 index 0000000000000000000000000000000000000000..21da93ee6f58ba8d87f5c36ad537fccb8d816ff1 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/conf.py @@ -0,0 +1,797 @@ +# Matplotlib documentation build configuration file, created by +# sphinx-quickstart on Fri May 2 12:33:25 2008. +# +# This file is execfile()d with the current directory set to its containing +# dir. +# +# The contents of this file are pickled, so don't put values in the namespace +# that aren't picklable (module imports are okay, they're removed +# automatically). +# +# All configuration values have a default value; values that are commented out +# serve to show the default value. + +import logging +import os +from pathlib import Path +import shutil +import subprocess +import sys +from urllib.parse import urlsplit, urlunsplit +import warnings + +import sphinx +import yaml + +import matplotlib + +from datetime import timezone +from datetime import datetime +import time + +# debug that building expected version +print(f"Building Documentation for Matplotlib: {matplotlib.__version__}") + +# Release mode enables optimizations and other related options. +is_release_build = tags.has('release') # noqa + +# are we running circle CI? +CIRCLECI = 'CIRCLECI' in os.environ + + +def _parse_skip_subdirs_file(): + """ + Read .mpl_skip_subdirs.yaml for subdirectories to not + build if we do `make html-skip-subdirs`. Subdirectories + are relative to the toplevel directory. Note that you + cannot skip 'users' as it contains the table of contents, + but you can skip subdirectories of 'users'. Doing this + can make partial builds very fast. + """ + default_skip_subdirs = ['users/prev_whats_new/*', 'api/*', 'gallery/*', + 'tutorials/*', 'plot_types/*', 'devel/*'] + try: + with open(".mpl_skip_subdirs.yaml", 'r') as fin: + print('Reading subdirectories to skip from', + '.mpl_skip_subdirs.yaml') + out = yaml.full_load(fin) + return out['skip_subdirs'] + except FileNotFoundError: + # make a default: + with open(".mpl_skip_subdirs.yaml", 'w') as fout: + yamldict = {'skip_subdirs': default_skip_subdirs, + 'comment': 'For use with make html-skip-subdirs'} + yaml.dump(yamldict, fout) + print('Skipping subdirectories, but .mpl_skip_subdirs.yaml', + 'not found so creating a default one. Edit this file', + 'to customize which directories are included in build.') + + return default_skip_subdirs + + +skip_subdirs = [] +# triggered via make html-skip-subdirs +if 'skip_sub_dirs=1' in sys.argv: + skip_subdirs = _parse_skip_subdirs_file() + +# Parse year using SOURCE_DATE_EPOCH, falling back to current time. +# https://reproducible-builds.org/specs/source-date-epoch/ +sourceyear = datetime.fromtimestamp( + int(os.environ.get('SOURCE_DATE_EPOCH', time.time())), timezone.utc).year + +# If your extensions are in another directory, add it here. If the directory +# is relative to the documentation root, use os.path.abspath to make it +# absolute, like shown here. +sys.path.append(os.path.abspath('.')) +sys.path.append('.') + +# General configuration +# --------------------- + +# Unless we catch the warning explicitly somewhere, a warning should cause the +# docs build to fail. This is especially useful for getting rid of deprecated +# usage in the gallery. +warnings.filterwarnings('error', append=True) + +# Add any Sphinx extension module names here, as strings. They can be +# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones. +extensions = [ + 'sphinx.ext.autodoc', + 'sphinx.ext.autosummary', + 'sphinx.ext.inheritance_diagram', + 'sphinx.ext.intersphinx', + 'sphinx.ext.ifconfig', + 'IPython.sphinxext.ipython_console_highlighting', + 'IPython.sphinxext.ipython_directive', + 'numpydoc', # Needs to be loaded *after* autodoc. + 'sphinx_gallery.gen_gallery', + 'matplotlib.sphinxext.mathmpl', + 'matplotlib.sphinxext.plot_directive', + 'matplotlib.sphinxext.figmpl_directive', + 'sphinxcontrib.inkscapeconverter', + 'sphinxext.custom_roles', + 'sphinxext.github', + 'sphinxext.math_symbol_table', + 'sphinxext.missing_references', + 'sphinxext.mock_gui_toolkits', + 'sphinxext.skip_deprecated', + 'sphinxext.redirect_from', + 'sphinx_copybutton', + 'sphinx_design', +] + +exclude_patterns = [ + 'api/prev_api_changes/api_changes_*/*' +] + +exclude_patterns += skip_subdirs + + +def _check_dependencies(): + names = { + **{ext: ext.split(".")[0] for ext in extensions}, + # Explicitly list deps that are not extensions, or whose PyPI package + # name does not match the (toplevel) module name. + "colorspacious": 'colorspacious', + "mpl_sphinx_theme": 'mpl_sphinx_theme', + "sphinxcontrib.inkscapeconverter": 'sphinxcontrib-svg2pdfconverter', + } + missing = [] + for name in names: + try: + __import__(name) + except ImportError: + missing.append(names[name]) + if missing: + raise ImportError( + "The following dependencies are missing to build the " + f"documentation: {', '.join(missing)}") + + # debug sphinx-pydata-theme and mpl-theme-version + if 'mpl_sphinx_theme' not in missing: + import pydata_sphinx_theme + import mpl_sphinx_theme + print(f"pydata sphinx theme: {pydata_sphinx_theme.__version__}") + print(f"mpl sphinx theme: {mpl_sphinx_theme.__version__}") + + if shutil.which('dot') is None: + raise OSError( + "No binary named dot - graphviz must be installed to build the " + "documentation") + +_check_dependencies() + + +# Import only after checking for dependencies. +# gallery_order.py from the sphinxext folder provides the classes that +# allow custom ordering of sections and subsections of the gallery +import sphinxext.gallery_order as gallery_order + +# The following import is only necessary to monkey patch the signature later on +from sphinx_gallery import gen_rst + +# Prevent plt.show() from emitting a non-GUI backend warning. +warnings.filterwarnings('ignore', category=UserWarning, + message=r'(\n|.)*is non-interactive, and thus cannot be shown') + +autosummary_generate = True +autodoc_typehints = "none" + +# we should ignore warnings coming from importing deprecated modules for +# autodoc purposes, as this will disappear automatically when they are removed +warnings.filterwarnings('ignore', category=DeprecationWarning, + module='importlib', # used by sphinx.autodoc.importer + message=r'(\n|.)*module was deprecated.*') + +autodoc_docstring_signature = True +autodoc_default_options = {'members': None, 'undoc-members': None} + +# make sure to ignore warnings that stem from simply inspecting deprecated +# class-level attributes +warnings.filterwarnings('ignore', category=DeprecationWarning, + module='sphinx.util.inspect') + +nitpicky = True +# change this to True to update the allowed failures +missing_references_write_json = False +missing_references_warn_unused_ignores = False + +intersphinx_mapping = { + 'Pillow': ('https://pillow.readthedocs.io/en/stable/', None), + 'cycler': ('https://matplotlib.org/cycler/', None), + 'dateutil': ('https://dateutil.readthedocs.io/en/stable/', None), + 'ipykernel': ('https://ipykernel.readthedocs.io/en/latest/', None), + 'numpy': ('https://numpy.org/doc/stable/', None), + 'pandas': ('https://pandas.pydata.org/pandas-docs/stable/', None), + 'pytest': ('https://pytest.org/en/stable/', None), + 'python': ('https://docs.python.org/3/', None), + 'scipy': ('https://docs.scipy.org/doc/scipy/', None), + 'tornado': ('https://www.tornadoweb.org/en/stable/', None), + 'xarray': ('https://docs.xarray.dev/en/stable/', None), +} + + +# Sphinx gallery configuration + +def matplotlib_reduced_latex_scraper(block, block_vars, gallery_conf, + **kwargs): + """ + Reduce srcset when creating a PDF. + + Because sphinx-gallery runs *very* early, we cannot modify this even in the + earliest builder-inited signal. Thus we do it at scraping time. + """ + from sphinx_gallery.scrapers import matplotlib_scraper + + if gallery_conf['builder_name'] == 'latex': + gallery_conf['image_srcset'] = [] + return matplotlib_scraper(block, block_vars, gallery_conf, **kwargs) + +gallery_dirs = [f'{ed}' for ed in + ['gallery', 'tutorials', 'plot_types', 'users/explain'] + if f'{ed}/*' not in skip_subdirs] + +example_dirs = [] +for gd in gallery_dirs: + gd = gd.replace('gallery', 'examples').replace('users/explain', 'users_explain') + example_dirs += [f'../galleries/{gd}'] + +sphinx_gallery_conf = { + 'backreferences_dir': Path('api') / Path('_as_gen'), + # Compression is a significant effort that we skip for local and CI builds. + 'compress_images': ('thumbnails', 'images') if is_release_build else (), + 'doc_module': ('matplotlib', 'mpl_toolkits'), + 'examples_dirs': example_dirs, + 'filename_pattern': '^((?!sgskip).)*$', + 'gallery_dirs': gallery_dirs, + 'image_scrapers': (matplotlib_reduced_latex_scraper, ), + 'image_srcset': ["2x"], + 'junit': '../test-results/sphinx-gallery/junit.xml' if CIRCLECI else '', + 'matplotlib_animations': True, + 'min_reported_time': 1, + 'plot_gallery': 'True', # sphinx-gallery/913 + 'reference_url': {'matplotlib': None}, + 'remove_config_comments': True, + 'reset_modules': ( + 'matplotlib', + # clear basic_units module to re-register with unit registry on import + lambda gallery_conf, fname: sys.modules.pop('basic_units', None) + ), + 'subsection_order': gallery_order.sectionorder, + 'thumbnail_size': (320, 224), + 'within_subsection_order': gallery_order.subsectionorder, + 'capture_repr': (), + 'copyfile_regex': r'.*\.rst', +} + +if 'plot_gallery=0' in sys.argv: + # Gallery images are not created. Suppress warnings triggered where other + # parts of the documentation link to these images. + + def gallery_image_warning_filter(record): + msg = record.msg + for pattern in (sphinx_gallery_conf['gallery_dirs'] + + ['_static/constrained_layout']): + if msg.startswith(f'image file not readable: {pattern}'): + return False + + if msg == 'Could not obtain image size. :scale: option is ignored.': + return False + + return True + + logger = logging.getLogger('sphinx') + logger.addFilter(gallery_image_warning_filter) + + +mathmpl_fontsize = 11.0 +mathmpl_srcset = ['2x'] + +# Monkey-patching gallery header to include search keywords +gen_rst.EXAMPLE_HEADER = """ +.. DO NOT EDIT. +.. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. +.. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: +.. "{0}" +.. LINE NUMBERS ARE GIVEN BELOW. + +.. only:: html + + .. meta:: + :keywords: codex + + .. note:: + :class: sphx-glr-download-link-note + + :ref:`Go to the end ` + to download the full example code{2} + +.. rst-class:: sphx-glr-example-title + +.. _sphx_glr_{1}: + +""" + +# Add any paths that contain templates here, relative to this directory. +templates_path = ['_templates'] + +# The suffix of source filenames. +source_suffix = '.rst' + +# This is the default encoding, but it doesn't hurt to be explicit +source_encoding = "utf-8" + +# The toplevel toctree document (renamed to root_doc in Sphinx 4.0) +root_doc = master_doc = 'index' + +# General substitutions. +try: + SHA = subprocess.check_output( + ['git', 'describe', '--dirty']).decode('utf-8').strip() +# Catch the case where git is not installed locally, and use the setuptools_scm +# version number instead +except (subprocess.CalledProcessError, FileNotFoundError): + SHA = matplotlib.__version__ + + +html_context = { + "doc_version": SHA, +} + +project = 'Matplotlib' +copyright = ( + '2002–2012 John Hunter, Darren Dale, Eric Firing, Michael Droettboom ' + 'and the Matplotlib development team; ' + f'2012–{sourceyear} The Matplotlib development team' +) + + +# The default replacements for |version| and |release|, also used in various +# other places throughout the built documents. +# +# The short X.Y version. + +version = matplotlib.__version__ +# The full version, including alpha/beta/rc tags. +release = version + +# There are two options for replacing |today|: either, you set today to some +# non-false value, then it is used: +# today = '' +# Else, today_fmt is used as the format for a strftime call. +today_fmt = '%B %d, %Y' + +# List of documents that shouldn't be included in the build. +unused_docs = [] + +# If true, '()' will be appended to :func: etc. cross-reference text. +# add_function_parentheses = True + +# If true, the current module name will be prepended to all description +# unit titles (such as .. function::). +# add_module_names = True + +# If true, sectionauthor and moduleauthor directives will be shown in the +# output. They are ignored by default. +# show_authors = False + +# The name of the Pygments (syntax highlighting) style to use. +pygments_style = 'sphinx' + +default_role = 'obj' + +# Plot directive configuration +# ---------------------------- + +# For speedup, decide which plot_formats to build based on build targets: +# html only -> png +# latex only -> pdf +# all other cases, including html + latex -> png, pdf +# For simplicity, we assume that the build targets appear in the command line. +# We're falling back on using all formats in case that assumption fails. +formats = {'html': ('png', 100), 'latex': ('pdf', 100)} +plot_formats = [formats[target] for target in ['html', 'latex'] + if target in sys.argv] or list(formats.values()) +# make 2x images for srcset argument to +plot_srcset = ['2x'] + +# GitHub extension + +github_project_url = "https://github.com/matplotlib/matplotlib/" + + +# Options for HTML output +# ----------------------- + +def add_html_cache_busting(app, pagename, templatename, context, doctree): + """ + Add cache busting query on CSS and JavaScript assets. + + This adds the Matplotlib version as a query to the link reference in the + HTML, if the path is not absolute (i.e., it comes from the `_static` + directory) and doesn't already have a query. + + .. note:: Sphinx 7.1 provides asset checksums; so this hook only runs on + Sphinx 7.0 and earlier. + """ + from sphinx.builders.html import Stylesheet, JavaScript + + css_tag = context['css_tag'] + js_tag = context['js_tag'] + + def css_tag_with_cache_busting(css): + if isinstance(css, Stylesheet) and css.filename is not None: + url = urlsplit(css.filename) + if not url.netloc and not url.query: + url = url._replace(query=SHA) + css = Stylesheet(urlunsplit(url), priority=css.priority, + **css.attributes) + return css_tag(css) + + def js_tag_with_cache_busting(js): + if isinstance(js, JavaScript) and js.filename is not None: + url = urlsplit(js.filename) + if not url.netloc and not url.query: + url = url._replace(query=SHA) + js = JavaScript(urlunsplit(url), priority=js.priority, + **js.attributes) + return js_tag(js) + + context['css_tag'] = css_tag_with_cache_busting + context['js_tag'] = js_tag_with_cache_busting + + +# The style sheet to use for HTML and HTML Help pages. A file of that name +# must exist either in Sphinx' static/ path, or in one of the custom paths +# given in html_static_path. +html_css_files = [ + "mpl.css", +] + +html_theme = "mpl_sphinx_theme" + +# The name for this set of Sphinx documents. If None, it defaults to +# " v documentation". +# html_title = None + +# The name of an image file (within the static path) to place at the top of +# the sidebar. +html_theme_options = { + "navbar_links": "internal", + # collapse_navigation in pydata-sphinx-theme is slow, so skipped for local + # and CI builds https://github.com/pydata/pydata-sphinx-theme/pull/386 + "collapse_navigation": not is_release_build, + "show_prev_next": False, + "switcher": { + # Add a unique query to the switcher.json url. This will be ignored by + # the server, but will be used as part of the key for caching by browsers + # so when we do a new minor release the switcher will update "promptly" on + # the stable and devdocs. + "json_url": f"https://matplotlib.org/devdocs/_static/switcher.json?{SHA}", + "version_match": ( + # The start version to show. This must be in switcher.json. + # We either go to 'stable' or to 'devdocs' + 'stable' if matplotlib.__version_info__.releaselevel == 'final' + else 'devdocs') + }, + "navbar_end": ["theme-switcher", "version-switcher", "mpl_icon_links"], + "secondary_sidebar_items": "page-toc.html", + "footer_start": ["copyright", "sphinx-version", "doc_version"], + # We override the announcement template from pydata-sphinx-theme, where + # this special value indicates the use of the unreleased banner. If we need + # an actual announcement, then just place the text here as usual. + "announcement": "unreleased" if not is_release_build else "", +} +include_analytics = is_release_build +if include_analytics: + html_theme_options["analytics"] = { + "plausible_analytics_domain": "matplotlib.org", + "plausible_analytics_url": "https://views.scientific-python.org/js/script.js" + } + +# Add any paths that contain custom static files (such as style sheets) here, +# relative to this directory. They are copied after the builtin static files, +# so a file named "default.css" will overwrite the builtin "default.css". +html_static_path = ['_static'] + +# If nonempty, this is the file name suffix for generated HTML files. The +# default is ``".html"``. +html_file_suffix = '.html' + +# this makes this the canonical link for all the pages on the site... +html_baseurl = 'https://matplotlib.org/stable/' + +# If not '', a 'Last updated on:' timestamp is inserted at every page bottom, +# using the given strftime format. +html_last_updated_fmt = '%b %d, %Y' + +# Content template for the index page. +html_index = 'index.html' + +# Custom sidebar templates, maps document names to template names. +# html_sidebars = {} + +# Custom sidebar templates, maps page names to templates. +html_sidebars = { + "index": [ + # 'sidebar_announcement.html', + "sidebar_versions.html", + "cheatsheet_sidebar.html", + "donate_sidebar.html", + ], + # '**': ['localtoc.html', 'pagesource.html'] +} + +# Copies only relevant code, not the '>>>' prompt +copybutton_prompt_text = r'>>> |\.\.\. ' +copybutton_prompt_is_regexp = True + +# If true, add an index to the HTML documents. +html_use_index = False + +# If true, generate domain-specific indices in addition to the general index. +# For e.g. the Python domain, this is the global module index. +html_domain_index = False + +# If true, the reST sources are included in the HTML build as _sources/. +# html_copy_source = True + +# If true, an OpenSearch description file will be output, and all pages will +# contain a tag referring to it. +html_use_opensearch = 'https://matplotlib.org/stable' + +# Output file base name for HTML help builder. +htmlhelp_basename = 'Matplotlibdoc' + +# Use typographic quote characters. +smartquotes = False + +# Path to favicon +html_favicon = '_static/favicon.ico' + +# Options for LaTeX output +# ------------------------ + +# The paper size ('letter' or 'a4'). +latex_paper_size = 'letter' + +# Grouping the document tree into LaTeX files. +# List of tuples: +# (source start file, target name, title, author, +# document class [howto/manual]) + +latex_documents = [ + (root_doc, 'Matplotlib.tex', 'Matplotlib', + 'John Hunter\\and Darren Dale\\and Eric Firing\\and Michael Droettboom' + '\\and and the matplotlib development team', 'manual'), +] + + +# The name of an image file (relative to this directory) to place at the top of +# the title page. +latex_logo = None + +# Use Unicode aware LaTeX engine +latex_engine = 'xelatex' # or 'lualatex' + +latex_elements = {} + +# Keep babel usage also with xelatex (Sphinx default is polyglossia) +# If this key is removed or changed, latex build directory must be cleaned +latex_elements['babel'] = r'\usepackage{babel}' + +# Font configuration +# Fix fontspec converting " into right curly quotes in PDF +# cf https://github.com/sphinx-doc/sphinx/pull/6888/ +latex_elements['fontenc'] = r''' +\usepackage{fontspec} +\defaultfontfeatures[\rmfamily,\sffamily,\ttfamily]{} +''' + +# Sphinx 2.0 adopts GNU FreeFont by default, but it does not have all +# the Unicode codepoints needed for the section about Mathtext +# "Writing mathematical expressions" +latex_elements['fontpkg'] = r""" +\IfFontExistsTF{XITS}{ + \setmainfont{XITS} +}{ + \setmainfont{XITS}[ + Extension = .otf, + UprightFont = *-Regular, + ItalicFont = *-Italic, + BoldFont = *-Bold, + BoldItalicFont = *-BoldItalic, +]} +\IfFontExistsTF{FreeSans}{ + \setsansfont{FreeSans} +}{ + \setsansfont{FreeSans}[ + Extension = .otf, + UprightFont = *, + ItalicFont = *Oblique, + BoldFont = *Bold, + BoldItalicFont = *BoldOblique, +]} +\IfFontExistsTF{FreeMono}{ + \setmonofont{FreeMono} +}{ + \setmonofont{FreeMono}[ + Extension = .otf, + UprightFont = *, + ItalicFont = *Oblique, + BoldFont = *Bold, + BoldItalicFont = *BoldOblique, +]} +% needed for \mathbb (blackboard alphabet) to actually work +\usepackage{unicode-math} +\IfFontExistsTF{XITS Math}{ + \setmathfont{XITS Math} +}{ + \setmathfont{XITSMath-Regular}[ + Extension = .otf, +]} +""" + +# Fix fancyhdr complaining about \headheight being too small +latex_elements['passoptionstopackages'] = r""" + \PassOptionsToPackage{headheight=14pt}{geometry} +""" + +# Additional stuff for the LaTeX preamble. +latex_elements['preamble'] = r""" + % Show Parts and Chapters in Table of Contents + \setcounter{tocdepth}{0} + % One line per author on title page + \DeclareRobustCommand{\and}% + {\end{tabular}\kern-\tabcolsep\\\begin{tabular}[t]{c}}% + \usepackage{etoolbox} + \AtBeginEnvironment{sphinxthebibliography}{\appendix\part{Appendices}} + \usepackage{expdlist} + \let\latexdescription=\description + \def\description{\latexdescription{}{} \breaklabel} + % But expdlist old LaTeX package requires fixes: + % 1) remove extra space + \makeatletter + \patchcmd\@item{{\@breaklabel} }{{\@breaklabel}}{}{} + \makeatother + % 2) fix bug in expdlist's way of breaking the line after long item label + \makeatletter + \def\breaklabel{% + \def\@breaklabel{% + \leavevmode\par + % now a hack because Sphinx inserts \leavevmode after term node + \def\leavevmode{\def\leavevmode{\unhbox\voidb@x}}% + }% + } + \makeatother +""" +# Sphinx 1.5 provides this to avoid "too deeply nested" LaTeX error +# and usage of "enumitem" LaTeX package is unneeded. +# Value can be increased but do not set it to something such as 2048 +# which needlessly would trigger creation of thousands of TeX macros +latex_elements['maxlistdepth'] = '10' +latex_elements['pointsize'] = '11pt' + +# Better looking general index in PDF +latex_elements['printindex'] = r'\footnotesize\raggedright\printindex' + +# Documents to append as an appendix to all manuals. +latex_appendices = [] + +# If false, no module index is generated. +latex_use_modindex = True + +latex_toplevel_sectioning = 'part' + +# Show both class-level docstring and __init__ docstring in class +# documentation +autoclass_content = 'both' + +texinfo_documents = [ + (root_doc, 'matplotlib', 'Matplotlib Documentation', + 'John Hunter@*Darren Dale@*Eric Firing@*Michael Droettboom@*' + 'The matplotlib development team', + 'Matplotlib', "Python plotting package", 'Programming', + 1), +] + +# numpydoc config + +numpydoc_show_class_members = False + +# We want to prevent any size limit, as we'll add scroll bars with CSS. +inheritance_graph_attrs = dict(dpi=100, size='1000.0', splines='polyline') +# Also remove minimum node dimensions, and increase line size a bit. +inheritance_node_attrs = dict(height=0.02, margin=0.055, penwidth=1, + width=0.01) +inheritance_edge_attrs = dict(penwidth=1) + +graphviz_dot = shutil.which('dot') +# Still use PNG until SVG linking is fixed +# https://github.com/sphinx-doc/sphinx/issues/3176 +# graphviz_output_format = 'svg' + +# ----------------------------------------------------------------------------- +# Source code links +# ----------------------------------------------------------------------------- +link_github = True +# You can add build old with link_github = False + +if link_github: + import inspect + from packaging.version import parse + + extensions.append('sphinx.ext.linkcode') + + def linkcode_resolve(domain, info): + """ + Determine the URL corresponding to Python object + """ + if domain != 'py': + return None + + modname = info['module'] + fullname = info['fullname'] + + submod = sys.modules.get(modname) + if submod is None: + return None + + obj = submod + for part in fullname.split('.'): + try: + obj = getattr(obj, part) + except AttributeError: + return None + + if inspect.isfunction(obj): + obj = inspect.unwrap(obj) + try: + fn = inspect.getsourcefile(obj) + except TypeError: + fn = None + if not fn or fn.endswith('__init__.py'): + try: + fn = inspect.getsourcefile(sys.modules[obj.__module__]) + except (TypeError, AttributeError, KeyError): + fn = None + if not fn: + return None + + try: + source, lineno = inspect.getsourcelines(obj) + except (OSError, TypeError): + lineno = None + + linespec = (f"#L{lineno:d}-L{lineno + len(source) - 1:d}" + if lineno else "") + + startdir = Path(matplotlib.__file__).parent.parent + try: + fn = os.path.relpath(fn, start=startdir).replace(os.path.sep, '/') + except ValueError: + return None + + if not fn.startswith(('matplotlib/', 'mpl_toolkits/')): + return None + + version = parse(matplotlib.__version__) + tag = 'main' if version.is_devrelease else f'v{version.public}' + return ("https://github.com/matplotlib/matplotlib/blob" + f"/{tag}/lib/{fn}{linespec}") +else: + extensions.append('sphinx.ext.viewcode') + + +# ----------------------------------------------------------------------------- +# Sphinx setup +# ----------------------------------------------------------------------------- +def setup(app): + if any(st in version for st in ('post', 'dev', 'alpha', 'beta')): + bld_type = 'dev' + else: + bld_type = 'rel' + app.add_config_value('skip_sub_dirs', 0, '') + app.add_config_value('releaselevel', bld_type, 'env') + if sphinx.version_info[:2] < (7, 1): + app.connect('html-page-context', add_html_cache_busting, priority=1000) diff --git a/testbed/matplotlib__matplotlib/doc/devel/style_guide.rst b/testbed/matplotlib__matplotlib/doc/devel/style_guide.rst new file mode 100644 index 0000000000000000000000000000000000000000..9dab7a6d99d285dff5a1e98ff48704607918bab1 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/devel/style_guide.rst @@ -0,0 +1,411 @@ + +========================= +Documentation style guide +========================= + +This guide contains best practices for the language and formatting of Matplotlib +documentation. + +.. seealso:: + + For more information about contributing, see the :ref:`documenting-matplotlib` + section. + +Expository language +=================== + +For explanatory writing, the following guidelines are for clear and concise +language use. + +Terminology +----------- + +There are several key terms in Matplotlib that are standards for +reliability and consistency in documentation. They are not interchangeable. + +.. table:: + :widths: 15, 15, 35, 35 + + +------------------+--------------------------+--------------+--------------+ + | Term | Description | Correct | Incorrect | + +==================+==========================+==============+==============+ + | |Figure| | Matplotlib working space | - *For | - "The figure| + | | for programming. | Matplotlib | is the | + | | | objects*: | working | + | | | Figure, | space for | + | | | "The Figure| visuals." | + | | | is the | - "Methods in| + | | | working | the figure | + | | | space for | provide the| + | | | the visual.| visuals." | + | | | - *Referring | - "The | + | | | to class*: | |Figure| | + | | | |Figure|, | Four | + | | | "Methods | leglock is | + | | | within the | a wrestling| + | | | |Figure| | move." | + | | | provide the| | + | | | visuals." | | + | | | - *General | | + | | | language*: | | + | | | figure, | | + | | | "Michelle | | + | | | Kwan is a | | + | | | famous | | + | | | figure | | + | | | skater." | | + +------------------+--------------------------+--------------+--------------+ + | |Axes| | Subplots within Figure. | - *For | - "The axes | + | | Contains plot elements | Matplotlib | methods | + | | and is responsible for | objects*: | transform | + | | plotting and configuring | Axes, "An | the data." | + | | additional details. | Axes is a | - "Each | + | | | subplot | |Axes| is | + | | | within the | specific to| + | | | Figure." | a Figure." | + | | | - *Referring | - "The | + | | | to class*: | musicians | + | | | |Axes|, | on stage | + | | | "Each | call their | + | | | |Axes| is | guitars | + | | | specific to| Axes." | + | | | one | - "The point | + | | | Figure." | where the | + | | | - *General | Axes meet | + | | | language*: | is the | + | | | axes, "Both| origin of | + | | | loggers and| the | + | | | lumberjacks| coordinate | + | | | use axes to| system." | + | | | chop wood."| | + | | | OR "There | | + | | | are no | | + | | | standard | | + | | | names for | | + | | | the | | + | | | coordinates| | + | | | in the | | + | | | three | | + | | | axes." | | + | | | (Plural of | | + | | | axis) | | + +------------------+--------------------------+--------------+--------------+ + | |Artist| | Broad variety of | - *For | - "Configure | + | | Matplotlib objects that | Matplotlib | the legend | + | | display visuals. | objects*: | artist with| + | | | Artist, | its | + | | | "Artists | respective | + | | | display | method." | + | | | visuals and| - "There is | + | | | are the | an | + | | | visible | |Artist| | + | | | elements | for that | + | | | when | visual in | + | | | rendering a| the graph."| + | | | Figure." | - "Some | + | | | - *Referring | Artists | + | | | to class*: | became | + | | | |Artist| , | famous only| + | | | "Each | by | + | | | |Artist| | accident." | + | | | has | | + | | | respective | | + | | | methods and| | + | | | functions."| | + | | | - *General | | + | | | language*: | | + | | | artist, | | + | | | "The | | + | | | artist in | | + | | | the museum | | + | | | is from | | + | | | France." | | + +------------------+--------------------------+--------------+--------------+ + | |Axis| | Human-readable single | - *For | - "Plot the | + | | dimensional object | Matplotlib | graph onto | + | | of reference marks | objects*: | the axis." | + | | containing ticks, tick | Axis, "The | - "Each Axis | + | | labels, spines, and | Axis for | is usually | + | | edges. | the bar | named after| + | | | chart is a | the | + | | | separate | coordinate | + | | | Artist." | which is | + | | | (plural, | measured | + | | | Axis | along it." | + | | | objects) | - "In some | + | | | - *Referring | computer | + | | | to class*: | graphics | + | | | |Axis|, | contexts, | + | | | "The | the | + | | | |Axis| | ordinate | + | | | contains | |Axis| may | + | | | respective | be oriented| + | | | XAxis and | downwards."| + | | | YAxis | | + | | | objects." | | + | | | - *General | | + | | | language*: | | + | | | axis, | | + | | | "Rotation | | + | | | around a | | + | | | fixed axis | | + | | | is a | | + | | | special | | + | | | case of | | + | | | rotational | | + | | | motion." | | + +------------------+--------------------------+--------------+--------------+ + | Explicit, | Explicit approach of | - Explicit | - object | + | Object Oriented | programming in | - explicit | oriented | + | Programming (OOP)| Matplotlib. | - OOP | - OO-style | + +------------------+--------------------------+--------------+--------------+ + | Implicit, | Implicit approach of | - Implicit | - MATLAB like| + | ``pyplot`` | programming in Matplotlib| - implicit | - Pyplot | + | | with ``pyplot`` module. | - ``pyplot`` | - pyplot | + | | | | interface | + +------------------+--------------------------+--------------+--------------+ + +.. |Figure| replace:: :class:`~matplotlib.figure.Figure` +.. |Axes| replace:: :class:`~matplotlib.axes.Axes` +.. |Artist| replace:: :class:`~matplotlib.artist.Artist` +.. |Axis| replace:: :class:`~matplotlib.axis.Axis` + + +Grammar +------- + +Subject +^^^^^^^ +Use second-person imperative sentences for directed instructions specifying an +action. Second-person pronouns are for individual-specific contexts and +possessive reference. + +.. table:: + :width: 100% + :widths: 50, 50 + + +------------------------------------+------------------------------------+ + | Correct | Incorrect | + +====================================+====================================+ + | Install Matplotlib from the source | You can install Matplotlib from the| + | directory using the Python ``pip`` | source directory. You can find | + | installer program. Depending on | additional support if you are | + | your operating system, you may need| having trouble with your | + | additional support. | installation. | + +------------------------------------+------------------------------------+ + +Tense +^^^^^ +Use present simple tense for explanations. Avoid future tense and other modal +or auxiliary verbs when possible. + +.. table:: + :width: 100% + :widths: 50, 50 + + +------------------------------------+------------------------------------+ + | Correct | Incorrect | + +====================================+====================================+ + | The fundamental ideas behind | Matplotlib will take data and | + | Matplotlib for visualization | transform it through functions and | + | involve taking data and | methods. They can generate many | + | transforming it through functions | kinds of visuals. These will be the| + | and methods. | fundamentals for using Matplotlib. | + +------------------------------------+------------------------------------+ + +Voice +^^^^^ +Write in active sentences. Passive voice is best for situations or conditions +related to warning prompts. + +.. table:: + :width: 100% + :widths: 50, 50 + + +------------------------------------+------------------------------------+ + | Correct | Incorrect | + +====================================+====================================+ + | The function ``plot`` generates the| The graph is generated by the | + | graph. | ``plot`` function. | + +------------------------------------+------------------------------------+ + | An error message is returned by the| You will see an error message from | + | function if there are no arguments.| the function if there are no | + | | arguments. | + +------------------------------------+------------------------------------+ + +Sentence structure +^^^^^^^^^^^^^^^^^^ +Write with short sentences using Subject-Verb-Object order regularly. Limit +coordinating conjunctions in sentences. Avoid pronoun references and +subordinating conjunctive phrases. + +.. table:: + :width: 100% + :widths: 50, 50 + + +------------------------------------+------------------------------------+ + | Correct | Incorrect | + +====================================+====================================+ + | The ``pyplot`` module in Matplotlib| The ``pyplot`` module in Matplotlib| + | is a collection of functions. These| is a collection of functions which | + | functions create, manage, and | create, manage, and manipulate the | + | manipulate the current Figure and | current Figure and plotting area. | + | plotting area. | | + +------------------------------------+------------------------------------+ + | The ``plot`` function plots data | The ``plot`` function plots data | + | to the respective Axes. The Axes | within its respective Axes for its | + | corresponds to the respective | respective Figure. | + | Figure. | | + +------------------------------------+------------------------------------+ + | The implicit approach is a | Users that wish to have convenient | + | convenient shortcut for | shortcuts for generating plots use | + | generating simple plots. | the implicit approach. | + +------------------------------------+------------------------------------+ + + +Formatting +========== + +The following guidelines specify how to incorporate code and use appropriate +formatting for Matplotlib documentation. + +Code +---- + +Matplotlib is a Python library and follows the same standards for +documentation. + +Comments +^^^^^^^^ +Examples of Python code have comments before or on the same line. + +.. table:: + :width: 100% + :widths: 50, 50 + + +---------------------------------------+---------------------------------+ + | Correct | Incorrect | + +=======================================+=================================+ + | :: | :: | + | | | + | # Data | years = [2006, 2007, 2008] | + | years = [2006, 2007, 2008] | # Data | + +---------------------------------------+ | + | :: | | + | | | + | years = [2006, 2007, 2008] # Data | | + +---------------------------------------+---------------------------------+ + +Outputs +^^^^^^^ +When generating visuals with Matplotlib using ``.py`` files in examples, +display the visual with `matplotlib.pyplot.show` to display the visual. +Keep the documentation clear of Python output lines. + +.. table:: + :width: 100% + :widths: 50, 50 + + +------------------------------------+------------------------------------+ + | Correct | Incorrect | + +====================================+====================================+ + | :: | :: | + | | | + | plt.plot([1, 2, 3], [1, 2, 3]) | plt.plot([1, 2, 3], [1, 2, 3]) | + | plt.show() | | + +------------------------------------+------------------------------------+ + | :: | :: | + | | | + | fig, ax = plt.subplots() | fig, ax = plt.subplots() | + | ax.plot([1, 2, 3], [1, 2, 3]) | ax.plot([1, 2, 3], [1, 2, 3]) | + | fig.show() | | + +------------------------------------+------------------------------------+ + +reStructuredText +---------------- + +Matplotlib uses reStructuredText Markup for documentation. Sphinx helps to +transform these documents into appropriate formats for accessibility and +visibility. + +- `reStructuredText Specifications `_ +- `Quick Reference Document `_ + + +Lists +^^^^^ +Bulleted lists are for items that do not require sequencing. Numbered lists are +exclusively for performing actions in a determined order. + +.. table:: + :width: 100% + :widths: 50, 50 + + +------------------------------------+------------------------------------+ + | Correct | Incorrect | + +====================================+====================================+ + | The example uses three graphs. | The example uses three graphs. | + +------------------------------------+------------------------------------+ + | - Bar | 1. Bar | + | - Line | 2. Line | + | - Pie | 3. Pie | + +------------------------------------+------------------------------------+ + | These four steps help to get | The following steps are important | + | started using Matplotlib. | to get started using Matplotlib. | + +------------------------------------+------------------------------------+ + | 1. Import the Matplotlib library. | - Import the Matplotlib library. | + | 2. Import the necessary modules. | - Import the necessary modules. | + | 3. Set and assign data to work on.| - Set and assign data to work on. | + | 4. Transform data with methods and| - Transform data with methods and | + | functions. | functions. | + +------------------------------------+------------------------------------+ + +Tables +^^^^^^ +Use ASCII tables with reStructuredText standards in organizing content. +Markdown tables and the csv-table directive are not accepted. + +.. table:: + :width: 100% + :widths: 50, 50 + + +--------------------------------+----------------------------------------+ + | Correct | Incorrect | + +================================+========================================+ + | +----------+----------+ | :: | + | | Correct | Incorrect| | | + | +==========+==========+ | | Correct | Incorrect | | + | | OK | Not OK | | | ------- | --------- | | + | +----------+----------+ | | OK | Not OK | | + | | | + +--------------------------------+----------------------------------------+ + | :: | :: | + | | | + | +----------+----------+ | .. csv-table:: | + | | Correct | Incorrect| | :header: "correct", "incorrect" | + | +==========+==========+ | :widths: 10, 10 | + | | OK | Not OK | | | + | +----------+----------+ | "OK ", "Not OK" | + | | | + +--------------------------------+ | + | :: | | + | | | + | =========== =========== | | + | Correct Incorrect | | + | =========== =========== | | + | OK Not OK | | + | =========== =========== | | + | | | + +--------------------------------+----------------------------------------+ + + +Additional resources +==================== +This style guide is not a comprehensive standard. For a more thorough +reference of how to contribute to documentation, see the links below. These +resources contain common best practices for writing documentation. + +* `Python Developer's Guide `_ +* `Google Developer Style Guide `_ +* `IBM Style Guide `_ +* `Red Hat Style Guide `_ diff --git a/testbed/matplotlib__matplotlib/doc/docutils.conf b/testbed/matplotlib__matplotlib/doc/docutils.conf new file mode 100644 index 0000000000000000000000000000000000000000..92499053dc23e123b7515e89244a8cc0547a51d5 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/docutils.conf @@ -0,0 +1,6 @@ +# These entries affect HTML output: +[html4css1 writer] +# Required for docutils-update, the website build system: +field-name-limit: 20 +# Required for browser-level lazy-loading of images: +image_loading: lazy diff --git a/testbed/matplotlib__matplotlib/doc/index.rst b/testbed/matplotlib__matplotlib/doc/index.rst new file mode 100644 index 0000000000000000000000000000000000000000..8193c94aede948c9446c62c226c68070bd93c2ac --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/index.rst @@ -0,0 +1,175 @@ +.. title:: Matplotlib documentation + +.. module:: matplotlib + + +################################## +Matplotlib |release| documentation +################################## + + +Matplotlib is a comprehensive library for creating static, animated, +and interactive visualizations. + +Install +======= + +.. tab-set:: + :class: sd-width-content-min + + .. tab-item:: pip + + .. code-block:: bash + + pip install matplotlib + + .. tab-item:: conda + + .. code-block:: bash + + conda install -c conda-forge matplotlib + + .. tab-item:: other + + .. toctree:: + :maxdepth: 2 + + users/installing/index + +For more detailed instructions, see the +:doc:`installation guide `. + +Learn +===== + +.. grid:: 1 1 2 2 + + .. grid-item-card:: + :padding: 2 + :columns: 6 + + **How to use Matplotlib?** + ^^^ + .. toctree:: + :maxdepth: 1 + + users/explain/quick_start + User guide + tutorials/index.rst + users/faq/index.rst + + .. grid-item-card:: + :padding: 2 + :columns: 6 + + **What can Matplotlib do?** + ^^^ + .. toctree:: + :maxdepth: 1 + + plot_types/index.rst + gallery/index.rst + + + .. grid-item-card:: + :padding: 2 + :columns: 12 + + **Reference** + ^^^ + + .. grid:: 1 1 2 2 + :class-row: sd-align-minor-center + + .. grid-item:: + + .. toctree:: + :maxdepth: 1 + + API reference + Figure methods + Plotting methods + + + .. grid-item:: + + Top-level interfaces to create: + + - figures: `.pyplot.figure` + - subplots: `.pyplot.subplots`, `.pyplot.subplot_mosaic` + +Community +========= + +.. grid:: 1 1 2 2 + :class-row: sd-align-minor-center + + .. grid-item:: + + .. toctree:: + :maxdepth: 2 + + users/resources/index.rst + + .. grid-item:: + + :octicon:`link-external;1em;sd-text-info` `Third-party packages `_, + + provide custom, domain specific, and experimental features, including + styles, colors, more plot types and backends, and alternative + interfaces. + +What's new +========== + +.. grid:: 1 1 2 2 + + .. grid-item:: + + Learn about new features and API changes. + + .. grid-item:: + + .. toctree:: + :maxdepth: 1 + + users/release_notes.rst + + +Contribute +========== + +.. grid:: 1 1 2 2 + :class-row: sd-align-minor-center + + .. grid-item:: + + Matplotlib is a community project maintained for and by its users. + + There are many ways you can help! + + .. grid-item:: + .. toctree:: + :maxdepth: 2 + + devel/index.rst + +About us +======== + +.. grid:: 1 1 2 2 + :class-row: sd-align-minor-center + + .. grid-item:: + + Matplotlib was created by neurobiologist John Hunter to work with EEG + data. It grew to be used and developed by many people in many + different fields. John's goal was that Matplotlib make easy things easy + and hard things possible. + + .. grid-item:: + + .. toctree:: + :maxdepth: 2 + + users/project/index.rst diff --git a/testbed/matplotlib__matplotlib/doc/make.bat b/testbed/matplotlib__matplotlib/doc/make.bat new file mode 100644 index 0000000000000000000000000000000000000000..220523d74b60ccc140a3984a21e25757f6c26c5d --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/make.bat @@ -0,0 +1,65 @@ +@ECHO OFF + +pushd %~dp0 + +REM Command file for Sphinx documentation + +if "%SPHINXBUILD%" == "" ( + set SPHINXBUILD=python -msphinx +) +set SOURCEDIR=. +set BUILDDIR=build +set SPHINXPROJ=matplotlib +if defined SPHINXOPTS goto skipopts +set SPHINXOPTS=-W --keep-going +:skipopts + +%SPHINXBUILD% >NUL 2>NUL +if errorlevel 9009 ( + echo. + echo.The Sphinx module was not found. Make sure you have Sphinx installed, + echo.then set the SPHINXBUILD environment variable to point to the full + echo.path of the 'sphinx-build' executable. Alternatively you may add the + echo.Sphinx directory to PATH. + echo. + echo.If you don't have Sphinx installed, grab it from + echo.http://sphinx-doc.org/ + exit /b 1 +) + +if "%1" == "" goto help +if "%1" == "html-noplot" goto html-noplot +if "%1" == "html-skip-subdirs" goto html-skip-subdirs +if "%1" == "show" goto show + +%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% +if "%1" == "clean" ( + REM workaround because sphinx does not completely clean up (#11139) + rmdir /s /q "%SOURCEDIR%\build" + rmdir /s /q "%SOURCEDIR%\api\_as_gen" + rmdir /s /q "%SOURCEDIR%\gallery" + rmdir /s /q "%SOURCEDIR%\plot_types" + rmdir /s /q "%SOURCEDIR%\tutorials" + rmdir /s /q "%SOURCEDIR%\savefig" + rmdir /s /q "%SOURCEDIR%\sphinxext\__pycache__" +) +goto end + +:help +%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% +goto end + +:html-noplot +%SPHINXBUILD% -M html %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% -D plot_gallery=0 +goto end + +:html-skip-subdirs +%SPHINXBUILD% -M html %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% -D skip_sub_dirs=1 +goto end + + +:show +python -m webbrowser -t "%~dp0\build\html\index.html" + +:end +popd diff --git a/testbed/matplotlib__matplotlib/doc/matplotlibrc b/testbed/matplotlib__matplotlib/doc/matplotlibrc new file mode 100644 index 0000000000000000000000000000000000000000..c29755d45455b827fc70d70adc5237496db84286 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/matplotlibrc @@ -0,0 +1,5 @@ +backend : Agg +figure.figsize : 5.5, 4.5 # figure size in inches +savefig.dpi : 80 # figure dots per inch +docstring.hardcopy : True # set this when you want to generate hardcopy docstring +animation.embed_limit : 30 # allow embedded animations to be big diff --git a/testbed/matplotlib__matplotlib/doc/missing-references.json b/testbed/matplotlib__matplotlib/doc/missing-references.json new file mode 100644 index 0000000000000000000000000000000000000000..1061b08b7fe6527848c80d6d9b212d0398cbd346 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/missing-references.json @@ -0,0 +1,741 @@ +{ + "py:attr": { + "cbar_axes": [ + "lib/mpl_toolkits/axes_grid1/axes_grid.py:docstring of mpl_toolkits.axes_grid1.axes_grid.ImageGrid:41", + "lib/mpl_toolkits/axisartist/axes_grid.py:docstring of mpl_toolkits.axisartist.axes_grid.ImageGrid:41" + ], + "eventson": [ + "lib/matplotlib/widgets.py:docstring of matplotlib.widgets:1" + ], + "fmt_zdata": [ + "lib/mpl_toolkits/mplot3d/axes3d.py:docstring of mpl_toolkits.mplot3d.axes3d.Axes3D.format_zdata:1" + ], + "height": [ + "lib/matplotlib/transforms.py:docstring of matplotlib.transforms:1" + ], + "input_dims": [ + "lib/matplotlib/projections/geo.py:docstring of matplotlib.projections.geo.AitoffAxes:1", + "lib/matplotlib/transforms.py:docstring of matplotlib.transforms:10", + "lib/matplotlib/transforms.py:docstring of matplotlib.transforms:11", + "lib/matplotlib/transforms.py:docstring of matplotlib.transforms:4" + ], + "lines": [ + "lib/matplotlib/colorbar.py:docstring of matplotlib.colorbar:1" + ], + "matplotlib.axes.Axes.patch": [ + "doc/tutorials/artists.rst:177", + "doc/tutorials/artists.rst:405" + ], + "matplotlib.axes.Axes.patches": [ + "doc/tutorials/artists.rst:443" + ], + "matplotlib.axes.Axes.transAxes": [ + "lib/mpl_toolkits/axes_grid1/anchored_artists.py:docstring of mpl_toolkits.axes_grid1.anchored_artists.AnchoredDirectionArrows:4" + ], + "matplotlib.axes.Axes.transData": [ + "lib/mpl_toolkits/axes_grid1/anchored_artists.py:docstring of mpl_toolkits.axes_grid1.anchored_artists.AnchoredAuxTransformBox:7", + "lib/mpl_toolkits/axes_grid1/anchored_artists.py:docstring of mpl_toolkits.axes_grid1.anchored_artists.AnchoredEllipse:4", + "lib/mpl_toolkits/axes_grid1/anchored_artists.py:docstring of mpl_toolkits.axes_grid1.anchored_artists.AnchoredSizeBar:4" + ], + "matplotlib.axes.Axes.xaxis": [ + "doc/tutorials/artists.rst:589", + "doc/users/explain/axes/index.rst:133" + ], + "matplotlib.axes.Axes.yaxis": [ + "doc/tutorials/artists.rst:589", + "doc/users/explain/axes/index.rst:133" + ], + "matplotlib.axis.Axis.label": [ + "doc/tutorials/artists.rst:636" + ], + "matplotlib.colors.Colormap.name": [ + "lib/matplotlib/cm.py:docstring of matplotlib.cm:10" + ], + "matplotlib.figure.Figure.patch": [ + "doc/tutorials/artists.rst:177", + "doc/tutorials/artists.rst:310" + ], + "matplotlib.figure.Figure.transFigure": [ + "doc/tutorials/artists.rst:359" + ], + "max": [ + "lib/matplotlib/transforms.py:docstring of matplotlib.transforms:1" + ], + "min": [ + "lib/matplotlib/transforms.py:docstring of matplotlib.transforms:1" + ], + "mpl_toolkits.mplot3d.axis3d._axinfo": [ + "doc/api/toolkits/mplot3d.rst:66" + ], + "name": [ + "lib/matplotlib/scale.py:docstring of matplotlib.scale:7" + ], + "output_dims": [ + "lib/matplotlib/projections/geo.py:docstring of matplotlib.projections.geo.AitoffAxes:6", + "lib/matplotlib/transforms.py:docstring of matplotlib.transforms:10", + "lib/matplotlib/transforms.py:docstring of matplotlib.transforms:16", + "lib/matplotlib/transforms.py:docstring of matplotlib.transforms:17" + ], + "triangulation": [ + "lib/matplotlib/tri/_trirefine.py:docstring of matplotlib.tri._trirefine.UniformTriRefiner:1" + ], + "use_sticky_edges": [ + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.margins:48" + ], + "width": [ + "lib/matplotlib/transforms.py:docstring of matplotlib.transforms:1" + ], + "xmax": [ + "lib/matplotlib/transforms.py:docstring of matplotlib.transforms:1" + ], + "xmin": [ + "lib/matplotlib/transforms.py:docstring of matplotlib.transforms:1" + ], + "ymax": [ + "lib/matplotlib/transforms.py:docstring of matplotlib.transforms:1" + ], + "ymin": [ + "lib/matplotlib/transforms.py:docstring of matplotlib.transforms:1" + ] + }, + "py:class": { + "ArrayLike": [ + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.acorr:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.angle_spectrum:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.bar:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.bar_label:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.barh:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.boxplot:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.clabel:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.csd:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.ecdf:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.errorbar:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.eventplot:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.figimage:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.fill_between:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.fill_betweenx:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.hist2d:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.hist:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.hlines:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.imsave:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.imshow:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.magnitude_spectrum:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.matshow:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.pcolor:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.pcolormesh:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.phase_spectrum:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.pie:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.plot:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.plot_date:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.psd:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.rgrids:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.scatter:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.specgram:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.spy:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.stairs:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.stem:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.step:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.subplot_mosaic:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.thetagrids:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.violinplot:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.vlines:1" + ], + "ColorType": [ + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.errorbar:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.eventplot:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.hist:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.hlines:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.pie:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.scatter:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.vlines:1" + ], + "HashableList": [ + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.subplot_mosaic:1" + ], + "LineStyleType": [ + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.eventplot:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.hlines:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.vlines:1" + ], + "MarkerType": [ + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.scatter:1" + ], + "_AxesBase": [ + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.twinx:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.twiny:1" + ], + "matplotlib.axes._base._AxesBase": [ + "doc/api/artist_api.rst:202" + ], + "matplotlib.backend_bases.FigureCanvas": [ + "doc/tutorials/artists.rst:36", + "doc/tutorials/artists.rst:38", + "doc/tutorials/artists.rst:43" + ], + "matplotlib.backend_bases.Renderer": [ + "doc/tutorials/artists.rst:38", + "doc/tutorials/artists.rst:43" + ], + "matplotlib.backend_bases._Backend": [ + "lib/matplotlib/backend_bases.py:docstring of matplotlib.backend_bases:1" + ], + "matplotlib.backends._backend_pdf_ps.RendererPDFPSBase": [ + "lib/matplotlib/backends/backend_pdf.py:docstring of matplotlib.backends.backend_pdf:1", + "lib/matplotlib/backends/backend_ps.py:docstring of matplotlib.backends.backend_ps:1" + ], + "matplotlib.backends._backend_tk.FigureCanvasTk": [ + "lib/matplotlib/backends/backend_tkagg.py:docstring of matplotlib.backends.backend_tkagg:1", + "lib/matplotlib/backends/backend_tkcairo.py:docstring of matplotlib.backends.backend_tkcairo:1" + ], + "matplotlib.backends.backend_webagg_core.FigureCanvasWebAggCore": [ + "lib/matplotlib/backends/backend_nbagg.py:docstring of matplotlib.backends.backend_nbagg:1", + "lib/matplotlib/backends/backend_webagg.py:docstring of matplotlib.backends.backend_webagg:1" + ], + "matplotlib.backends.backend_webagg_core.FigureManagerWebAgg": [ + "lib/matplotlib/backends/backend_nbagg.py:docstring of matplotlib.backends.backend_nbagg:1", + "lib/matplotlib/backends/backend_webagg.py:docstring of matplotlib.backends.backend_webagg:1" + ], + "matplotlib.backends.backend_webagg_core.NavigationToolbar2WebAgg": [ + "lib/matplotlib/backends/backend_nbagg.py:docstring of matplotlib.backends.backend_nbagg:1" + ], + "matplotlib.collections._CollectionWithSizes": [ + "doc/api/artist_api.rst:202", + "doc/api/collections_api.rst:13", + "lib/matplotlib/collections.py:docstring of matplotlib.collections:1" + ], + "matplotlib.collections._MeshData": [ + "doc/api/artist_api.rst:202", + "doc/api/collections_api.rst:13", + "lib/matplotlib/collections.py:docstring of matplotlib.collections:1" + ], + "matplotlib.image._ImageBase": [ + "doc/api/artist_api.rst:202", + "lib/matplotlib/image.py:docstring of matplotlib.image:1" + ], + "matplotlib.patches.ArrowStyle._Base": [ + "lib/matplotlib/patches.py:docstring of matplotlib.patches.ArrowStyle:1" + ], + "matplotlib.patches.ArrowStyle._Curve": [ + "lib/matplotlib/patches.py:docstring of matplotlib.patches.ArrowStyle:1" + ], + "matplotlib.patches.ConnectionStyle._Base": [ + "lib/matplotlib/patches.py:docstring of matplotlib.patches.ConnectionStyle:1" + ], + "matplotlib.patches._Style": [ + "lib/matplotlib/patches.py:docstring of matplotlib.patches.ArrowStyle:1", + "lib/matplotlib/patches.py:docstring of matplotlib.patches.BoxStyle:1", + "lib/matplotlib/patches.py:docstring of matplotlib.patches.ConnectionStyle:1", + "lib/mpl_toolkits/axisartist/axisline_style.py:docstring of mpl_toolkits.axisartist.axisline_style.AxislineStyle:1" + ], + "matplotlib.projections.geo._GeoTransform": [ + "lib/matplotlib/projections/geo.py:docstring of matplotlib.projections.geo:1" + ], + "matplotlib.text._AnnotationBase": [ + "doc/api/artist_api.rst:202", + "lib/matplotlib/offsetbox.py:docstring of matplotlib.offsetbox:1", + "lib/matplotlib/text.py:docstring of matplotlib.text.Annotation:1" + ], + "matplotlib.transforms._BlendedMixin": [ + "lib/matplotlib/transforms.py:docstring of matplotlib.transforms:1" + ], + "matplotlib.widgets._SelectorWidget": [ + "lib/matplotlib/widgets.py:docstring of matplotlib.widgets:1" + ], + "mpl_toolkits.axes_grid1.axes_size._Base": [ + "lib/mpl_toolkits/axes_grid1/axes_size.py:docstring of mpl_toolkits.axes_grid1.axes_size.Add:1", + "lib/mpl_toolkits/axes_grid1/axes_size.py:docstring of mpl_toolkits.axes_grid1.axes_size.AxesX:1", + "lib/mpl_toolkits/axes_grid1/axes_size.py:docstring of mpl_toolkits.axes_grid1.axes_size.AxesY:1", + "lib/mpl_toolkits/axes_grid1/axes_size.py:docstring of mpl_toolkits.axes_grid1.axes_size.Fixed:1", + "lib/mpl_toolkits/axes_grid1/axes_size.py:docstring of mpl_toolkits.axes_grid1.axes_size.Fraction:1", + "lib/mpl_toolkits/axes_grid1/axes_size.py:docstring of mpl_toolkits.axes_grid1.axes_size.MaxExtent:1", + "lib/mpl_toolkits/axes_grid1/axes_size.py:docstring of mpl_toolkits.axes_grid1.axes_size.Scaled:1" + ], + "mpl_toolkits.axes_grid1.parasite_axes.AxesHostAxes": [ + "doc/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.rst:30::1", + "lib/mpl_toolkits/axes_grid1/parasite_axes.py:docstring of mpl_toolkits.axes_grid1.parasite_axes.AxesHostAxes:1" + ], + "mpl_toolkits.axes_grid1.parasite_axes.AxesParasite": [ + "doc/api/_as_gen/mpl_toolkits.axes_grid1.parasite_axes.rst:30::1", + "lib/mpl_toolkits/axes_grid1/parasite_axes.py:docstring of mpl_toolkits.axes_grid1.parasite_axes.AxesParasite:1" + ], + "mpl_toolkits.axisartist.Axes": [ + "doc/api/toolkits/axisartist.rst:6" + ], + "mpl_toolkits.axisartist.axisline_style.AxislineStyle._Base": [ + "lib/mpl_toolkits/axisartist/axisline_style.py:docstring of mpl_toolkits.axisartist.axisline_style.AxislineStyle:1" + ], + "mpl_toolkits.axisartist.axisline_style._FancyAxislineStyle.FilledArrow": [ + "lib/mpl_toolkits/axisartist/axisline_style.py:docstring of mpl_toolkits.axisartist.axisline_style.AxislineStyle:1" + ], + "mpl_toolkits.axisartist.axisline_style._FancyAxislineStyle.SimpleArrow": [ + "lib/mpl_toolkits/axisartist/axisline_style.py:docstring of mpl_toolkits.axisartist.axisline_style.AxislineStyle:1" + ], + "mpl_toolkits.axisartist.axislines._FixedAxisArtistHelperBase": [ + "lib/mpl_toolkits/axisartist/axislines.py:docstring of mpl_toolkits.axisartist.axislines.AxisArtistHelper:1", + "lib/mpl_toolkits/axisartist/axislines.py:docstring of mpl_toolkits.axisartist.axislines.FixedAxisArtistHelperRectilinear:1", + "lib/mpl_toolkits/axisartist/grid_helper_curvelinear.py:docstring of mpl_toolkits.axisartist.grid_helper_curvelinear.FixedAxisArtistHelper:1" + ], + "mpl_toolkits.axisartist.axislines._FloatingAxisArtistHelperBase": [ + "lib/mpl_toolkits/axisartist/axislines.py:docstring of mpl_toolkits.axisartist.axislines.AxisArtistHelper:1", + "lib/mpl_toolkits/axisartist/axislines.py:docstring of mpl_toolkits.axisartist.axislines.FloatingAxisArtistHelperRectilinear:1", + "lib/mpl_toolkits/axisartist/grid_helper_curvelinear.py:docstring of mpl_toolkits.axisartist.grid_helper_curvelinear.FloatingAxisArtistHelper:1" + ], + "mpl_toolkits.axisartist.floating_axes.FloatingAxesHostAxes": [ + "doc/api/_as_gen/mpl_toolkits.axisartist.floating_axes.rst:32::1", + "lib/mpl_toolkits/axisartist/floating_axes.py:docstring of mpl_toolkits.axisartist.floating_axes.FloatingAxesHostAxes:1" + ], + "np.ndarray": [ + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.acorr:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.angle_spectrum:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.cohere:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.csd:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.hist2d:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.hist:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.imread:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.magnitude_spectrum:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.phase_spectrum:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.psd:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.specgram:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.xcorr:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.xticks:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.yticks:1" + ], + "numpy.uint8": [ + "lib/matplotlib/path.py:docstring of matplotlib.path:1" + ] + }, + "py:data": { + "matplotlib.axes.Axes.transAxes": [ + "lib/matplotlib/axes/_axes.py:docstring of matplotlib.axes._axes.Axes.legend:238", + "lib/matplotlib/figure.py:docstring of matplotlib.figure.FigureBase.add_artist:1", + "lib/matplotlib/legend.py:docstring of matplotlib.legend.Legend:105", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.figlegend:242", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.legend:238" + ] + }, + "py:meth": { + "AbstractPathEffect._update_gc": [ + "lib/matplotlib/patheffects.py:docstring of matplotlib.patheffects.AbstractPathEffect:26", + "lib/matplotlib/patheffects.py:docstring of matplotlib.patheffects.AbstractPathEffect:28", + "lib/matplotlib/patheffects.py:docstring of matplotlib.patheffects.AbstractPathEffect:35", + "lib/matplotlib/patheffects.py:docstring of matplotlib.patheffects.AbstractPathEffect:40", + "lib/matplotlib/patheffects.py:docstring of matplotlib.patheffects.AbstractPathEffect:41" + ], + "IPython.terminal.interactiveshell.TerminalInteractiveShell.inputhook": [ + "doc/users/explain/figure/interactive_guide.rst:420" + ], + "_find_tails": [ + "lib/matplotlib/quiver.py:docstring of matplotlib.quiver.Barbs:5" + ], + "_make_barbs": [ + "lib/matplotlib/quiver.py:docstring of matplotlib.quiver.Barbs:5" + ], + "get_matrix": [ + "lib/matplotlib/transforms.py:docstring of matplotlib.transforms:12" + ], + "matplotlib.collections._CollectionWithSizes.set_sizes": [ + "lib/matplotlib/axes/_axes.py:docstring of matplotlib.axes._axes.Axes.barbs:171", + "lib/matplotlib/axes/_axes.py:docstring of matplotlib.axes._axes.Axes.broken_barh:77", + "lib/matplotlib/axes/_axes.py:docstring of matplotlib.axes._axes.Axes.fill_between:113", + "lib/matplotlib/axes/_axes.py:docstring of matplotlib.axes._axes.Axes.fill_betweenx:113", + "lib/matplotlib/axes/_axes.py:docstring of matplotlib.axes._axes.Axes.hexbin:201", + "lib/matplotlib/axes/_axes.py:docstring of matplotlib.axes._axes.Axes.pcolor:173", + "lib/matplotlib/axes/_axes.py:docstring of matplotlib.axes._axes.Axes.quiver:207", + "lib/matplotlib/collections.py:docstring of matplotlib.collections.AsteriskPolygonCollection:22", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.barbs:171", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.broken_barh:77", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.fill_between:113", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.fill_betweenx:113", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.hexbin:201", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.pcolor:173", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.quiver:207", + "lib/matplotlib/quiver.py:docstring of matplotlib.quiver.Barbs:205", + "lib/matplotlib/quiver.py:docstring of matplotlib.quiver.Barbs:38", + "lib/matplotlib/quiver.py:docstring of matplotlib.quiver.Quiver:244", + "lib/matplotlib/quiver.py:docstring of matplotlib.quiver.Quiver:38", + "lib/mpl_toolkits/mplot3d/art3d.py:docstring of mpl_toolkits.mplot3d.art3d.Path3DCollection:39", + "lib/mpl_toolkits/mplot3d/art3d.py:docstring of mpl_toolkits.mplot3d.art3d.Poly3DCollection:37" + ], + "matplotlib.collections._MeshData.set_array": [ + "lib/matplotlib/axes/_axes.py:docstring of matplotlib.axes._axes.Axes.pcolormesh:155", + "lib/matplotlib/collections.py:docstring of matplotlib.collections.AsteriskPolygonCollection:1", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.pcolormesh:155" + ] + }, + "py:obj": { + "Artist.stale_callback": [ + "doc/users/explain/figure/interactive_guide.rst:323" + ], + "Artist.sticky_edges": [ + "doc/api/axes_api.rst:354::1", + "lib/matplotlib/axes/_axes.py:docstring of matplotlib.axes.Axes.use_sticky_edges:1" + ], + "Axes.dataLim": [ + "doc/api/axes_api.rst:293::1", + "lib/matplotlib/axes/_base.py:docstring of matplotlib.axes._base._AxesBase.update_datalim:1" + ], + "AxesBase": [ + "doc/api/axes_api.rst:446::1", + "lib/matplotlib/axes/_base.py:docstring of matplotlib.axes._base._AxesBase.add_child_axes:1" + ], + "Figure.stale_callback": [ + "doc/users/explain/figure/interactive_guide.rst:333" + ], + "Glyph": [ + "doc/gallery/misc/ftface_props.rst:28" + ], + "Image": [ + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.gci:1" + ], + "ImageComparisonFailure": [ + "lib/matplotlib/testing/decorators.py:docstring of matplotlib.testing.decorators:1" + ], + "Line2D.pick": [ + "doc/users/explain/figure/event_handling.rst:568" + ], + "QuadContourSet.changed()": [ + "lib/matplotlib/axes/_axes.py:docstring of matplotlib.axes._axes.Axes.contour:147", + "lib/matplotlib/axes/_axes.py:docstring of matplotlib.axes._axes.Axes.contourf:147", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.contour:147", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.contourf:147" + ], + "Rectangle.contains": [ + "doc/users/explain/figure/event_handling.rst:280" + ], + "Size.from_any": [ + "lib/mpl_toolkits/axes_grid1/axes_grid.py:docstring of mpl_toolkits.axes_grid1.axes_grid.ImageGrid:53", + "lib/mpl_toolkits/axisartist/axes_grid.py:docstring of mpl_toolkits.axisartist.axes_grid.ImageGrid:53" + ], + "Timer": [ + "lib/matplotlib/backend_bases.py:docstring of matplotlib.backend_bases:1", + "lib/matplotlib/backend_bases.py:docstring of matplotlib.backend_bases:13" + ], + "ToolContainer": [ + "lib/matplotlib/backend_bases.py:docstring of matplotlib.backend_bases:1", + "lib/matplotlib/backend_bases.py:docstring of matplotlib.backend_bases:19" + ], + "_iter_collection": [ + "lib/matplotlib/backend_bases.py:docstring of matplotlib.backend_bases:11", + "lib/matplotlib/backends/backend_pdf.py:docstring of matplotlib.backends.backend_pdf.FigureCanvasPdf:1", + "lib/matplotlib/backends/backend_ps.py:docstring of matplotlib.backends.backend_ps.FigureCanvasPS:1", + "lib/matplotlib/backends/backend_svg.py:docstring of matplotlib.backends.backend_svg.FigureCanvasSVG:1", + "lib/matplotlib/patheffects.py:docstring of matplotlib.patheffects.AbstractPathEffect:1" + ], + "_iter_collection_raw_paths": [ + "lib/matplotlib/backend_bases.py:docstring of matplotlib.backend_bases:11", + "lib/matplotlib/backends/backend_pdf.py:docstring of matplotlib.backends.backend_pdf.FigureCanvasPdf:1", + "lib/matplotlib/backends/backend_ps.py:docstring of matplotlib.backends.backend_ps.FigureCanvasPS:1", + "lib/matplotlib/backends/backend_svg.py:docstring of matplotlib.backends.backend_svg.FigureCanvasSVG:1", + "lib/matplotlib/patheffects.py:docstring of matplotlib.patheffects.AbstractPathEffect:1" + ], + "_read": [ + "lib/matplotlib/dviread.py:docstring of matplotlib.dviread:19" + ], + "active": [ + "lib/matplotlib/widgets.py:docstring of matplotlib.widgets.AxesWidget:15" + ], + "ax.transAxes": [ + "lib/matplotlib/axes/_axes.py:docstring of matplotlib.axes._axes.Axes.indicate_inset:14", + "lib/matplotlib/axes/_axes.py:docstring of matplotlib.axes._axes.Axes.inset_axes:6" + ], + "axes.bbox": [ + "lib/matplotlib/axes/_axes.py:docstring of matplotlib.axes._axes.Axes.legend:136", + "lib/matplotlib/figure.py:docstring of matplotlib.figure.Figure:69", + "lib/matplotlib/legend.py:docstring of matplotlib.legend.Legend:3", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.figlegend:140", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.legend:136" + ], + "can_composite": [ + "lib/matplotlib/image.py:docstring of matplotlib.image:5" + ], + "converter": [ + "lib/matplotlib/testing/compare.py:docstring of matplotlib.testing.compare:1" + ], + "draw_image": [ + "lib/matplotlib/backends/backend_agg.py:docstring of matplotlib.backends.backend_agg:1" + ], + "figure.bbox": [ + "lib/matplotlib/axes/_axes.py:docstring of matplotlib.axes._axes.Axes.legend:136", + "lib/matplotlib/figure.py:docstring of matplotlib.figure.Figure:69", + "lib/matplotlib/legend.py:docstring of matplotlib.legend.Legend:3", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.figlegend:140", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.legend:136" + ], + "fmt_xdata": [ + "lib/matplotlib/axes/_base.py:docstring of matplotlib.axes._base._AxesBase.format_xdata:1" + ], + "fmt_ydata": [ + "lib/matplotlib/axes/_base.py:docstring of matplotlib.axes._base._AxesBase.format_ydata:1" + ], + "get_size": [ + "lib/mpl_toolkits/axes_grid1/axes_size.py:docstring of mpl_toolkits.axes_grid1.axes_size:1" + ], + "get_xbound": [ + "lib/mpl_toolkits/mplot3d/axes3d.py:docstring of mpl_toolkits.mplot3d.axes3d.Axes3D.get_xlim:17" + ], + "get_ybound": [ + "lib/mpl_toolkits/mplot3d/axes3d.py:docstring of mpl_toolkits.mplot3d.axes3d.Axes3D.get_ylim:17" + ], + "invert_xaxis": [ + "lib/mpl_toolkits/mplot3d/axes3d.py:docstring of mpl_toolkits.mplot3d.axes3d.Axes3D.get_xlim:19" + ], + "invert_yaxis": [ + "lib/mpl_toolkits/mplot3d/axes3d.py:docstring of mpl_toolkits.mplot3d.axes3d.Axes3D.get_ylim:19" + ], + "ipykernel.pylab.backend_inline": [ + "doc/users/explain/figure/interactive.rst:264" + ], + "kde.covariance_factor": [ + "lib/matplotlib/mlab.py:docstring of matplotlib.mlab:40" + ], + "kde.factor": [ + "lib/matplotlib/axes/_axes.py:docstring of matplotlib.axes._axes.Axes.violinplot:41", + "lib/matplotlib/mlab.py:docstring of matplotlib.mlab:11", + "lib/matplotlib/mlab.py:docstring of matplotlib.mlab:44", + "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.violinplot:41" + ], + "make_image": [ + "lib/matplotlib/image.py:docstring of matplotlib.image:5" + ], + "matplotlib.animation.ArtistAnimation.new_frame_seq": [ + "doc/api/_as_gen/matplotlib.animation.ArtistAnimation.rst:28::1" + ], + "matplotlib.animation.ArtistAnimation.new_saved_frame_seq": [ + "doc/api/_as_gen/matplotlib.animation.ArtistAnimation.rst:28::1" + ], + "matplotlib.animation.ArtistAnimation.pause": [ + "doc/api/_as_gen/matplotlib.animation.ArtistAnimation.rst:28::1" + ], + "matplotlib.animation.ArtistAnimation.repeat": [ + "doc/api/_as_gen/matplotlib.animation.ArtistAnimation.rst:33::1" + ], + "matplotlib.animation.ArtistAnimation.resume": [ + "doc/api/_as_gen/matplotlib.animation.ArtistAnimation.rst:28::1" + ], + "matplotlib.animation.ArtistAnimation.save": [ + "doc/api/_as_gen/matplotlib.animation.ArtistAnimation.rst:28::1" + ], + "matplotlib.animation.ArtistAnimation.to_html5_video": [ + "doc/api/_as_gen/matplotlib.animation.ArtistAnimation.rst:28::1" + ], + "matplotlib.animation.ArtistAnimation.to_jshtml": [ + "doc/api/_as_gen/matplotlib.animation.ArtistAnimation.rst:28::1" + ], + "matplotlib.animation.FFMpegFileWriter.bin_path": [ + "doc/api/_as_gen/matplotlib.animation.FFMpegFileWriter.rst:27::1" + ], + "matplotlib.animation.FFMpegFileWriter.finish": [ + "doc/api/_as_gen/matplotlib.animation.FFMpegFileWriter.rst:27::1" + ], + "matplotlib.animation.FFMpegFileWriter.frame_format": [ + "lib/matplotlib/animation.py:docstring of matplotlib.animation.FFMpegFileWriter.supported_formats:1::1" + ], + "matplotlib.animation.FFMpegFileWriter.frame_size": [ + "lib/matplotlib/animation.py:docstring of matplotlib.animation.FFMpegFileWriter.supported_formats:1::1" + ], + "matplotlib.animation.FFMpegFileWriter.grab_frame": [ + "doc/api/_as_gen/matplotlib.animation.FFMpegFileWriter.rst:27::1" + ], + "matplotlib.animation.FFMpegFileWriter.isAvailable": [ + "doc/api/_as_gen/matplotlib.animation.FFMpegFileWriter.rst:27::1" + ], + "matplotlib.animation.FFMpegFileWriter.output_args": [ + "lib/matplotlib/animation.py:docstring of matplotlib.animation.FFMpegFileWriter.supported_formats:1::1" + ], + "matplotlib.animation.FFMpegFileWriter.saving": [ + "doc/api/_as_gen/matplotlib.animation.FFMpegFileWriter.rst:27::1" + ], + "matplotlib.animation.FFMpegFileWriter.setup": [ + "doc/api/_as_gen/matplotlib.animation.FFMpegFileWriter.rst:27::1" + ], + "matplotlib.animation.FFMpegWriter.bin_path": [ + "doc/api/_as_gen/matplotlib.animation.FFMpegWriter.rst:27::1" + ], + "matplotlib.animation.FFMpegWriter.finish": [ + "doc/api/_as_gen/matplotlib.animation.FFMpegWriter.rst:27::1" + ], + "matplotlib.animation.FFMpegWriter.frame_size": [ + "doc/api/_as_gen/matplotlib.animation.FFMpegWriter.rst:34::1" + ], + "matplotlib.animation.FFMpegWriter.grab_frame": [ + "doc/api/_as_gen/matplotlib.animation.FFMpegWriter.rst:27::1" + ], + "matplotlib.animation.FFMpegWriter.isAvailable": [ + "doc/api/_as_gen/matplotlib.animation.FFMpegWriter.rst:27::1" + ], + "matplotlib.animation.FFMpegWriter.output_args": [ + "doc/api/_as_gen/matplotlib.animation.FFMpegWriter.rst:34::1" + ], + "matplotlib.animation.FFMpegWriter.saving": [ + "doc/api/_as_gen/matplotlib.animation.FFMpegWriter.rst:27::1" + ], + "matplotlib.animation.FFMpegWriter.setup": [ + "doc/api/_as_gen/matplotlib.animation.FFMpegWriter.rst:27::1" + ], + "matplotlib.animation.FFMpegWriter.supported_formats": [ + "doc/api/_as_gen/matplotlib.animation.FFMpegWriter.rst:34::1" + ], + "matplotlib.animation.FileMovieWriter.bin_path": [ + "doc/api/_as_gen/matplotlib.animation.FileMovieWriter.rst:27::1" + ], + "matplotlib.animation.FileMovieWriter.frame_size": [ + "lib/matplotlib/animation.py:docstring of matplotlib.animation.FileMovieWriter.finish:1::1" + ], + "matplotlib.animation.FileMovieWriter.isAvailable": [ + "doc/api/_as_gen/matplotlib.animation.FileMovieWriter.rst:27::1" + ], + "matplotlib.animation.FileMovieWriter.saving": [ + "doc/api/_as_gen/matplotlib.animation.FileMovieWriter.rst:27::1" + ], + "matplotlib.animation.FileMovieWriter.supported_formats": [ + "lib/matplotlib/animation.py:docstring of matplotlib.animation.FileMovieWriter.finish:1::1" + ], + "matplotlib.animation.FuncAnimation.pause": [ + "doc/api/_as_gen/matplotlib.animation.FuncAnimation.rst:28::1" + ], + "matplotlib.animation.FuncAnimation.repeat": [ + "lib/matplotlib/animation.py:docstring of matplotlib.animation.FuncAnimation.new_frame_seq:1::1" + ], + "matplotlib.animation.FuncAnimation.resume": [ + "doc/api/_as_gen/matplotlib.animation.FuncAnimation.rst:28::1" + ], + "matplotlib.animation.FuncAnimation.save": [ + "doc/api/_as_gen/matplotlib.animation.FuncAnimation.rst:28::1" + ], + "matplotlib.animation.FuncAnimation.to_html5_video": [ + "doc/api/_as_gen/matplotlib.animation.FuncAnimation.rst:28::1" + ], + "matplotlib.animation.FuncAnimation.to_jshtml": [ + "doc/api/_as_gen/matplotlib.animation.FuncAnimation.rst:28::1" + ], + "matplotlib.animation.HTMLWriter.bin_path": [ + "doc/api/_as_gen/matplotlib.animation.HTMLWriter.rst:27::1" + ], + "matplotlib.animation.HTMLWriter.frame_format": [ + "lib/matplotlib/animation.py:docstring of matplotlib.animation.HTMLWriter.finish:1::1" + ], + "matplotlib.animation.HTMLWriter.frame_size": [ + "lib/matplotlib/animation.py:docstring of matplotlib.animation.HTMLWriter.finish:1::1" + ], + "matplotlib.animation.HTMLWriter.saving": [ + "doc/api/_as_gen/matplotlib.animation.HTMLWriter.rst:27::1" + ], + "matplotlib.animation.ImageMagickFileWriter.bin_path": [ + "doc/api/_as_gen/matplotlib.animation.ImageMagickFileWriter.rst:27::1" + ], + "matplotlib.animation.ImageMagickFileWriter.finish": [ + "doc/api/_as_gen/matplotlib.animation.ImageMagickFileWriter.rst:27::1" + ], + "matplotlib.animation.ImageMagickFileWriter.frame_format": [ + "lib/matplotlib/animation.py:docstring of matplotlib.animation.ImageMagickFileWriter.input_names:1::1" + ], + "matplotlib.animation.ImageMagickFileWriter.frame_size": [ + "lib/matplotlib/animation.py:docstring of matplotlib.animation.ImageMagickFileWriter.input_names:1::1" + ], + "matplotlib.animation.ImageMagickFileWriter.grab_frame": [ + "doc/api/_as_gen/matplotlib.animation.ImageMagickFileWriter.rst:27::1" + ], + "matplotlib.animation.ImageMagickFileWriter.isAvailable": [ + "doc/api/_as_gen/matplotlib.animation.ImageMagickFileWriter.rst:27::1" + ], + "matplotlib.animation.ImageMagickFileWriter.saving": [ + "doc/api/_as_gen/matplotlib.animation.ImageMagickFileWriter.rst:27::1" + ], + "matplotlib.animation.ImageMagickFileWriter.setup": [ + "doc/api/_as_gen/matplotlib.animation.ImageMagickFileWriter.rst:27::1" + ], + "matplotlib.animation.ImageMagickWriter.bin_path": [ + "doc/api/_as_gen/matplotlib.animation.ImageMagickWriter.rst:27::1" + ], + "matplotlib.animation.ImageMagickWriter.finish": [ + "doc/api/_as_gen/matplotlib.animation.ImageMagickWriter.rst:27::1" + ], + "matplotlib.animation.ImageMagickWriter.frame_size": [ + "lib/matplotlib/animation.py:docstring of matplotlib.animation.ImageMagickWriter.input_names:1::1" + ], + "matplotlib.animation.ImageMagickWriter.grab_frame": [ + "doc/api/_as_gen/matplotlib.animation.ImageMagickWriter.rst:27::1" + ], + "matplotlib.animation.ImageMagickWriter.isAvailable": [ + "doc/api/_as_gen/matplotlib.animation.ImageMagickWriter.rst:27::1" + ], + "matplotlib.animation.ImageMagickWriter.saving": [ + "doc/api/_as_gen/matplotlib.animation.ImageMagickWriter.rst:27::1" + ], + "matplotlib.animation.ImageMagickWriter.setup": [ + "doc/api/_as_gen/matplotlib.animation.ImageMagickWriter.rst:27::1" + ], + "matplotlib.animation.ImageMagickWriter.supported_formats": [ + "lib/matplotlib/animation.py:docstring of matplotlib.animation.ImageMagickWriter.input_names:1::1" + ], + "matplotlib.animation.MovieWriter.frame_size": [ + "lib/matplotlib/animation.py:docstring of matplotlib.animation.MovieWriter.bin_path:1::1" + ], + "matplotlib.animation.MovieWriter.saving": [ + "doc/api/_as_gen/matplotlib.animation.MovieWriter.rst:27::1" + ], + "matplotlib.animation.PillowWriter.frame_size": [ + "lib/matplotlib/animation.py:docstring of matplotlib.animation.PillowWriter.finish:1::1" + ], + "matplotlib.animation.PillowWriter.saving": [ + "doc/api/_as_gen/matplotlib.animation.PillowWriter.rst:26::1" + ], + "matplotlib.animation.TimedAnimation.new_frame_seq": [ + "doc/api/_as_gen/matplotlib.animation.TimedAnimation.rst:28::1" + ], + "matplotlib.animation.TimedAnimation.new_saved_frame_seq": [ + "doc/api/_as_gen/matplotlib.animation.TimedAnimation.rst:28::1" + ], + "matplotlib.animation.TimedAnimation.pause": [ + "doc/api/_as_gen/matplotlib.animation.TimedAnimation.rst:28::1" + ], + "matplotlib.animation.TimedAnimation.resume": [ + "doc/api/_as_gen/matplotlib.animation.TimedAnimation.rst:28::1" + ], + "matplotlib.animation.TimedAnimation.save": [ + "doc/api/_as_gen/matplotlib.animation.TimedAnimation.rst:28::1" + ], + "matplotlib.animation.TimedAnimation.to_html5_video": [ + "doc/api/_as_gen/matplotlib.animation.TimedAnimation.rst:28::1" + ], + "matplotlib.animation.TimedAnimation.to_jshtml": [ + "doc/api/_as_gen/matplotlib.animation.TimedAnimation.rst:28::1" + ], + "mpl_toolkits.axislines.Axes": [ + "lib/mpl_toolkits/axisartist/axis_artist.py:docstring of mpl_toolkits.axisartist.axis_artist:7" + ], + "next_whats_new": [ + "doc/users/next_whats_new/README.rst:6" + ], + "option_scale_image": [ + "lib/matplotlib/backends/backend_cairo.py:docstring of matplotlib.backends.backend_cairo.FigureCanvasCairo:1", + "lib/matplotlib/backends/backend_pdf.py:docstring of matplotlib.backends.backend_pdf.FigureCanvasPdf:1", + "lib/matplotlib/backends/backend_ps.py:docstring of matplotlib.backends.backend_ps.FigureCanvasPS:2", + "lib/matplotlib/backends/backend_template.py:docstring of matplotlib.backends.backend_template:18" + ], + "print_xyz": [ + "lib/matplotlib/backends/backend_template.py:docstring of matplotlib.backends.backend_template:22" + ], + "set_xbound": [ + "lib/mpl_toolkits/mplot3d/axes3d.py:docstring of mpl_toolkits.mplot3d.axes3d.Axes3D.get_xlim:17" + ], + "set_ybound": [ + "lib/mpl_toolkits/mplot3d/axes3d.py:docstring of mpl_toolkits.mplot3d.axes3d.Axes3D.get_ylim:17" + ], + "toggled": [ + "lib/matplotlib/backend_tools.py:docstring of matplotlib.backend_tools:1" + ], + "tool_removed_event": [ + "lib/matplotlib/backend_bases.py:docstring of matplotlib.backend_bases:2" + ], + "whats_new.rst": [ + "doc/users/next_whats_new/README.rst:6" + ], + "xaxis_inverted": [ + "lib/mpl_toolkits/mplot3d/axes3d.py:docstring of mpl_toolkits.mplot3d.axes3d.Axes3D.get_xlim:19" + ], + "yaxis_inverted": [ + "lib/mpl_toolkits/mplot3d/axes3d.py:docstring of mpl_toolkits.mplot3d.axes3d.Axes3D.get_ylim:19" + ] + } +} diff --git a/testbed/matplotlib__matplotlib/doc/sphinxext/missing_references.py b/testbed/matplotlib__matplotlib/doc/sphinxext/missing_references.py new file mode 100644 index 0000000000000000000000000000000000000000..cc0a3a8ea26863fba383918fa121c1b6ff739c46 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/sphinxext/missing_references.py @@ -0,0 +1,299 @@ +""" +This is a sphinx extension to freeze your broken reference problems +when using ``nitpicky = True``. + +The basic operation is: + +1. Add this extension to your ``conf.py`` extensions. +2. Add ``missing_references_write_json = True`` to your ``conf.py`` +3. Run sphinx-build. It will generate ``missing-references.json`` + next to your ``conf.py``. +4. Remove ``missing_references_write_json = True`` from your + ``conf.py`` (or set it to ``False``) +5. Run sphinx-build again, and ``nitpick_ignore`` will + contain all of the previously failed references. + +""" + +from collections import defaultdict +import json +import logging +from pathlib import Path + +from docutils.utils import get_source_line +from docutils import nodes +from sphinx.util import logging as sphinx_logging + +import matplotlib + +logger = sphinx_logging.getLogger(__name__) + + +class MissingReferenceFilter(logging.Filter): + """ + A logging filter designed to record missing reference warning messages + for use by this extension + """ + def __init__(self, app): + self.app = app + super().__init__() + + def _record_reference(self, record): + if not (getattr(record, 'type', '') == 'ref' and + isinstance(getattr(record, 'location', None), nodes.Node)): + return + + if not hasattr(self.app.env, "missing_references_warnings"): + self.app.env.missing_references_warnings = defaultdict(set) + + record_missing_reference(self.app, + self.app.env.missing_references_warnings, + record.location) + + def filter(self, record): + self._record_reference(record) + return True + + +def record_missing_reference(app, record, node): + domain = node["refdomain"] + typ = node["reftype"] + target = node["reftarget"] + location = get_location(node, app) + + domain_type = f"{domain}:{typ}" + + record[(domain_type, target)].add(location) + + +def record_missing_reference_handler(app, env, node, contnode): + """ + When the sphinx app notices a missing reference, it emits an + event which calls this function. This function records the missing + references for analysis at the end of the sphinx build. + """ + if not app.config.missing_references_enabled: + # no-op when we are disabled. + return + + if not hasattr(env, "missing_references_events"): + env.missing_references_events = defaultdict(set) + + record_missing_reference(app, env.missing_references_events, node) + + +def get_location(node, app): + """ + Given a docutils node and a sphinx application, return a string + representation of the source location of this node. + + Usually, this will be of the form "path/to/file:linenumber". Two + special values can be emitted, "" for paths which are + not contained in this source tree (e.g. docstrings included from + other modules) or "", indicating that the sphinx application + cannot locate the original source file (usually because an extension + has injected text into the sphinx parsing engine). + """ + source, line = get_source_line(node) + + if source: + # 'source' can have the form '/some/path:docstring of some.api' but the + # colons are forbidden on windows, but on posix just passes through. + path, *post = source.partition(':') + post = ''.join(post) + # We locate references relative to the parent of the doc + # directory, which for matplotlib, will be the root of the + # matplotlib repo. When matplotlib is not an editable install + # weird things will happen, but we can't totally recover from + # that. + basepath = Path(app.srcdir).parent.resolve() + + fullpath = Path(path).resolve() + + try: + path = fullpath.relative_to(basepath) + except ValueError: + # Sometimes docs directly contain e.g. docstrings + # from installed modules, and we record those as + # so as to be independent of where the + # module was installed + path = Path("") / fullpath.name + + # Ensure that all reported paths are POSIX so that docs + # on windows result in the same warnings in the JSON file. + path = path.as_posix() + + else: + path = "" + post = '' + if not line: + line = "" + + return f"{path}{post}:{line}" + + +def _truncate_location(location): + """ + Cuts off anything after the first colon in location strings. + + This allows for easy comparison even when line numbers change + (as they do regularly). + """ + return location.split(":", 1)[0] + + +def _warn_unused_missing_references(app): + if not app.config.missing_references_warn_unused_ignores: + return + + # We can only warn if we are building from a source install + # otherwise, we just have to skip this step. + basepath = Path(matplotlib.__file__).parent.parent.parent.resolve() + srcpath = Path(app.srcdir).parent.resolve() + + if basepath != srcpath: + return + + # This is a dictionary of {(domain_type, target): locations} + references_ignored = getattr( + app.env, 'missing_references_ignored_references', {}) + references_events = getattr(app.env, 'missing_references_events', {}) + + # Warn about any reference which is no longer missing. + for (domain_type, target), locations in references_ignored.items(): + missing_reference_locations = [ + _truncate_location(location) + for location in references_events.get((domain_type, target), [])] + + # For each ignored reference location, ensure a missing reference + # was observed. If it wasn't observed, issue a warning. + for ignored_reference_location in locations: + short_location = _truncate_location(ignored_reference_location) + if short_location not in missing_reference_locations: + msg = (f"Reference {domain_type} {target} for " + f"{ignored_reference_location} can be removed" + f" from {app.config.missing_references_filename}." + " It is no longer a missing reference in the docs.") + logger.warning(msg, + location=ignored_reference_location, + type='ref', + subtype=domain_type) + + +def save_missing_references_handler(app, exc): + """ + At the end of the sphinx build, check that all lines of the existing JSON + file are still necessary. + + If the configuration value ``missing_references_write_json`` is set + then write a new JSON file containing missing references. + """ + if not app.config.missing_references_enabled: + # no-op when we are disabled. + return + + _warn_unused_missing_references(app) + + json_path = (Path(app.confdir) / + app.config.missing_references_filename) + + references_warnings = getattr(app.env, 'missing_references_warnings', {}) + + if app.config.missing_references_write_json: + _write_missing_references_json(references_warnings, json_path) + + +def _write_missing_references_json(records, json_path): + """ + Convert ignored references to a format which we can write as JSON + + Convert from ``{(domain_type, target): locations}`` to + ``{domain_type: {target: locations}}`` since JSON can't serialize tuples. + """ + # Sorting records and keys avoids needlessly big diffs when + # missing_references.json is regenerated. + transformed_records = defaultdict(dict) + for (domain_type, target), paths in records.items(): + transformed_records[domain_type][target] = sorted(paths) + with json_path.open("w") as stream: + json.dump(transformed_records, stream, sort_keys=True, indent=2) + + +def _read_missing_references_json(json_path): + """ + Convert from the JSON file to the form used internally by this + extension. + + The JSON file is stored as ``{domain_type: {target: [locations,]}}`` + since JSON can't store dictionary keys which are tuples. We convert + this back to ``{(domain_type, target):[locations]}`` for internal use. + + """ + with json_path.open("r") as stream: + data = json.load(stream) + + ignored_references = {} + for domain_type, targets in data.items(): + for target, locations in targets.items(): + ignored_references[(domain_type, target)] = locations + return ignored_references + + +def prepare_missing_references_handler(app): + """ + Handler called to initialize this extension once the configuration + is ready. + + Reads the missing references file and populates ``nitpick_ignore`` if + appropriate. + """ + if not app.config.missing_references_enabled: + # no-op when we are disabled. + return + + sphinx_logger = logging.getLogger('sphinx') + missing_reference_filter = MissingReferenceFilter(app) + for handler in sphinx_logger.handlers: + if (isinstance(handler, sphinx_logging.WarningStreamHandler) + and missing_reference_filter not in handler.filters): + + # This *must* be the first filter, because subsequent filters + # throw away the node information and then we can't identify + # the reference uniquely. + handler.filters.insert(0, missing_reference_filter) + + app.env.missing_references_ignored_references = {} + + json_path = (Path(app.confdir) / + app.config.missing_references_filename) + if not json_path.exists(): + return + + ignored_references = _read_missing_references_json(json_path) + + app.env.missing_references_ignored_references = ignored_references + + # If we are going to re-write the JSON file, then don't suppress missing + # reference warnings. We want to record a full list of missing references + # for use later. Otherwise, add all known missing references to + # ``nitpick_ignore``` + if not app.config.missing_references_write_json: + # Since Sphinx v6.2, nitpick_ignore may be a list, set or tuple, and + # defaults to set. Previously it was always a list. Cast to list for + # consistency across versions. + app.config.nitpick_ignore = list(app.config.nitpick_ignore) + app.config.nitpick_ignore.extend(ignored_references.keys()) + + +def setup(app): + app.add_config_value("missing_references_enabled", True, "env") + app.add_config_value("missing_references_write_json", False, "env") + app.add_config_value("missing_references_warn_unused_ignores", True, "env") + app.add_config_value("missing_references_filename", + "missing-references.json", "env") + + app.connect("builder-inited", prepare_missing_references_handler) + app.connect("missing-reference", record_missing_reference_handler) + app.connect("build-finished", save_missing_references_handler) + + return {'parallel_read_safe': True} diff --git a/testbed/matplotlib__matplotlib/doc/users/faq/howto_faq.rst b/testbed/matplotlib__matplotlib/doc/users/faq/howto_faq.rst new file mode 100644 index 0000000000000000000000000000000000000000..f43494ff4f1251fb36839074d6874ddf733cfa27 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/faq/howto_faq.rst @@ -0,0 +1,309 @@ +.. _howto-faq: + +.. redirect-from:: /faq/howto_faq + +****** +How-to +****** + +.. contents:: + :backlinks: none + + +.. _how-to-too-many-ticks: + +Why do I have so many ticks, and/or why are they out of order? +-------------------------------------------------------------- + +One common cause for unexpected tick behavior is passing a *list of strings +instead of numbers or datetime objects*. This can easily happen without notice +when reading in a comma-delimited text file. Matplotlib treats lists of strings +as *categorical* variables +(:doc:`/gallery/lines_bars_and_markers/categorical_variables`), and by default +puts one tick per category, and plots them in the order in which they are +supplied. + +.. plot:: + :include-source: + :align: center + + import matplotlib.pyplot as plt + import numpy as np + + fig, ax = plt.subplots(1, 2, layout='constrained', figsize=(6, 2)) + + ax[0].set_title('Ticks seem out of order / misplaced') + x = ['5', '20', '1', '9'] # strings + y = [5, 20, 1, 9] + ax[0].plot(x, y, 'd') + ax[0].tick_params(axis='x', labelcolor='red', labelsize=14) + + ax[1].set_title('Many ticks') + x = [str(xx) for xx in np.arange(100)] # strings + y = np.arange(100) + ax[1].plot(x, y) + ax[1].tick_params(axis='x', labelcolor='red', labelsize=14) + +The solution is to convert the list of strings to numbers or +datetime objects (often ``np.asarray(numeric_strings, dtype='float')`` or +``np.asarray(datetime_strings, dtype='datetime64[s]')``). + +For more information see :doc:`/gallery/ticks/ticks_too_many`. + +.. _howto-determine-artist-extent: + +Determine the extent of Artists in the Figure +--------------------------------------------- + +Sometimes we want to know the extent of an Artist. Matplotlib `.Artist` objects +have a method `.Artist.get_window_extent` that will usually return the extent of +the artist in pixels. However, some artists, in particular text, must be +rendered at least once before their extent is known. Matplotlib supplies +`.Figure.draw_without_rendering`, which should be called before calling +``get_window_extent``. + +.. _howto-figure-empty: + +Check whether a figure is empty +------------------------------- +Empty can actually mean different things. Does the figure contain any artists? +Does a figure with an empty `~.axes.Axes` still count as empty? Is the figure +empty if it was rendered pure white (there may be artists present, but they +could be outside the drawing area or transparent)? + +For the purpose here, we define empty as: "The figure does not contain any +artists except it's background patch." The exception for the background is +necessary, because by default every figure contains a `.Rectangle` as it's +background patch. This definition could be checked via:: + + def is_empty(figure): + """ + Return whether the figure contains no Artists (other than the default + background patch). + """ + contained_artists = figure.get_children() + return len(contained_artists) <= 1 + +We've decided not to include this as a figure method because this is only one +way of defining empty, and checking the above is only rarely necessary. +Usually the user or program handling the figure know if they have added +something to the figure. + +The only reliable way to check whether a figure would render empty is to +actually perform such a rendering and inspect the result. + +.. _howto-findobj: + +Find all objects in a figure of a certain type +---------------------------------------------- + +Every Matplotlib artist (see :ref:`artists_tutorial`) has a method +called :meth:`~matplotlib.artist.Artist.findobj` that can be used to +recursively search the artist for any artists it may contain that meet +some criteria (e.g., match all :class:`~matplotlib.lines.Line2D` +instances or match some arbitrary filter function). For example, the +following snippet finds every object in the figure which has a +``set_color`` property and makes the object blue:: + + def myfunc(x): + return hasattr(x, 'set_color') + + for o in fig.findobj(myfunc): + o.set_color('blue') + +You can also filter on class instances:: + + import matplotlib.text as text + for o in fig.findobj(text.Text): + o.set_fontstyle('italic') + +.. _howto-suppress_offset: + +Prevent ticklabels from having an offset +---------------------------------------- +The default formatter will use an offset to reduce +the length of the ticklabels. To turn this feature +off on a per-axis basis:: + + ax.get_xaxis().get_major_formatter().set_useOffset(False) + +set :rc:`axes.formatter.useoffset`, or use a different +formatter. See :mod:`~matplotlib.ticker` for details. + +.. _howto-transparent: + +Save transparent figures +------------------------ + +The :meth:`~matplotlib.pyplot.savefig` command has a keyword argument +*transparent* which, if 'True', will make the figure and axes +backgrounds transparent when saving, but will not affect the displayed +image on the screen. + +If you need finer grained control, e.g., you do not want full transparency +or you want to affect the screen displayed version as well, you can set +the alpha properties directly. The figure has a +:class:`~matplotlib.patches.Rectangle` instance called *patch* +and the axes has a Rectangle instance called *patch*. You can set +any property on them directly (*facecolor*, *edgecolor*, *linewidth*, +*linestyle*, *alpha*). e.g.:: + + fig = plt.figure() + fig.patch.set_alpha(0.5) + ax = fig.add_subplot(111) + ax.patch.set_alpha(0.5) + +If you need *all* the figure elements to be transparent, there is +currently no global alpha setting, but you can set the alpha channel +on individual elements, e.g.:: + + ax.plot(x, y, alpha=0.5) + ax.set_xlabel('volts', alpha=0.5) + +.. _howto-multipage: + +Save multiple plots to one pdf file +----------------------------------- + +Many image file formats can only have one image per file, but some formats +support multi-page files. Currently, Matplotlib only provides multi-page +output to pdf files, using either the pdf or pgf backends, via the +`.backend_pdf.PdfPages` and `.backend_pgf.PdfPages` classes. + +.. _howto-auto-adjust: + +Make room for tick labels +------------------------- + +By default, Matplotlib uses fixed percentage margins around subplots. This can +lead to labels overlapping or being cut off at the figure boundary. There are +multiple ways to fix this: + +- Manually adapt the subplot parameters using `.Figure.subplots_adjust` / + `.pyplot.subplots_adjust`. +- Use one of the automatic layout mechanisms: + + - constrained layout (:ref:`constrainedlayout_guide`) + - tight layout (:ref:`tight_layout_guide`) + +- Calculate good values from the size of the plot elements yourself + (:doc:`/gallery/subplots_axes_and_figures/auto_subplots_adjust`) + +.. _howto-align-label: + +Align my ylabels across multiple subplots +----------------------------------------- + +If you have multiple subplots over one another, and the y data have +different scales, you can often get ylabels that do not align +vertically across the multiple subplots, which can be unattractive. +By default, Matplotlib positions the x location of the ylabel so that +it does not overlap any of the y ticks. You can override this default +behavior by specifying the coordinates of the label. The example +below shows the default behavior in the left subplots, and the manual +setting in the right subplots. + +.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_align_ylabels_001.png + :target: ../../gallery/text_labels_and_annotations/align_ylabels.html + :align: center + :scale: 50 + +.. _howto-set-zorder: + +Control the draw order of plot elements +--------------------------------------- + +The draw order of plot elements, and thus which elements will be on top, is +determined by the `~.Artist.set_zorder` property. +See :doc:`/gallery/misc/zorder_demo` for a detailed description. + +.. _howto-axis-equal: + +Make the aspect ratio for plots equal +------------------------------------- + +The Axes property :meth:`~matplotlib.axes.Axes.set_aspect` controls the +aspect ratio of the axes. You can set it to be 'auto', 'equal', or +some ratio which controls the ratio:: + + ax = fig.add_subplot(111, aspect='equal') + +.. only:: html + + See :doc:`/gallery/subplots_axes_and_figures/axis_equal_demo` for a + complete example. + +.. _howto-twoscale: + +Draw multiple y-axis scales +--------------------------- + +A frequent request is to have two scales for the left and right +y-axis, which is possible using :func:`~matplotlib.pyplot.twinx` (more +than two scales are not currently supported, though it is on the wish +list). This works pretty well, though there are some quirks when you +are trying to interactively pan and zoom, because both scales do not get +the signals. + +The approach uses :func:`~matplotlib.pyplot.twinx` (and its sister +:func:`~matplotlib.pyplot.twiny`) to use *2 different axes*, +turning the axes rectangular frame off on the 2nd axes to keep it from +obscuring the first, and manually setting the tick locs and labels as +desired. You can use separate ``matplotlib.ticker`` formatters and +locators as desired because the two axes are independent. + +.. plot:: + + import numpy as np + import matplotlib.pyplot as plt + + fig = plt.figure() + ax1 = fig.add_subplot(111) + t = np.arange(0.01, 10.0, 0.01) + s1 = np.exp(t) + ax1.plot(t, s1, 'b-') + ax1.set_xlabel('time (s)') + ax1.set_ylabel('exp') + + ax2 = ax1.twinx() + s2 = np.sin(2*np.pi*t) + ax2.plot(t, s2, 'r.') + ax2.set_ylabel('sin') + plt.show() + + +.. only:: html + + See :doc:`/gallery/subplots_axes_and_figures/two_scales` for a + complete example. + +.. _howto-batch: + +Generate images without having a window appear +---------------------------------------------- + +Simply do not call `~matplotlib.pyplot.show`, and directly save the figure to +the desired format:: + + import matplotlib.pyplot as plt + plt.plot([1, 2, 3]) + plt.savefig('myfig.png') + +.. seealso:: + + :doc:`/gallery/user_interfaces/web_application_server_sgskip` for + information about running matplotlib inside of a web application. + +.. _how-to-threads: + +Work with threads +----------------- + +Matplotlib is not thread-safe: in fact, there are known race conditions +that affect certain artists. Hence, if you work with threads, it is your +responsibility to set up the proper locks to serialize access to Matplotlib +artists. + +You may be able to work on separate figures from separate threads. However, +you must in that case use a *non-interactive backend* (typically Agg), because +most GUI backends *require* being run from the main thread as well. diff --git a/testbed/matplotlib__matplotlib/doc/users/generate_credits.py b/testbed/matplotlib__matplotlib/doc/users/generate_credits.py new file mode 100644 index 0000000000000000000000000000000000000000..265d921a20aa0b0a4453fe7eae53ecfd9fac0f37 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/generate_credits.py @@ -0,0 +1,89 @@ +#!/usr/bin/env python +# +# This script generates credits.rst with an up-to-date list of contributors +# to the matplotlib github repository. + +from collections import Counter +import locale +import re +import subprocess + +TEMPLATE = """.. Note: This file is auto-generated using generate_credits.py + +.. _credits: + +******* +Credits +******* + + +Matplotlib was written by John D. Hunter, with contributions from an +ever-increasing number of users and developers. The current lead developer is +Thomas A. Caswell, who is assisted by many `active developers +`_. +Please also see our instructions on :doc:`/citing`. + +The following is a list of contributors extracted from the +git revision control history of the project: + +{contributors} + +Some earlier contributors not included above are (with apologies +to any we have missed): + +Charles Twardy, +Gary Ruben, +John Gill, +David Moore, +Paul Barrett, +Jared Wahlstrand, +Jim Benson, +Paul Mcguire, +Andrew Dalke, +Nadia Dencheva, +Baptiste Carvello, +Sigve Tjoraand, +Ted Drain, +James Amundson, +Daishi Harada, +Nicolas Young, +Paul Kienzle, +John Porter, +and Jonathon Taylor. + +Thanks to Tony Yu for the original logo design. + +We also thank all who have reported bugs, commented on +proposed changes, or otherwise contributed to Matplotlib's +development and usefulness. +""" + + +def check_duplicates(): + text = subprocess.check_output(['git', 'shortlog', '--summary', '--email']) + lines = text.decode('utf8').split('\n') + contributors = [line.split('\t', 1)[1].strip() for line in lines if line] + emails = [re.match('.*<(.*)>', line).group(1) for line in contributors] + email_counter = Counter(emails) + + if email_counter.most_common(1)[0][1] > 1: + print('DUPLICATE CHECK: The following email addresses are used with ' + 'more than one name.\nConsider adding them to .mailmap.\n') + for email, count in email_counter.items(): + if count > 1: + print('{}\n{}'.format( + email, '\n'.join(l for l in lines if email in l))) + + +def generate_credits(): + text = subprocess.check_output(['git', 'shortlog', '--summary']) + lines = text.decode('utf8').split('\n') + contributors = [line.split('\t', 1)[1].strip() for line in lines if line] + contributors.sort(key=locale.strxfrm) + with open('credits.rst', 'w') as f: + f.write(TEMPLATE.format(contributors=',\n'.join(contributors))) + + +if __name__ == '__main__': + check_duplicates() + generate_credits() diff --git a/testbed/matplotlib__matplotlib/doc/users/github_stats.rst b/testbed/matplotlib__matplotlib/doc/users/github_stats.rst new file mode 100644 index 0000000000000000000000000000000000000000..af899118e690dc156f9d40bd39b0453a99663c13 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/github_stats.rst @@ -0,0 +1,250 @@ +.. _github-stats: + +GitHub statistics for 3.7.2 (Jul 05, 2023) +========================================== + +GitHub statistics for 2023/03/04 (tag: v3.7.1) - 2023/07/05 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 36 issues and merged 156 pull requests. +The full list can be seen `on GitHub `__ + +The following 25 authors contributed 248 commits. + +* Adam J. Stewart +* Antony Lee +* Astra +* Daniele Nicolodi +* daniilS +* dependabot[bot] +* Elliott Sales de Andrade +* Greg Lucas +* Jody Klymak +* Kyle Sunden +* MeeseeksMachine +* Melissa Weber Mendonça +* Mubin Manasia +* NISHANT KUMAR +* Oscar Gustafsson +* Petros Tzathas +* Ruth Comer +* Scott Shambaugh +* Smeet nagda +* SnorfYang +* Stefanie Molin +* Steffen Rehberg +* Thomas A Caswell +* Tim Hoffmann +* Yi Wei + +GitHub issues and pull requests: + +Pull Requests (156): + +* :ghpull:`26260`: Backport PR #25960 on branch v3.7.x (FIX: wspace and hspace in subfigures without layout engine) +* :ghpull:`25960`: FIX: wspace and hspace in subfigures without layout engine +* :ghpull:`26238`: Backport PR #26237 on branch v3.7.x (Update FancyBboxPatch docstring) +* :ghpull:`26234`: Backport PR #26232 on branch v3.7.x (FIX: pcolor writing to read-only input mask) +* :ghpull:`26232`: FIX: pcolor writing to read-only input mask +* :ghpull:`26229`: Backport PR #26223 on branch v3.7.x (Fix: pcolormesh writing to read-only input mask) +* :ghpull:`26227`: Backport PR #26184 on branch v3.7.x (FIX: AnnotationBbox extents before draw) +* :ghpull:`26223`: Fix: pcolormesh writing to read-only input mask +* :ghpull:`26184`: FIX: AnnotationBbox extents before draw +* :ghpull:`26214`: Auto backport of pr 26186 on v3.7.x +* :ghpull:`26216`: Backport PR #26126 on branch v3.7.x (Revert "Merge pull request #24555 from parthpankajtiwary/symlog-warn") +* :ghpull:`26215`: Backport PR #25824 on branch v3.7.x (pdf: Use explicit palette when saving indexed images) +* :ghpull:`26211`: Backport PR #25704 on branch v3.7.x (FIX: don't round image sizes to pixel if meant to be unsampled) +* :ghpull:`26186`: [Doc] Improve documentation types +* :ghpull:`26177`: Backport PR #26154 on branch v3.7.x (MNT: py312 deprecates pickling objects in itertools) +* :ghpull:`26154`: MNT: py312 deprecates pickling objects in itertools +* :ghpull:`26175`: Backport PR #26165 on branch v3.7.x (Avoid Py_VerboseFlag deprecation from Python 3.12) +* :ghpull:`26165`: Avoid Py_VerboseFlag deprecation from Python 3.12 +* :ghpull:`26136`: Backport PR #26135 on branch v3.7.x (TST: xfail Tk test on Python 3.9 Azure macOS also) +* :ghpull:`26158`: Backport PR #26153 on branch v3.7.x (Restrict pyparsing version) +* :ghpull:`26153`: Restrict pyparsing version +* :ghpull:`26149`: Backport PR #26148 on branch v3.7.x (Clarify how to get data from Line3D and fix formatting issue) +* :ghpull:`26148`: Clarify how to get data from Line3D and fix formatting issue +* :ghpull:`26135`: TST: xfail Tk test on Python 3.9 Azure macOS also +* :ghpull:`26133`: Backport PR #26084 on branch v3.7.x (added note about python 3 to venv) +* :ghpull:`26126`: Revert "Merge pull request #24555 from parthpankajtiwary/symlog-warn" +* :ghpull:`26127`: Backport PR #25068 on branch v3.7.x (Fix pgf tests with TeXLive 2022) +* :ghpull:`25068`: Fix pgf tests with TeXLive 2022 +* :ghpull:`25824`: pdf: Use explicit palette when saving indexed images +* :ghpull:`26116`: Backport PR #26006 on branch v3.7.x (DOC: Use scientific-python-nightly-wheels for nightly build index) +* :ghpull:`26055`: Backport PR #26052 on branch v3.7.x (Improve Qt compatibility) +* :ghpull:`26053`: Backport PR #25858 on branch v3.7.x (Get dlerror() immediately after dlclose() fails.) +* :ghpull:`26052`: Improve Qt compatibility +* :ghpull:`25858`: Get dlerror() immediately after dlclose() fails. +* :ghpull:`26048`: Backport PR #26044 on branch v3.7.x (DOC: add steering council email to triage page + remove unactionable instructions) +* :ghpull:`26039`: Backport PR #26038 on branch v3.7.x (subsubsection titles for backend tables) +* :ghpull:`26034`: ci: Skip PySide6 6.5.1 on another environment +* :ghpull:`26019`: Backport PR #25985 on branch v3.7.x (Drop metadata table when subsetting fonts) +* :ghpull:`26009`: Backport PR #25978 on branch v3.7.x (Fix subslice optimization for long, fully nan lines.) +* :ghpull:`26021`: Backport PR #26005 on branch v3.7.x (Fix backend tests on CI) +* :ghpull:`25985`: Drop metadata table when subsetting fonts +* :ghpull:`25978`: Fix subslice optimization for long, fully nan lines. +* :ghpull:`26002`: Bump pypa/cibuildwheel from 2.12.3 to 2.13.0 +* :ghpull:`26005`: Fix backend tests on CI +* :ghpull:`26001`: Backport PR #25954 on branch v3.7.x (Add note that subfigure is still provisional to docstring) +* :ghpull:`25954`: Add note that subfigure is still provisional to docstring +* :ghpull:`25996`: Backport PR #25992 on branch v3.7.x (Document that GridSpec.get_subplot_params ignores gridspec.figure.) +* :ghpull:`25992`: Document that GridSpec.get_subplot_params ignores gridspec.figure. +* :ghpull:`25984`: Backport PR #25982 on branch v3.7.x (Doc: Updates default value for nonpositve parameter for semilogx and semilogy) +* :ghpull:`25982`: Doc: Updates default value for nonpositve parameter for semilogx and semilogy +* :ghpull:`25975`: Backport PR #25964 on branch v3.7.x (Fix get_constrained_layout_pads) +* :ghpull:`25980`: Backport PR #25977 on branch v3.7.x ([Doc]: Fix navigation sidebar for Animation examples) +* :ghpull:`25976`: Backport PR #25973 on branch v3.7.x (Add setuptools as an explicit build requirement) +* :ghpull:`25973`: Add setuptools as an explicit build requirement +* :ghpull:`25964`: Fix get_constrained_layout_pads +* :ghpull:`25972`: Backport PR #25918 on branch v3.7.x (migrate from utcfromtimestamp to fromtimestamp) +* :ghpull:`25959`: Backport PR #25955 on branch v3.7.x (Update performance note of hist() to mention stairs().) +* :ghpull:`25957`: Backport PR #25956 on branch v3.7.x (Reverse stackplot legend to match data display) +* :ghpull:`25955`: Update performance note of hist() to mention stairs(). +* :ghpull:`25918`: migrate from utcfromtimestamp to fromtimestamp +* :ghpull:`25943`: Backport PR #25902 on branch v3.7.x (Fix TransformedBbox.{,full_}contains.) +* :ghpull:`25902`: Fix TransformedBbox.{,full_}contains. +* :ghpull:`25928`: Backport PR #25920 on branch v3.7.x (Rewrite offset_copy for better error message) +* :ghpull:`25935`: Backport PR #25934 on branch v3.7.x (DOC: Fix figure annotation example) +* :ghpull:`25931`: Backport PR #25929 on branch v3.7.x (changed incubator invite channel link to community channel) +* :ghpull:`25920`: Rewrite offset_copy for better error message +* :ghpull:`25898`: Backport PR #25897 on branch v3.7.x (Fix typo of missing quote in core font docs) +* :ghpull:`25893`: Backport PR #25792 on branch v3.7.x (Fix broken symlinks for expected images on WSL) +* :ghpull:`25792`: Fix broken symlinks for expected images on WSL +* :ghpull:`25892`: Backport PR #25832 on branch v3.7.x ([BUG] Prevent under the hood downcasting of values) +* :ghpull:`25873`: DOC: clarify how colorbar steals space +* :ghpull:`25832`: [BUG] Prevent under the hood downcasting of values +* :ghpull:`25877`: Backport PR #25874 on branch v3.7.x (Tweak demo_edge_colorbar.) +* :ghpull:`25879`: Backport PR #25547 on branch v3.7.x (FIX: ``_safe_first_finite`` on all non-finite array) +* :ghpull:`25875`: Backport PR #25868 on branch v3.7.x (TST: Add test for layoutgrid memory leak) +* :ghpull:`25547`: FIX: ``_safe_first_finite`` on all non-finite array +* :ghpull:`25868`: TST: Add test for layoutgrid memory leak +* :ghpull:`25865`: Backport PR #25853 on branch v3.7.x (Fix LayoutGrid leaks) +* :ghpull:`25853`: Fix LayoutGrid leaks +* :ghpull:`25842`: Backport PR #25840 on branch v3.7.x (Emit explanatory exception when no temporary cachedir can be created.) +* :ghpull:`25840`: Emit explanatory exception when no temporary cachedir can be created. +* :ghpull:`25827`: Backport PR #25813 on branch v3.7.x ([TST] Adjust tests to be more tolerant to floating point math operations being imprecise) +* :ghpull:`25813`: [TST] Adjust tests to be more tolerant to floating point math operations being imprecise +* :ghpull:`25808`: Backport PR #25214 on branch v3.7.x (DOC: Add section on how to start contributing) +* :ghpull:`25802`: Backport PR #25797 on branch v3.7.x (Replace random values by hard-coded numbers in plot-types ...) +* :ghpull:`25778`: Backport PR #25776 on branch v3.7.x (Doc : Updates default value for nonpositve parameter) +* :ghpull:`25776`: Doc : Updates default value for nonpositve parameter +* :ghpull:`25704`: FIX: don't round image sizes to pixel if meant to be unsampled +* :ghpull:`25761`: Backport PR #25760 on branch v3.7.x (unbreak doc build with Sphinx 6.2) +* :ghpull:`25754`: Backport PR #25727 on branch v3.7.x (Doc: Replace matplotlibrc.template) +* :ghpull:`25727`: Doc: Replace matplotlibrc.template +* :ghpull:`25750`: Backport PR #25733 on branch v3.7.x (Add tests for missing text wrap cases) +* :ghpull:`25733`: Add tests for missing text wrap cases +* :ghpull:`25740`: Backport PR #25736 on branch v3.7.x (added assigning and duplicating section heading to contribute guide) +* :ghpull:`25705`: Backport PR #25681 on branch v3.7.x (BUG: Return null Bbox when there is no intersection for bar_label center.) +* :ghpull:`25700`: Backport PR #25693 on branch v3.7.x (Correctly hide download buttons using CSS) +* :ghpull:`25681`: BUG: Return null Bbox when there is no intersection for bar_label center. +* :ghpull:`25665`: Backport PR #25663 on branch v3.7.x (Don't use deprecated cm.get_cmap in qt figureoptions.) +* :ghpull:`25666`: Backport PR #25658 on branch v3.7.x (TST: Bump exclude for newly released nbconvert) +* :ghpull:`25663`: Don't use deprecated cm.get_cmap in qt figureoptions. +* :ghpull:`25658`: TST: Bump exclude for newly released nbconvert +* :ghpull:`25630`: Backport PR #25481 on branch v3.7.x (Fix 3D set_aspect error cases) +* :ghpull:`25637`: Backport PR #25636 on branch v3.7.x (Ensure ImportError's have a message) +* :ghpull:`25636`: Ensure ImportError's have a message +* :ghpull:`25629`: Backport PR #25616 on branch v3.7.x (broken_barh: fix docstring typo) +* :ghpull:`25481`: Fix 3D set_aspect error cases +* :ghpull:`25616`: broken_barh: fix docstring typo +* :ghpull:`25626`: Backport PR #25624 on branch v3.7.x (FIX: correctly unset the layout engine in Figure.tight_layout) +* :ghpull:`25620`: Backport PR #25615 on branch v3.7.x (TST: Avoid broken nbconvert) +* :ghpull:`25624`: FIX: correctly unset the layout engine in Figure.tight_layout +* :ghpull:`25621`: Backport PR #25619 on branch v3.7.x (TST: Unbreak pyside65 by installing libxcb-cursor0) +* :ghpull:`25619`: TST: Unbreak pyside65 by installing libxcb-cursor0 +* :ghpull:`25615`: TST: Avoid broken nbconvert +* :ghpull:`25589`: Backport PR #25585 on branch v3.7.x (DOC: improve interpolation kwarg doc in imshow [ci doc]) +* :ghpull:`25585`: DOC: improve interpolation kwarg doc in imshow [ci doc] +* :ghpull:`25581`: Backport PR #25580 on branch v3.7.x (Fix return type of get_plot_commands) +* :ghpull:`25580`: Fix return type of get_plot_commands +* :ghpull:`25578`: Backport PR #25574 on branch v3.7.x (DOC: Added exported colors to colors.api) +* :ghpull:`25535`: Backport PR #25518 on branch v3.7.x (DOC: Fix the bars having numeric value of cm but labeled as inches) +* :ghpull:`25530`: Backport PR #25508 on branch v3.7.x (DOC: Fix thumbnail title for sphinx gallery) +* :ghpull:`25528`: Backport PR #25519 on branch v3.7.x (Fix typo in Quick start guide tutorial) +* :ghpull:`25525`: Backport PR #25524 on branch v3.7.x (Add ipykernel as an explicit doc dependency) +* :ghpull:`25520`: Backport PR #25499: FIX: use locators in adjust_bbox +* :ghpull:`25516`: Backport PR #25494 on branch v3.7.x (Ignore errors loading artifacts from CircleCI) +* :ghpull:`25499`: FIX: use locators in adjust_bbox +* :ghpull:`25512`: Backport PR #25496 on branch v3.7.x (BUG: fix IPython's %pylab mode detection) +* :ghpull:`25496`: BUG: fix IPython's %pylab mode detection +* :ghpull:`25503`: Backport PR #25495 on branch v3.7.x (DOC: Clarify note in get_path_collection_extents) +* :ghpull:`25495`: DOC: Clarify note in get_path_collection_extents +* :ghpull:`25490`: Backport PR #25486 on branch v3.7.x (DOC: remove rcdefaults from barh example) +* :ghpull:`25480`: Backport PR #25476 on branch v3.7.x (DOC: Fix docstring formatting) +* :ghpull:`25476`: DOC: Fix docstring formatting +* :ghpull:`25474`: Backport PR #25470 on branch v3.7.x (FIX: do not cache exceptions) +* :ghpull:`25470`: FIX: do not cache exceptions +* :ghpull:`25465`: Backport PR #25442 on branch v3.7.x (Fix disconnection of callbacks when draggable artist is deparented.) +* :ghpull:`25462`: Backport PR #25461 on branch v3.7.x (Fix issue #25458 by changing "normed" to "density" in documentation) +* :ghpull:`25442`: Fix disconnection of callbacks when draggable artist is deparented. +* :ghpull:`25459`: Backport PR #25457 on branch v3.7.x (Add references to backend_{gtk3,gtk4,wx} in docs.) +* :ghpull:`25452`: Backport PR #25449 on branch v3.7.x (Bump pypa/cibuildwheel from 2.12.0 to 2.12.1) +* :ghpull:`25451`: Backport PR #25433 on branch v3.7.x (Release mouse grabs when owning Axes is removed) +* :ghpull:`25449`: Bump pypa/cibuildwheel from 2.12.0 to 2.12.1 +* :ghpull:`25433`: Release mouse grabs when owning Axes is removed +* :ghpull:`25450`: Backport PR #25394 on branch v3.7.x ([DOC] Clarify how to change side of the TickedStroke ticks) +* :ghpull:`25394`: [DOC] Clarify how to change side of the TickedStroke ticks +* :ghpull:`25447`: Backport PR #23863 on branch v3.7.x (Add tests for mpl_toolkit anchored artists) +* :ghpull:`23863`: Add tests for mpl_toolkit anchored artists +* :ghpull:`25437`: Backport PR #25435 on branch v3.7.x (TST: unbreak appveyor) +* :ghpull:`25435`: TST: unbreak appveyor +* :ghpull:`25436`: Backport PR #25428 on branch v3.7.x (Fix Legend.set_draggable() with update="bbox") +* :ghpull:`25428`: Fix Legend.set_draggable() with update="bbox" +* :ghpull:`25411`: Backport PR #25409 on branch v3.7.x (Improve/correct documentation) +* :ghpull:`25409`: Improve/correct documentation +* :ghpull:`25402`: Merge v3.7.1-doc into v3.7.x +* :ghpull:`25397`: Backport PR #25384 on branch v3.7.x (FIX: Remove some numpy function overrides from pylab) +* :ghpull:`25384`: FIX: Remove some numpy function overrides from pylab +* :ghpull:`25392`: Backport PR #25388 on branch v3.7.x (Better axis labels for examples) + +Issues (36): + +* :ghissue:`25511`: [Bug]: wspace and hspace in subfigures not working +* :ghissue:`26230`: [Bug]: pcolor writing to read-only input mask +* :ghissue:`26093`: [Bug]: pcolormesh writing to input mask +* :ghissue:`24453`: [Bug]: AnnotationBbox does not return correct window_extent before first draw +* :ghissue:`26161`: [MNT]: install on Python 3.12.0b3 +* :ghissue:`26146`: Impossible to get the z value of a line in 3D +* :ghissue:`26118`: [Bug]: symlog scale generates false warning when mouse is moved +* :ghissue:`25806`: [Bug]: pdf export for large image sizes results in wrong colors +* :ghissue:`20575`: cm.set_bad() not working for specific values of grayscale and dpi when saving as pdf +* :ghissue:`26054`: [TST] Upcoming dependency test failures +* :ghissue:`24025`: [Bug]: meta tables warn they cannot be subset +* :ghissue:`25988`: [TST] Qt/Pyside 6.5.1 dependency test failures +* :ghissue:`13109`: get_subplot_params behavior doesn't match docstring +* :ghissue:`25963`: [Bug]: fig.get_constrained_layout_pads() raises AttributeError +* :ghissue:`25912`: deal with upcoming deprecations in CPython +* :ghissue:`12057`: TransformedBbox.contains has less-than-optimal semantics +* :ghissue:`24818`: [Bug]: ax.errorbar raises for all-nan data on matplotlib 3.6.2 +* :ghissue:`18294`: UserWarning thrown when all values are "bad", but not when only some are +* :ghissue:`25819`: [Bug]: Memory leak in constrained_layout +* :ghissue:`25838`: [Doc]: running matplotlib with readonly fs +* :ghissue:`25826`: [TST] Upcoming dependency test failures +* :ghissue:`25789`: [TST] Upcoming dependency test failures +* :ghissue:`25758`: [Doc]: Default value for nonpositive parameter is not as documented +* :ghissue:`8981`: Incorrect imshow extent in PDF backend +* :ghissue:`25678`: [Doc]: matplotlibrc.template does not exist anymore +* :ghissue:`25625`: [Bug]: RuntimeError when bar_label of stacked bar chart comes to rest outside of plot's Y limit +* :ghissue:`25443`: [Bug]: 3D set_aspect equal doesn't bound data in all cases +* :ghissue:`7805`: tight layout kwargs have no effect if rc autolayout setting is set (MPL 1.5.3) +* :ghissue:`25575`: [Bug]: imshow interpolation='none' ignored when using savefig() to PDF format +* :ghissue:`23884`: [Doc]: Thumbnail title in gallery show rst formatting characters +* :ghissue:`22625`: [Bug]: Setting bbox_inches to a Bbox in fig.savefig resizes colorbar +* :ghissue:`25485`: [Bug]: Main loop integration with IPyhton broken after matplotlib version 3.6.2 +* :ghissue:`25440`: [Bug]: Attribute Error combining matplotlib 3.7.1 and mplcursor on data selection +* :ghissue:`25345`: [Bug]: using clf and pyplot.draw in range slider on_changed callback blocks input to widgets +* :ghissue:`25416`: Sphinx-Gallery 0.12 kills AppVeyor tests +* :ghissue:`25379`: [TST] Upcoming dependency test failures + + +Previous GitHub statistics +-------------------------- + +.. toctree:: + :maxdepth: 1 + :glob: + :reversed: + + prev_whats_new/github_stats_* diff --git a/testbed/matplotlib__matplotlib/doc/users/index.rst b/testbed/matplotlib__matplotlib/doc/users/index.rst new file mode 100644 index 0000000000000000000000000000000000000000..8081b353aeb5883604cae3215b64ca56cb915736 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/index.rst @@ -0,0 +1,100 @@ + +.. _users-guide-index: + +.. redirect-from:: /contents +.. redirect-from:: /users/explain + + +Using Matplotlib +================ + +.. grid:: 1 1 2 2 + + .. grid-item-card:: + :padding: 2 + + .. toctree:: + :maxdepth: 2 + :includehidden: + + explain/quick_start + + .. grid-item-card:: + :padding: 2 + + .. toctree:: + :maxdepth: 2 + :includehidden: + + explain/figure/index + + .. grid-item-card:: + :padding: 2 + + .. toctree:: + :maxdepth: 2 + :includehidden: + + explain/axes/index + + + .. grid-item-card:: + :padding: 2 + + .. toctree:: + :maxdepth: 2 + :includehidden: + + explain/artists/index + + .. grid-item-card:: + :padding: 2 + + .. toctree:: + :maxdepth: 2 + :includehidden: + + explain/customizing + + .. grid-item-card:: + :padding: 2 + + .. toctree:: + :maxdepth: 2 + :includehidden: + + explain/colors/index + + .. grid-item-card:: + :padding: 2 + + .. toctree:: + :maxdepth: 2 + :includehidden: + + explain/text/index + + .. grid-item-card:: + :padding: 2 + + .. toctree:: + :maxdepth: 2 + :includehidden: + + explain/animations/index + + .. grid-item-card:: + :padding: 2 + + .. toctree:: + :maxdepth: 2 + :includehidden: + + explain/toolkits/index + +.. toctree:: + :hidden: + + explain/index + getting_started/index + installing/index diff --git a/testbed/matplotlib__matplotlib/doc/users/installing/index.rst b/testbed/matplotlib__matplotlib/doc/users/installing/index.rst new file mode 100644 index 0000000000000000000000000000000000000000..0a95d2088ce4d24d2c8e7b25879580a975072564 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/installing/index.rst @@ -0,0 +1,328 @@ +.. redirect-from:: /users/installing + +############ +Installation +############ + +============================== +Installing an official release +============================== + +Matplotlib releases are available as wheel packages for macOS, Windows and +Linux on `PyPI `_. Install it using +``pip``: + +.. code-block:: sh + + python -m pip install -U pip + python -m pip install -U matplotlib + +If this command results in Matplotlib being compiled from source and +there's trouble with the compilation, you can add ``--prefer-binary`` to +select the newest version of Matplotlib for which there is a +precompiled wheel for your OS and Python. + +.. note:: + + The following backends work out of the box: Agg, ps, pdf, svg + + Python is typically shipped with tk bindings which are used by + TkAgg. + + For support of other GUI frameworks, LaTeX rendering, saving + animations and a larger selection of file formats, you can + install :ref:`optional_dependencies`. + +========================= +Third-party distributions +========================= + +Various third-parties provide Matplotlib for their environments. + +Conda packages +============== +Matplotlib is available both via the *anaconda main channel* + +.. code-block:: sh + + conda install matplotlib + +as well as via the *conda-forge community channel* + +.. code-block:: sh + + conda install -c conda-forge matplotlib + +Python distributions +==================== + +Matplotlib is part of major Python distributions: + +- `Anaconda `_ + +- `ActiveState ActivePython + `_ + +- `WinPython `_ + +Linux package manager +===================== + +If you are using the Python version that comes with your Linux distribution, +you can install Matplotlib via your package manager, e.g.: + +* Debian / Ubuntu: ``sudo apt-get install python3-matplotlib`` +* Fedora: ``sudo dnf install python3-matplotlib`` +* Red Hat: ``sudo yum install python3-matplotlib`` +* Arch: ``sudo pacman -S python-matplotlib`` + +.. redirect-from:: /users/installing/installing_source + +.. _install_from_source: + +========================== +Installing a nightly build +========================== + +Matplotlib makes nightly development build wheels available on the +`scientific-python-nightly-wheels Anaconda Cloud organization +`_. +These wheels can be installed with ``pip`` by specifying +scientific-python-nightly-wheels as the package index to query: + +.. code-block:: sh + + python -m pip install \ + --upgrade \ + --pre \ + --index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple \ + --extra-index-url https://pypi.org/simple \ + matplotlib + +====================== +Installing from source +====================== + +If you are interested in contributing to Matplotlib development, +running the latest source code, or just like to build everything +yourself, it is not difficult to build Matplotlib from source. + +First you need to install the :ref:`dependencies`. + +A C compiler is required. Typically, on Linux, you will need ``gcc``, which +should be installed using your distribution's package manager; on macOS, you +will need xcode_; on Windows, you will need `Visual Studio`_ 2015 or later. + +For those using Visual Studio, make sure "Desktop development with C++" is +selected, and that the latest MSVC, "C++ CMake tools for Windows," and a +Windows SDK compatible with your version of Windows are selected and installed. +They should be selected by default under the "Optional" subheading, but are +required to build matplotlib from source. + +.. _xcode: https://guide.macports.org/chunked/installing.html#installing.xcode + +.. _Visual Studio: https://visualstudio.microsoft.com/downloads/ + +The easiest way to get the latest development version to start contributing +is to go to the git `repository `_ +and run:: + + git clone https://github.com/matplotlib/matplotlib.git + +or:: + + git clone git@github.com:matplotlib/matplotlib.git + +If you're developing, it's better to do it in editable mode. The reason why +is that pytest's test discovery only works for Matplotlib +if installation is done this way. Also, editable mode allows your code changes +to be instantly propagated to your library code without reinstalling (though +you will have to restart your python process / kernel):: + + cd matplotlib + python -m pip install -e . + +If you're not developing, it can be installed from the source directory with +a simple (just replace the last step):: + + python -m pip install . + +To run the tests you will need to install some additional dependencies:: + + python -m pip install -r requirements/dev/dev-requirements.txt + +Then, if you want to update your Matplotlib at any time, just do:: + + git pull + +When you run ``git pull``, if the output shows that only Python files have +been updated, you are all set. If C files have changed, you need to run ``pip +install -e .`` again to compile them. + +There is more information on :ref:`using git ` in the developer +docs. + +.. warning:: + + The following instructions in this section are for very custom + installations of Matplotlib. Proceed with caution because these instructions + may result in your build producing unexpected behavior and/or causing + local testing to fail. + +If you would like to build from a tarball, grab the latest *tar.gz* release +file from `the PyPI files page `_. + +We provide a `mplsetup.cfg`_ file which you can use to customize the build +process. For example, which default backend to use, whether some of the +optional libraries that Matplotlib ships with are installed, and so on. This +file will be particularly useful to those packaging Matplotlib. + +.. _mplsetup.cfg: https://raw.githubusercontent.com/matplotlib/matplotlib/main/mplsetup.cfg.template + +If you are building your own Matplotlib wheels (or sdists) on Windows, note +that any DLLs that you copy into the source tree will be packaged too. + +========================== +Installing for development +========================== +See :ref:`installing_for_devs`. + +.. redirect-from:: /faq/installing_faq +.. redirect-from:: /users/faq/installing_faq + +.. _installing-faq: + +========================== +Frequently asked questions +========================== + +.. contents:: + :backlinks: none + :local: + +Report a compilation problem +============================ + +See :ref:`reporting-problems`. + +Matplotlib compiled fine, but nothing shows up when I use it +============================================================ + +The first thing to try is a :ref:`clean install ` and see if +that helps. If not, the best way to test your install is by running a script, +rather than working interactively from a python shell or an integrated +development environment such as :program:`IDLE` which add additional +complexities. Open up a UNIX shell or a DOS command prompt and run, for +example:: + + python -c "from pylab import *; set_loglevel('debug'); plot(); show()" + +This will give you additional information about which backends Matplotlib is +loading, version information, and more. At this point you might want to make +sure you understand Matplotlib's :ref:`configuration ` +process, governed by the :file:`matplotlibrc` configuration file which contains +instructions within and the concept of the Matplotlib backend. + +If you are still having trouble, see :ref:`reporting-problems`. + +.. _clean-install: + +How to completely remove Matplotlib +=================================== + +Occasionally, problems with Matplotlib can be solved with a clean +installation of the package. In order to fully remove an installed Matplotlib: + +1. Delete the caches from your :ref:`Matplotlib configuration directory + `. + +2. Delete any Matplotlib directories or eggs from your :ref:`installation + directory `. + +OSX Notes +========= + +.. _which-python-for-osx: + +Which python for OSX? +--------------------- + +Apple ships OSX with its own Python, in ``/usr/bin/python``, and its own copy +of Matplotlib. Unfortunately, the way Apple currently installs its own copies +of NumPy, Scipy and Matplotlib means that these packages are difficult to +upgrade (see `system python packages`_). For that reason we strongly suggest +that you install a fresh version of Python and use that as the basis for +installing libraries such as NumPy and Matplotlib. One convenient way to +install Matplotlib with other useful Python software is to use the Anaconda_ +Python scientific software collection, which includes Python itself and a +wide range of libraries; if you need a library that is not available from the +collection, you can install it yourself using standard methods such as *pip*. +See the Anaconda web page for installation support. + +.. _system python packages: + https://github.com/MacPython/wiki/wiki/Which-Python#system-python-and-extra-python-packages +.. _Anaconda: https://www.anaconda.com/ + +Other options for a fresh Python install are the standard installer from +`python.org `_, or installing +Python using a general OSX package management system such as `homebrew +`_ or `macports `_. Power users on +OSX will likely want one of homebrew or macports on their system to install +open source software packages, but it is perfectly possible to use these +systems with another source for your Python binary, such as Anaconda +or Python.org Python. + +.. _install_osx_binaries: + +Installing OSX binary wheels +---------------------------- + +If you are using Python from https://www.python.org, Homebrew, or Macports, +then you can use the standard pip installer to install Matplotlib binaries in +the form of wheels. + +pip is installed by default with python.org and Homebrew Python, but needs to +be manually installed on Macports with :: + + sudo port install py38-pip + +Once pip is installed, you can install Matplotlib and all its dependencies with +from the Terminal.app command line:: + + python3 -m pip install matplotlib + +You might also want to install IPython or the Jupyter notebook (``python3 -m pip +install ipython notebook``). + +Checking your installation +-------------------------- + +The new version of Matplotlib should now be on your Python "path". Check this +at the Terminal.app command line:: + + python3 -c 'import matplotlib; print(matplotlib.__version__, matplotlib.__file__)' + +You should see something like :: + + 3.6.0 /Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/matplotlib/__init__.py + +where ``3.6.0`` is the Matplotlib version you just installed, and the path +following depends on whether you are using Python.org Python, Homebrew or +Macports. If you see another version, or you get an error like :: + + Traceback (most recent call last): + File "", line 1, in + ImportError: No module named matplotlib + +then check that the Python binary is the one you expected by running :: + + which python3 + +If you get a result like ``/usr/bin/python...``, then you are getting the +Python installed with OSX, which is probably not what you want. Try closing +and restarting Terminal.app before running the check again. If that doesn't fix +the problem, depending on which Python you wanted to use, consider reinstalling +Python.org Python, or check your homebrew or macports setup. Remember that +the disk image installer only works for Python.org Python, and will not get +picked up by other Pythons. If all these fail, please :ref:`let us know +`. diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new.rst new file mode 100644 index 0000000000000000000000000000000000000000..ddd82faf6731a052e8efab3337e742c004a515da --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new.rst @@ -0,0 +1,13 @@ +.. _whats-new: + +================ +Next what's new? +================ + +.. ifconfig:: releaselevel == 'dev' + + .. toctree:: + :glob: + :maxdepth: 1 + + next_whats_new/* diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/3d_plots_shareview.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/3d_plots_shareview.rst new file mode 100644 index 0000000000000000000000000000000000000000..e71d06fd9297c3116bc66f047ba4ee3ce0969e7b --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/3d_plots_shareview.rst @@ -0,0 +1,7 @@ +3D plots can share view angles +------------------------------ + +3D plots can now share the same view angles, so that when you rotate one plot +the other plots also rotate. This can be done with the *shareview* keyword +argument when adding an axes, or by using the *ax1.shareview(ax2)* method of +existing 3D axes. diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/auto_minor_tick.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/auto_minor_tick.rst new file mode 100644 index 0000000000000000000000000000000000000000..02db8f6beb38fc6abb1ca0a8d64a43e03e51c4c0 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/auto_minor_tick.rst @@ -0,0 +1,5 @@ +rcParams for ``AutoMinorLocator`` divisions +------------------------------------------- +The rcParams :rc:`xtick.minor.ndivs` and :rc:`ytick.minor.ndivs` have been +added to enable setting the default number of divisions; if set to ``auto``, +the number of divisions will be chosen by the distance between major ticks. diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/axline_setters.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/axline_setters.rst new file mode 100644 index 0000000000000000000000000000000000000000..add52cf7c2a51cef4bd4419c7dc5c7329aad9c58 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/axline_setters.rst @@ -0,0 +1,17 @@ +Axline setters and getters +-------------------------- + +The returned object from `.axes.Axes.axline` now supports getter and setter +methods for its *xy1*, *xy2* and *slope* attributes: + +.. code-block:: python + + line1.get_xy1() + line1.get_slope() + line2.get_xy2() + +.. code-block:: python + + line1.set_xy1(.2, .3) + line1.set_slope(2.4) + line2.set_xy2(.1, .6) diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/boldsym_mathtext.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/boldsym_mathtext.rst new file mode 100644 index 0000000000000000000000000000000000000000..d58532d5661e64bd661ddf4bf86f99412f98aa97 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/boldsym_mathtext.rst @@ -0,0 +1,14 @@ +Boldsymbol mathtext command ``\boldsymbol`` +------------------------------------------- + +Supports using the ``\boldsymbol{}`` command in mathtext: + +To change symbols to bold enclose the text in a font command as +shown: + +.. code-block:: + + r'$\boldsymbol{a+2+\alpha}$' + +.. math:: + \boldsymbol{a+2+\alpha} diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/contour_clip_path.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/contour_clip_path.rst new file mode 100644 index 0000000000000000000000000000000000000000..db4039a4fd700f257febe1869c2eb8e3e6aa8709 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/contour_clip_path.rst @@ -0,0 +1,24 @@ +Clipping for contour plots +-------------------------- + +`~.Axes.contour` and `~.Axes.contourf` now accept the *clip_path* parameter. + +.. plot:: + :include-source: true + + import numpy as np + import matplotlib.pyplot as plt + import matplotlib.patches as mpatches + + x = y = np.arange(-3.0, 3.01, 0.025) + X, Y = np.meshgrid(x, y) + Z1 = np.exp(-X**2 - Y**2) + Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) + Z = (Z1 - Z2) * 2 + + fig, ax = plt.subplots() + patch = mpatches.RegularPolygon((0, 0), 5, radius=2, + transform=ax.transData) + ax.contourf(X, Y, Z, clip_path=patch) + + plt.show() diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/ecdf.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/ecdf.rst new file mode 100644 index 0000000000000000000000000000000000000000..01f639aa737b1fe808d6f49b51416b3ca7293bc0 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/ecdf.rst @@ -0,0 +1,13 @@ +``Axes.ecdf`` +~~~~~~~~~~~~~ +A new Axes method, `~.Axes.ecdf`, allows plotting empirical cumulative +distribution functions without any binning. + +.. plot:: + :include-source: + + import matplotlib.pyplot as plt + import numpy as np + + fig, ax = plt.subplots() + ax.ecdf(np.random.randn(100)) diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/get_vertices_co_vertices.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/get_vertices_co_vertices.rst new file mode 100644 index 0000000000000000000000000000000000000000..98254a82ce636fc5c6139d04905061669677aed0 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/get_vertices_co_vertices.rst @@ -0,0 +1,7 @@ +``Ellipse.get_vertices()``, ``Ellipse.get_co_vertices()`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +These methods return the coordinates of ellipse vertices of +major and minor axis. Additionally, an example gallery demo is added which +shows how to add an arrow to an ellipse showing a clockwise or counter-clockwise +rotation of the ellipse. To place the arrow exactly on the ellipse, +the coordinates of the vertices are used. diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/label_outer.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/label_outer.rst new file mode 100644 index 0000000000000000000000000000000000000000..dd48eb002bd1bb74dd651b63159e58c2b00ae7ec --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/label_outer.rst @@ -0,0 +1,26 @@ +Remove inner ticks in ``label_outer()`` +--------------------------------------- +Up to now, ``label_outer()`` has only removed the ticklabels. The ticks lines +were left visible. This is now configurable through a new parameter +``label_outer(remove_inner_ticks=True)``. + + +.. plot:: + :include-source: true + + import numpy as np + import matplotlib.pyplot as plt + + x = np.linspace(0, 2 * np.pi, 100) + + fig, axs = plt.subplots(2, 2, sharex=True, sharey=True, + gridspec_kw=dict(hspace=0, wspace=0)) + + axs[0, 0].plot(x, np.sin(x)) + axs[0, 1].plot(x, np.cos(x)) + axs[1, 0].plot(x, -np.cos(x)) + axs[1, 1].plot(x, -np.sin(x)) + + for ax in axs.flat: + ax.grid(color='0.9') + ax.label_outer(remove_inner_ticks=True) diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/legend_shadow_colors.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/legend_shadow_colors.rst new file mode 100644 index 0000000000000000000000000000000000000000..6d501dcf07fe2dc155166890af30a67865ef590a --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/legend_shadow_colors.rst @@ -0,0 +1,17 @@ +Configurable legend shadows +--------------------------- +The *shadow* parameter of legends now accepts dicts in addition to booleans. +Dictionaries can contain any keywords for `.patches.Patch`. +For example, this allows one to set the color and/or the transparency of a legend shadow: + +.. code-block:: python + + ax.legend(loc='center left', shadow={'color': 'red', 'alpha': 0.5}) + +and to control the shadow location: + +.. code-block:: python + + ax.legend(loc='center left', shadow={"ox":20, "oy":-20}) + +Configuration is currently not supported via :rc:`legend.shadow`. diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/macosx_windows_tabs.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/macosx_windows_tabs.rst new file mode 100644 index 0000000000000000000000000000000000000000..85fd76b6cb6d61f721d41758a0003b8f091bc1fb --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/macosx_windows_tabs.rst @@ -0,0 +1,7 @@ +macosx: New figures can be opened in either windows or tabs +----------------------------------------------------------- + +There is a new :rc:`macosx.window_mode`` rcParam to control how +new figures are opened with the macosx backend. The default is +**system** which uses the system settings, or one can specify either +**tab** or **window** to explicitly choose the mode used to open new figures. diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/mathtext_delimiters.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/mathtext_delimiters.rst new file mode 100644 index 0000000000000000000000000000000000000000..7c1c29f4b9ec409f0e568030aa8c7950e88341ed --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/mathtext_delimiters.rst @@ -0,0 +1,14 @@ +``mathtext`` has more sizable delimiters +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The ``\lgroup`` and ``\rgroup`` sizable delimiters have been added. + +The following delimiter names have been supported earlier, but can now be sized with +``\left`` and ``\right``: + +* ``\lbrace``, ``\rbrace``, ``\leftbrace``, and ``\rightbrace`` +* ``\lbrack`` and ``\rbrack`` +* ``\leftparen`` and ``\rightparen`` + +There are really no obvious advantages in using these. +Instead, they are are added for completeness. diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/mathtext_documentation.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/mathtext_documentation.rst new file mode 100644 index 0000000000000000000000000000000000000000..2b7cd51b702cef1f0bcbe781590875b60451e750 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/mathtext_documentation.rst @@ -0,0 +1,5 @@ +``mathtext`` documentation improvements +--------------------------------------- + +The documentation is updated to take information directly from the parser. This +means that (almost) all supported symbols, operators etc are shown at :ref:`mathtext`. diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/mathtext_features.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/mathtext_features.rst new file mode 100644 index 0000000000000000000000000000000000000000..f62a8d453fee8679a07b71efa474fbc73627331c --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/mathtext_features.rst @@ -0,0 +1,32 @@ +``mathtext`` now supports ``\substack`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +``\substack`` can be used to create multi-line subscripts or superscripts within an equation. + +To use it to enclose the math in a substack command as shown: + +.. code-block:: + + r'$\sum_{\substack{1\leq i\leq 3\\ 1\leq j\leq 5}}$' + +.. mathmpl:: + + \sum_{\substack{1\leq i\leq 3\\ 1\leq j\leq 5}} + + +``mathtext`` now supports ``\middle`` delimiter +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The ``\middle`` delimiter has been added, and can now be used with the +``\left`` and ``\right`` delimiters: + +To use the middle command enclose it in between the ``\left`` and +``\right`` delimiter command as shown: + +.. code-block:: + + r'$\left( \frac{a}{b} \middle| q \right)$' + +.. mathmpl:: + + \left( \frac{a}{b} \middle| q \right) diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/mathtext_relation_operators.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/mathtext_relation_operators.rst new file mode 100644 index 0000000000000000000000000000000000000000..1f9773a845df8498b09c7b6d11df0ffed0e9f42b --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/mathtext_relation_operators.rst @@ -0,0 +1,7 @@ +``mathtext`` operators +---------------------- + +There has been a number of operators added and corrected when a Unicode font is used. +In addition, correct spacing has been added to a number of the previous operators. +Especially, the characters used for ``\gnapprox``, ``\lnapprox``, ``\leftangle``, and +``\rightangle`` have been corrected. diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/mathtext_spacing.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/mathtext_spacing.rst new file mode 100644 index 0000000000000000000000000000000000000000..42da810c3a39cf6471e73772a36627ccb72b384e --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/mathtext_spacing.rst @@ -0,0 +1,5 @@ +``mathtext`` spacing corrections +-------------------------------- + +As consequence of the updated documentation, the spacing on a number of relational and +operator symbols were classified like that and therefore will be spaced properly. diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/mathtext_supports_text.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/mathtext_supports_text.rst new file mode 100644 index 0000000000000000000000000000000000000000..477f10b5ebeb4a297cbffc38ab0f4cecc810c6ad --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/mathtext_supports_text.rst @@ -0,0 +1,13 @@ +``mathtext`` now supports ``\text`` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +``\text`` can be used to obtain upright text within an equation and to get a plain dash +(-). + +.. plot:: + :include-source: true + :alt: Illustration of the newly added \text command, showing that it renders as normal text, including spaces, despite being part of an equation. Also show that a dash is not rendered as a minus when part of a \text command. + + import matplotlib.pyplot as plt + plt.text(0.1, 0.5, r"$a = \sin(\phi) \text{ such that } \phi = \frac{x}{y}$") + plt.text(0.1, 0.3, r"$\text{dashes (-) are retained}$") diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/mpl_toolkit_pep420.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/mpl_toolkit_pep420.rst new file mode 100644 index 0000000000000000000000000000000000000000..3d7daf48c1d737619ff5c1459b4f3c9031b9ca9d --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/mpl_toolkit_pep420.rst @@ -0,0 +1,6 @@ +``matplotlib.mpl_toolkits`` is now an implicit namespace package +---------------------------------------------------------------- + +Following the deprecation of ``pkg_resources.declare_namespace`` in ``setuptools`` 67.3.0, +``matplotlib.mpl_toolkits`` is now implemented as an implicit namespace, following +`PEP 420 `_. diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/multiplelocator_offset.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/multiplelocator_offset.rst new file mode 100644 index 0000000000000000000000000000000000000000..863fdb3c4d7ec93a3cc340f757a772159db4de36 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/multiplelocator_offset.rst @@ -0,0 +1,17 @@ +``offset`` parameter for MultipleLocator +---------------------------------------- + +An *offset* may now be specified to shift all the ticks by the given value. + +.. plot:: + :include-source: true + + import matplotlib.pyplot as plt + import matplotlib.ticker as mticker + + _, ax = plt.subplots() + ax.plot(range(10)) + locator = mticker.MultipleLocator(base=3, offset=0.3) + ax.xaxis.set_major_locator(locator) + + plt.show() diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/new_color_spec_tuple.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/new_color_spec_tuple.rst new file mode 100644 index 0000000000000000000000000000000000000000..9f8d0ecabc3e21de0fd3f90d5ef91f4f55bc9bdb --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/new_color_spec_tuple.rst @@ -0,0 +1,21 @@ +Add a new valid color format ``(matplotlib_color, alpha)`` +---------------------------------------------------------- + + +.. plot:: + :include-source: true + + import matplotlib.pyplot as plt + from matplotlib.patches import Rectangle + + fig, ax = plt.subplots() + + rectangle = Rectangle((.2, .2), .6, .6, + facecolor=('blue', 0.2), + edgecolor=('green', 0.5)) + ax.add_patch(rectangle) + + +Users can define a color using the new color specification, *(matplotlib_color, alpha)*. +Note that an explicit alpha keyword argument will override an alpha value from +*(matplotlib_color, alpha)*. diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/pie_shadow_control.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/pie_shadow_control.rst new file mode 100644 index 0000000000000000000000000000000000000000..a112928e5b6f0606a699556a894801366e4cc1c5 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/pie_shadow_control.rst @@ -0,0 +1,5 @@ +The pie chart shadow can be controlled +-------------------------------------- + +The *shadow* argument to `~.Axes.pie` can now be a dict, allowing more control +of the `.Shadow`-patch used. diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/plot_directive_srcset.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/plot_directive_srcset.rst new file mode 100644 index 0000000000000000000000000000000000000000..d9eaebd14a3c127309bc91b64eafe616a94ed844 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/plot_directive_srcset.rst @@ -0,0 +1,19 @@ +Plot Directive now can make responsive images with "srcset" +----------------------------------------------------------- + +The plot sphinx directive (``matplotlib.sphinxext.plot_directive``, invoked in +rst as ``.. plot::``) can be configured to automatically make higher res +figures and add these to the the built html docs. In ``conf.py``:: + + extensions = [ + ... + 'matplotlib.sphinxext.plot_directive', + 'matplotlib.sphinxext.figmpl_directive', + ...] + + plot_srcset = ['2x'] + +will make png files with double the resolution for hiDPI displays. Resulting +html files will have image entries like:: + + diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/polyquadmesh.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/polyquadmesh.rst new file mode 100644 index 0000000000000000000000000000000000000000..de72ba0980ca213e38f7748a7393c549a40176c5 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/polyquadmesh.rst @@ -0,0 +1,25 @@ +``PolyQuadMesh`` is a new class for drawing quadrilateral meshes +---------------------------------------------------------------- + +`~.Axes.pcolor` previously returned a flattened `.PolyCollection` with only +the valid polygons (unmasked) contained within it. Now, we return a `.PolyQuadMesh`, +which is a mixin incorporating the usefulness of 2D array and mesh coordinates +handling, but still inheriting the draw methods of `.PolyCollection`, which enables +more control over the rendering properties than a normal `.QuadMesh` that is +returned from `~.Axes.pcolormesh`. The new class subclasses `.PolyCollection` and thus +should still behave the same as before. This new class keeps track of the mask for +the user and updates the Polygons that are sent to the renderer appropriately. + +.. plot:: + + arr = np.arange(12).reshape((3, 4)) + + fig, ax = plt.subplots() + pc = ax.pcolor(arr) + + # Mask one element and show that the hatch is also not drawn + # over that region + pc.set_array(np.ma.masked_equal(arr, 5)) + pc.set_hatch('//') + + plt.show() diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/rcParams[legend.loc]_supports_float_tuple.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/rcParams[legend.loc]_supports_float_tuple.rst new file mode 100644 index 0000000000000000000000000000000000000000..a83b91b52e34f4c2cfb7aad20e9754769fc25fe4 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/rcParams[legend.loc]_supports_float_tuple.rst @@ -0,0 +1,5 @@ +``rcParams['legend.loc']`` now accepts float-tuple inputs +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The :rc:`legend.loc` rcParams now accepts float-tuple inputs, same as the *loc* keyword argument to `.Legend`. +This allows users to set the location of the legend in a more flexible and consistent way. diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/savefig_bbox_layout.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/savefig_bbox_layout.rst new file mode 100644 index 0000000000000000000000000000000000000000..bf2d2bb72f90166a2d74ed61dbaff1e4ede15bcc --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/savefig_bbox_layout.rst @@ -0,0 +1,10 @@ +pad_inches="layout" for savefig +------------------------------- + +When using constrained or compressed layout, + +.. code-block:: python + + savefig(filename, bbox_inches="tight", pad_inches="layout") + +will now use the padding sizes defined on the layout engine. diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/set_loc.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/set_loc.rst new file mode 100644 index 0000000000000000000000000000000000000000..2a8722a18da0bf9e7a211cd1ba33521b164b9b78 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/set_loc.rst @@ -0,0 +1,23 @@ +Add a public method to modify the location of ``Legend`` +-------------------------------------------------------- + +`~matplotlib.legend.Legend` locations now can be tweaked after they've been defined. + +.. plot:: + :include-source: true + + from matplotlib import pyplot as plt + + fig = plt.figure() + ax = fig.add_subplot(1, 1, 1) + + x = list(range(-100, 101)) + y = [i**2 for i in x] + + ax.plot(x, y, label="f(x)") + ax.legend() + ax.get_legend().set_loc("right") + # Or + # ax.get_legend().set(loc="right") + + plt.show() diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/shadow_shade.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/shadow_shade.rst new file mode 100644 index 0000000000000000000000000000000000000000..cafa2f4d346fa39af94940bc7edf4ee8ace5d528 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/shadow_shade.rst @@ -0,0 +1,6 @@ +Shadow shade can be controlled +------------------------------ + +The `.Shadow` patch now has a *shade* argument to control the shadow darkness. +If 1, the shadow is black, if 0, the shadow has the same color as the patch that +is shadowed. The default value, which earlier was fixed, is 0.7. diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/spinesproxyset.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/spinesproxyset.rst new file mode 100644 index 0000000000000000000000000000000000000000..cfd8d2908ec707de94c91d659573d22c788e58cd --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/spinesproxyset.rst @@ -0,0 +1,3 @@ +``SpinesProxy`` now supports calling the ``set()`` method +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +One can now call e.g. ``ax.spines[:].set(visible=False)``. diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/tick_labelfont_param.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/tick_labelfont_param.rst new file mode 100644 index 0000000000000000000000000000000000000000..66dd25a5006f86d4bba9bdef17b7ea729a645f79 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/tick_labelfont_param.rst @@ -0,0 +1,8 @@ +Allow setting the tick label fonts with a keyword argument +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +``Axes.tick_params`` now accepts a *labelfontfamily* keyword that changes the tick +label font separately from the rest of the text objects: + +.. code-block:: python + + Axis.tick_params(labelfontfamily='monospace') diff --git a/testbed/matplotlib__matplotlib/doc/users/next_whats_new/updated_mathtext.rst b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/updated_mathtext.rst new file mode 100644 index 0000000000000000000000000000000000000000..3658b8db6be19c731e38e52b02ca6b4d9901a709 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/next_whats_new/updated_mathtext.rst @@ -0,0 +1,14 @@ +Bold-italic mathtext command ``\mathbfit`` +----------------------------------------------------- + +Supports use of bold-italic font style in mathtext using the ``\mathbfit{}`` command: + +To change font to bold and italic enclose the text in a font command as +shown: + +.. code-block:: + + r'$\mathbfit{\eta \leq C(\delta(\eta))}$ + +.. math:: + \mathbfit{\eta \leq C(\delta(\eta))} diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/changelog.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/changelog.rst new file mode 100644 index 0000000000000000000000000000000000000000..8f505e4fdd37c40b9417de994656f7977634184d --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/changelog.rst @@ -0,0 +1,6403 @@ +.. _old_changelog: + +List of changes to Matplotlib prior to 2015 +=========================================== + +This is a list of the changes made to Matplotlib from 2003 to 2015. For more +recent changes, please refer to the :doc:`/users/release_notes`. + +2015-11-16 + Levels passed to contour(f) and tricontour(f) must be in increasing order. + +2015-10-21 + Added TextBox widget + +2015-10-21 + Added get_ticks_direction() + +2015-02-27 + Added the rcParam 'image.composite_image' to permit users to decide whether + they want the vector graphics backends to combine all images within a set + of axes into a single composite image. (If images do not get combined, + users can open vector graphics files in Adobe Illustrator or Inkscape and + edit each image individually.) + +2015-02-19 + Rewrite of C++ code that calculates contours to add support for corner + masking. This is controlled by the 'corner_mask' keyword in plotting + commands 'contour' and 'contourf'. - IMT + +2015-01-23 + Text bounding boxes are now computed with advance width rather than ink + area. This may result in slightly different placement of text. + +2014-10-27 + Allowed selection of the backend using the :envvar:`MPLBACKEND` environment + variable. Added documentation on backend selection methods. + +2014-09-27 + Overhauled `.colors.LightSource`. Added `.LightSource.hillshade` to allow + the independent generation of illumination maps. Added new types of + blending for creating more visually appealing shaded relief plots (e.g. + ``blend_mode="overlay"``, etc, in addition to the legacy "hsv" mode). + +2014-06-10 + Added Colorbar.remove() + +2014-06-07 + Fixed bug so radial plots can be saved as ps in py3k. + +2014-06-01 + Changed the fmt kwarg of errorbar to support the mpl convention that + "none" means "don't draw it", and to default to the empty string, so that + plotting of data points is done with the plot() function defaults. + Deprecated use of the None object in place "none". + +2014-05-22 + Allow the linscale keyword parameter of symlog scale to be smaller than + one. + +2014-05-20 + Added logic in FontManager to invalidate font-cache if font-family rcparams + have changed. + +2014-05-16 + Fixed the positioning of multi-line text in the PGF backend. + +2014-05-14 + Added Axes.add_image() as the standard way to add AxesImage instances to + Axes. This improves the consistency with add_artist(), add_collection(), + add_container(), add_line(), add_patch(), and add_table(). + +2014-05-02 + Added colorblind-friendly colormap, named 'Wistia'. + +2014-04-27 + Improved input clean up in Axes.{h|v}lines + Coerce input into a 1D ndarrays (after dealing with units). + +2014-04-27 + removed un-needed cast to float in stem + +2014-04-23 + Updated references to "ipython -pylab" The preferred method for invoking + pylab is now using the "%pylab" magic. + -Chris G. + +2014-04-22 + Added (re-)generate a simple automatic legend to "Figure Options" dialog of + the Qt4Agg backend. + +2014-04-22 + Added an example showing the difference between interpolation = 'none' and + interpolation = 'nearest' in `~.Axes.imshow` when saving vector graphics + files. + +2014-04-22 + Added violin plotting functions. See `.Axes.violinplot`, `.Axes.violin`, + `.cbook.violin_stats` and `.mlab.GaussianKDE` for details. + +2014-04-10 + Fixed the triangular marker rendering error. The "Up" triangle was rendered + instead of "Right" triangle and vice-versa. + +2014-04-08 + Fixed a bug in parasite_axes.py by making a list out of a generator at line + 263. + +2014-04-02 + Added ``clipon=False`` to patch creation of wedges and shadows in + `~.Axes.pie`. + +2014-02-25 + In backend_qt4agg changed from using update -> repaint under windows. See + comment in source near ``self._priv_update`` for longer explanation. + +2014-03-27 + Added tests for pie ccw parameter. Removed pdf and svg images from tests + for pie linewidth parameter. + +2014-03-24 + Changed the behaviour of axes to not ignore leading or trailing patches of + height 0 (or width 0) while calculating the x and y axis limits. Patches + having both height == 0 and width == 0 are ignored. + +2014-03-24 + Added bool kwarg (manage_xticks) to boxplot to enable/disable the + management of the xlimits and ticks when making a boxplot. Default in True + which maintains current behavior by default. + +2014-03-23 + Fixed a bug in projections/polar.py by making sure that the theta value + being calculated when given the mouse coordinates stays within the range of + 0 and 2 * pi. + +2014-03-22 + Added the keyword arguments wedgeprops and textprops to pie. Users can + control the wedge and text properties of the pie in more detail, if they + choose. + +2014-03-17 + Bug was fixed in append_axes from the AxesDivider class would not append + axes in the right location with respect to the reference locator axes + +2014-03-13 + Add parameter 'clockwise' to function pie, True by default. + +2014-02-28 + Added 'origin' kwarg to `~.Axes.spy` + +2014-02-27 + Implemented separate horizontal/vertical axes padding to the ImageGrid in + the AxesGrid toolkit + +2014-02-27 + Allowed markevery property of matplotlib.lines.Line2D to be, an int numpy + fancy index, slice object, or float. The float behaviour turns on markers + at approximately equal display-coordinate-distances along the line. + +2014-02-25 + In backend_qt4agg changed from using update -> repaint under windows. See + comment in source near ``self._priv_update`` for longer explanation. + +2014-01-02 + `~.Axes.triplot` now returns the artist it adds and support of line and + marker kwargs has been improved. GBY + +2013-12-30 + Made streamplot grid size consistent for different types of density + argument. A 30x30 grid is now used for both density=1 and density=(1, 1). + +2013-12-03 + Added a pure boxplot-drawing method that allow a more complete + customization of boxplots. It takes a list of dicts contains stats. Also + created a function (`.cbook.boxplot_stats`) that generates the stats + needed. + +2013-11-28 + Added qhull extension module to perform Delaunay triangulation more + robustly than before. It is used by tri.Triangulation (and hence all + pyplot.tri* methods) and mlab.griddata. Deprecated matplotlib.delaunay + module. - IMT + +2013-11-05 + Add power-law normalization method. This is useful for, e.g., showing small + populations in a "hist2d" histogram. + +2013-10-27 + Added get_rlabel_position and set_rlabel_position methods to PolarAxes to + control angular position of radial tick labels. + +2013-10-06 + Add stride-based functions to mlab for easy creation of 2D arrays with less + memory. + +2013-10-06 + Improve window and detrend functions in mlab, particular support for 2D + arrays. + +2013-10-06 + Improve performance of all spectrum-related mlab functions and plots. + +2013-10-06 + Added support for magnitude, phase, and angle spectrums to axes.specgram, + and support for magnitude, phase, angle, and complex spectrums to + mlab-specgram. + +2013-10-06 + Added magnitude_spectrum, angle_spectrum, and phase_spectrum plots, as well + as magnitude_spectrum, angle_spectrum, phase_spectrum, and complex_spectrum + functions to mlab + +2013-07-12 + Added support for datetime axes to 2d plots. Axis values are passed through + Axes.convert_xunits/Axes.convert_yunits before being used by + contour/contourf, pcolormesh and pcolor. + +2013-07-12 + Allowed matplotlib.dates.date2num, matplotlib.dates.num2date, and + matplotlib.dates.datestr2num to accept n-d inputs. Also factored in support + for n-d arrays to matplotlib.dates.DateConverter and + matplotlib.units.Registry. + +2013-06-26 + Refactored the axes module: the axes module is now a folder, containing the + following submodule: + + - _subplots.py, containing all the subplots helper methods + - _base.py, containing several private methods and a new _AxesBase class. + This _AxesBase class contains all the methods that are not directly + linked to plots of the "old" Axes + - _axes.py contains the Axes class. This class now inherits from _AxesBase: + it contains all "plotting" methods and labelling methods. + + This refactoring should not affect the API. Only private methods are not + importable from the axes module anymore. + +2013-05-18 + Added support for arbitrary rasterization resolutions to the SVG backend. + Previously the resolution was hard coded to 72 dpi. Now the backend class + takes a image_dpi argument for its constructor, adjusts the image bounding + box accordingly and forwards a magnification factor to the image renderer. + The code and results now resemble those of the PDF backend. + - MW + +2013-05-08 + Changed behavior of hist when given stacked=True and normed=True. + Histograms are now stacked first, then the sum is normalized. Previously, + each histogram was normalized, then they were stacked. + +2013-04-25 + Changed all instances of:: + + from matplotlib import MatplotlibDeprecationWarning as mplDeprecation + + to:: + + from cbook import mplDeprecation + + and removed the import into the matplotlib namespace in __init__.py + - Thomas Caswell + +2013-04-15 + Added 'axes.xmargin' and 'axes.ymargin' to rpParams to set default margins + on auto-scaling. - TAC + +2013-04-16 + Added patheffect support for Line2D objects. -JJL + +2013-03-31 + Added support for arbitrary unstructured user-specified triangulations to + Axes3D.tricontour[f] - Damon McDougall + +2013-03-19 + Added support for passing *linestyle* kwarg to `~.Axes.step` so all + `~.Axes.plot` kwargs are passed to the underlying `~.Axes.plot` call. -TAC + +2013-02-25 + Added classes CubicTriInterpolator, UniformTriRefiner, TriAnalyzer to + matplotlib.tri module. - GBy + +2013-01-23 + Add 'savefig.directory' to rcParams to remember and fill in the last + directory saved to for figure save dialogs - Martin Spacek + +2013-01-13 + Add eventplot method to axes and pyplot and EventCollection class to + collections. + +2013-01-08 + Added two extra titles to axes which are flush with the left and right + edges of the plot respectively. Andrew Dawson + +2013-01-07 + Add framealpha keyword argument to legend - PO + +2013-01-16 + Till Stensitzki added a baseline feature to stackplot + +2012-12-22 + Added classes for interpolation within triangular grids + (LinearTriInterpolator) and to find the triangles in which points lie + (TrapezoidMapTriFinder) to matplotlib.tri module. - IMT + +2012-12-05 + Added MatplotlibDeprecationWarning class for signaling deprecation. + Matplotlib developers can use this class as follows:: + + from matplotlib import MatplotlibDeprecationWarning as mplDeprecation + + In light of the fact that Python builtin DeprecationWarnings are ignored by + default as of Python 2.7, this class was put in to allow for the signaling + of deprecation, but via UserWarnings which are not ignored by default. - PI + +2012-11-27 + Added the *mtext* parameter for supplying matplotlib.text.Text instances to + RendererBase.draw_tex and RendererBase.draw_text. This allows backends to + utilize additional text attributes, like the alignment of text elements. - + pwuertz + +2012-11-26 + deprecate matplotlib/mpl.py, which was used only in pylab.py and is now + replaced by the more suitable ``import matplotlib as mpl``. - PI + +2012-11-25 + Make rc_context available via pyplot interface - PI + +2012-11-16 + plt.set_cmap no longer throws errors if there is not already an active + colorable artist, such as an image, and just sets up the colormap to use + from that point forward. - PI + +2012-11-16 + Added the function _get_rbga_face, which is identical to _get_rbg_face + except it return a (r,g,b,a) tuble, to line2D. Modified Line2D.draw to use + _get_rbga_face to get the markerface color so that any alpha set by + markerfacecolor will respected. - Thomas Caswell + +2012-11-13 + Add a symmetric log normalization class to colors.py. Also added some + tests for the normalization class. Till Stensitzki + +2012-11-12 + Make axes.stem take at least one argument. Uses a default range(n) when + the first arg not provided. Damon McDougall + +2012-11-09 + Make plt.subplot() without arguments act as subplot(111) - PI + +2012-11-08 + Replaced plt.figure and plt.subplot calls by the newer, more convenient + single call to plt.subplots() in the documentation examples - PI + +2012-10-05 + Add support for saving animations as animated GIFs. - JVDP + +2012-08-11 + Fix path-closing bug in patches.Polygon, so that regardless of whether the + path is the initial one or was subsequently set by set_xy(), get_xy() will + return a closed path if and only if get_closed() is True. Thanks to Jacob + Vanderplas. - EF + +2012-08-05 + When a norm is passed to contourf, either or both of the vmin, vmax + attributes of that norm are now respected. Formerly they were respected + only if both were specified. In addition, vmin and/or vmax can now be + passed to contourf directly as kwargs. - EF + +2012-07-24 + Contourf handles the extend kwarg by mapping the extended ranges outside + the normed 0-1 range so that they are handled by colormap colors determined + by the set_under and set_over methods. Previously the extended ranges were + mapped to 0 or 1 so that the "under" and "over" colormap colors were + ignored. This change also increases slightly the color contrast for a given + set of contour levels. - EF + +2012-06-24 + Make use of mathtext in tick labels configurable - DSD + +2012-06-05 + Images loaded through PIL are now ordered correctly - CG + +2012-06-02 + Add new Axes method and pyplot function, hist2d. - PO + +2012-05-31 + Remove support for 'cairo.' style of backend specification. + Deprecate 'cairo.format' and 'savefig.extension' rcParams and replace with + 'savefig.format'. - Martin Spacek + +2012-05-29 + pcolormesh now obeys the passed in "edgecolor" kwarg. To support this, the + "shading" argument to pcolormesh now only takes "flat" or "gouraud". To + achieve the old "faceted" behavior, pass "edgecolors='k'". - MGD + +2012-05-22 + Added radius kwarg to pie charts. - HH + +2012-05-22 + Collections now have a setting "offset_position" to select whether the + offsets are given in "screen" coordinates (default, following the old + behavior) or "data" coordinates. This is currently used internally to + improve the performance of hexbin. + + As a result, the "draw_path_collection" backend methods have grown a new + argument "offset_position". - MGD + +2012-05-04 + Add a new argument to pie charts - startingangle - that allows one to + specify the angle offset for the first wedge of the chart. - EP + +2012-05-03 + symlog scale now obeys the logarithmic base. Previously, it was completely + ignored and always treated as base e. - MGD + +2012-05-03 + Allow linscalex/y keyword to symlog scale that allows the size of the + linear portion relative to the logarithmic portion to be adjusted. - MGD + +2012-04-14 + Added new plot style: stackplot. This new feature supports stacked area + plots. - Damon McDougall + +2012-04-06 + When path clipping changes a LINETO to a MOVETO, it also changes any + CLOSEPOLY command to a LINETO to the initial point. This fixes a problem + with pdf and svg where the CLOSEPOLY would then draw a line to the latest + MOVETO position instead of the intended initial position. - JKS + +2012-03-27 + Add support to ImageGrid for placing colorbars only at one edge of each + column/row. - RMM + +2012-03-07 + Refactor movie writing into useful classes that make use of pipes to write + image data to ffmpeg or mencoder. Also improve settings for these and the + ability to pass custom options. - RMM + +2012-02-29 + errorevery keyword added to errorbar to enable errorbar subsampling. fixes + issue #600. + +2012-02-28 + Added plot_trisurf to the mplot3d toolkit. This supports plotting three + dimensional surfaces on an irregular grid. - Damon McDougall + +2012-01-23 + The radius labels in polar plots no longer use a fixed padding, but use a + different alignment depending on the quadrant they are in. This fixes + numerical problems when (rmax - rmin) gets too small. - MGD + +2012-01-08 + Add axes.streamplot to plot streamlines of a velocity field. Adapted from + Tom Flannaghan streamplot implementation. -TSY + +2011-12-29 + ps and pdf markers are now stroked only if the line width is nonzero for + consistency with agg, fixes issue #621. - JKS + +2011-12-27 + Work around an EINTR bug in some versions of subprocess. - JKS + +2011-10-25 + added support for \operatorname to mathtext, including the ability to + insert spaces, such as $\operatorname{arg\,max}$ - PI + +2011-08-18 + Change api of Axes.get_tightbbox and add an optional keyword parameter + *call_axes_locator*. - JJL + +2011-07-29 + A new rcParam "axes.formatter.use_locale" was added, that, when True, will + use the current locale to format tick labels. This means that, for + example, in the fr_FR locale, ',' will be used as a decimal separator. - + MGD + +2011-07-15 + The set of markers available in the plot() and scatter() commands has been + unified. In general, this gives more options to both than were previously + available, however, there is one backward-incompatible change to the + markers in scatter: + + "d" used to mean "diamond", it now means "narrow diamond". "D" can be + used for a "diamond". + + -MGD + +2011-07-13 + Fix numerical problems in symlog scale, particularly when linthresh <= 1.0. + Symlog plots may look different if one was depending on the old broken + behavior - MGD + +2011-07-10 + Fixed argument handling error in tripcolor/triplot/tricontour, issue #203. + - IMT + +2011-07-08 + Many functions added to mplot3d.axes3d to bring Axes3D objects more + feature-parity with regular Axes objects. Significant revisions to the + documentation as well. - BVR + +2011-07-07 + Added compatibility with IPython strategy for picking a version of Qt4 + support, and an rcParam for making the choice explicitly: backend.qt4. - EF + +2011-07-07 + Modified AutoMinorLocator to improve automatic choice of the number of + minor intervals per major interval, and to allow one to specify this number + via a kwarg. - EF + +2011-06-28 + 3D versions of scatter, plot, plot_wireframe, plot_surface, bar3d, and some + other functions now support empty inputs. - BVR + +2011-06-22 + Add set_theta_offset, set_theta_direction and set_theta_zero_location to + polar axes to control the location of 0 and directionality of theta. - MGD + +2011-06-22 + Add axes.labelweight parameter to set font weight to axis labels - MGD. + +2011-06-20 + Add pause function to pyplot. - EF + +2011-06-16 + Added *bottom* keyword parameter for the stem command. Also, implemented a + legend handler for the stem plot. - JJL + +2011-06-16 + Added legend.frameon rcParams. - Mike Kaufman + +2011-05-31 + Made backend_qt4 compatible with PySide . - Gerald Storer + +2011-04-17 + Disable keyboard auto-repeat in qt4 backend by ignoring key events + resulting from auto-repeat. This makes constrained zoom/pan work. - EF + +2011-04-14 + interpolation="nearest" always interpolate images. A new mode "none" is + introduced for no interpolation - JJL + +2011-04-03 + Fixed broken pick interface to AsteriskCollection objects used by scatter. + - EF + +2011-04-01 + The plot directive Sphinx extension now supports all of the features in the + Numpy fork of that extension. These include doctest formatting, an + 'include-source' option, and a number of new configuration options. - MGD + +2011-03-29 + Wrapped ViewVCCachedServer definition in a factory function. This class + now inherits from urllib2.HTTPSHandler in order to fetch data from github, + but HTTPSHandler is not defined if python was built without SSL support. - + DSD + +2011-03-10 + Update pytz version to 2011c, thanks to Simon Cross. - JKS + +2011-03-06 + Add standalone tests.py test runner script. - JKS + +2011-03-06 + Set edgecolor to 'face' for scatter asterisk-type symbols; this fixes a bug + in which these symbols were not responding to the c kwarg. The symbols + have no face area, so only the edgecolor is visible. - EF + +2011-02-27 + Support libpng version 1.5.x; suggestion by Michael Albert. Changed + installation specification to a minimum of libpng version 1.2. - EF + +2011-02-20 + clabel accepts a callable as an fmt kwarg; modified patch by Daniel Hyams. + - EF + +2011-02-18 + scatter([], []) is now valid. Also fixed issues with empty collections - + BVR + +2011-02-07 + Quick workaround for dviread bug #3175113 - JKS + +2011-02-05 + Add cbook memory monitoring for Windows, using tasklist. - EF + +2011-02-05 + Speed up Normalize and LogNorm by using in-place operations and by using + float32 for float32 inputs and for ints of 2 bytes or shorter; based on + patch by Christoph Gohlke. - EF + +2011-02-04 + Changed imshow to use rgba as uint8 from start to finish, instead of going + through an intermediate step as double precision; thanks to Christoph + Gohlke. - EF + +2011-01-13 + Added zdir and offset arguments to contourf3d to bring contourf3d in + feature parity with contour3d. - BVR + +2011-01-04 + Tag 1.0.1 for release at r8896 + +2011-01-03 + Added display of ticker offset to 3d plots. - BVR + +2011-01-03 + Turn off tick labeling on interior subplots for pyplots.subplots when + sharex/sharey is True. - JDH + +2010-12-29 + Implement axes_divider.HBox and VBox. -JJL + +2010-11-22 + Fixed error with Hammer projection. - BVR + +2010-11-12 + Fixed the placement and angle of axis labels in 3D plots. - BVR + +2010-11-07 + New rc parameters examples.download and examples.directory allow bypassing + the download mechanism in get_sample_data. - JKS + +2010-10-04 + Fix JPEG saving bug: only accept the kwargs documented by PIL for JPEG + files. - JKS + +2010-09-15 + Remove unused _wxagg extension and numerix.h. - EF + +2010-08-25 + Add new framework for doing animations with examples.- RM + +2010-08-21 + Remove unused and inappropriate methods from Tick classes: + set_view_interval, get_minpos, and get_data_interval are properly found in + the Axis class and don't need to be duplicated in XTick and YTick. - EF + +2010-08-21 + Change Axis.set_view_interval() so that when updating an existing interval, + it respects the orientation of that interval, and can enlarge but not + reduce the interval. This fixes a bug in which Axis.set_ticks would change + the view limits of an inverted axis. Whether set_ticks should be affecting + the viewLim at all remains an open question. - EF + +2010-08-16 + Handle NaN's correctly in path analysis routines. Fixes a bug where the + best location for a legend was not calculated correctly when the line + contains NaNs. - MGD + +2010-08-14 + Fix bug in patch alpha handling, and in bar color kwarg - EF + +2010-08-12 + Removed all traces of numerix module after 17 months of deprecation + warnings. - EF + +2010-08-05 + Added keyword arguments 'thetaunits' and 'runits' for polar plots. Fixed + PolarAxes so that when it set default Formatters, it marked them as such. + Fixed semilogx and semilogy to no longer blindly reset the ticker + information on the non-log axis. Axes.arrow can now accept unitized data. + - JRE + +2010-08-03 + Add support for MPLSETUPCFG variable for custom setup.cfg filename. Used + by sage buildbot to build an mpl w/ no gui support - JDH + +2010-08-01 + Create directory specified by MPLCONFIGDIR if it does not exist. - ADS + +2010-07-20 + Return Qt4's default cursor when leaving the canvas - DSD + +2010-07-06 + Tagging for mpl 1.0 at r8502 + +2010-07-05 + Added Ben Root's patch to put 3D plots in arbitrary axes, allowing you to + mix 3d and 2d in different axes/subplots or to have multiple 3D plots in + one figure. See examples/mplot3d/subplot3d_demo.py - JDH + +2010-07-05 + Preferred kwarg names in set_xlim are now 'left' and 'right'; in set_ylim, + 'bottom' and 'top'; original kwargs are still accepted without complaint. - + EF + +2010-07-05 + TkAgg and FltkAgg backends are now consistent with other interactive + backends: when used in scripts from the command line (not from ipython + -pylab), show blocks, and can be called more than once. - EF + +2010-07-02 + Modified CXX/WrapPython.h to fix "swab bug" on solaris so mpl can compile + on Solaris with CXX6 in the trunk. Closes tracker bug 3022815 - JDH + +2010-06-30 + Added autoscale convenience method and corresponding pyplot function for + simplified control of autoscaling; and changed axis, set_xlim, and set_ylim + so that by default, they turn off the autoscaling on the relevant axis or + axes. Therefore one can call set_xlim before plotting a line, for example, + and the limits will be retained. - EF + +2010-06-20 + Added Axes.tick_params and corresponding pyplot function to control tick + and tick label appearance after an Axes has been created. - EF + +2010-06-09 + Allow Axes.grid to control minor gridlines; allow Axes.grid and Axis.grid + to control major and minor gridlines in the same method call. - EF + +2010-06-06 + Change the way we do split/dividend adjustments in finance.py to handle + dividends and fix the zero division bug reported in sf bug 2949906 and + 2123566. Note that volume is not adjusted because the Yahoo CSV does not + distinguish between share split and dividend adjustments making it near + impossible to get volume adjustment right (unless we want to guess based on + the size of the adjustment or scrape the html tables, which we don't) - JDH + +2010-06-06 + Updated dateutil to 1.5 and pytz to 2010h. + +2010-06-02 + Add error_kw kwarg to Axes.bar(). - EF + +2010-06-01 + Fix pcolormesh() and QuadMesh to pass on kwargs as appropriate. - RM + +2010-05-18 + Merge mpl_toolkits.gridspec into the main tree. - JJL + +2010-05-04 + Improve backend_qt4 so it displays figures with the correct size - DSD + +2010-04-20 + Added generic support for connecting to a timer for events. This adds + TimerBase, TimerGTK, TimerQT, TimerWx, and TimerTk to the backends and a + new_timer() method to each backend's canvas to allow ease of creating a new + timer. - RM + +2010-04-20 + Added margins() Axes method and pyplot function. - EF + +2010-04-18 + update the axes_grid documentation. -JJL + +2010-04-18 + Control MaxNLocator parameters after instantiation, and via + Axes.locator_params method, with corresponding pyplot function. -EF + +2010-04-18 + Control ScalarFormatter offsets directly and via the + Axes.ticklabel_format() method, and add that to pyplot. -EF + +2010-04-16 + Add a close_event to the backends. -RM + +2010-04-06 + modify axes_grid examples to use axes_grid1 and axisartist. -JJL + +2010-04-06 + rebase axes_grid using axes_grid1 and axisartist modules. -JJL + +2010-04-06 + axes_grid toolkit is split into two separate modules, axes_grid1 and + axisartist. -JJL + +2010-04-05 + Speed up import: import pytz only if and when it is needed. It is not + needed if the rc timezone is UTC. - EF + +2010-04-03 + Added color kwarg to Axes.hist(), based on work by Jeff Klukas. - EF + +2010-03-24 + refactor colorbar code so that no cla() is necessary when mappable is + changed. -JJL + +2010-03-22 + fix incorrect rubber band during the zoom mode when mouse leaves the axes. + -JJL + +2010-03-21 + x/y key during the zoom mode only changes the x/y limits. -JJL + +2010-03-20 + Added pyplot.sca() function suggested by JJL. - EF + +2010-03-20 + Added conditional support for new Tooltip API in gtk backend. - EF + +2010-03-20 + Changed plt.fig_subplot() to plt.subplots() after discussion on list, and + changed its API to return axes as a numpy object array (with control of + dimensions via squeeze keyword). FP. + +2010-03-13 + Manually brought in commits from branch:: + + ------------------------------------------------------------------------ + r8191 | leejjoon | 2010-03-13 + 17:27:57 -0500 (Sat, 13 Mar 2010) | 1 line + + fix the bug that handles for scatter are incorrectly set when dpi!=72. + Thanks to Ray Speth for the bug report. + +2010-03-03 + Manually brought in commits from branch via diff/patch (svnmerge is broken):: + + ------------------------------------------------------------------------ + r8175 | leejjoon | 2010-03-03 + 10:03:30 -0800 (Wed, 03 Mar 2010) | 1 line + + fix arguments of allow_rasterization.draw_wrapper + ------------------------------------------------------------------------ + r8174 | jdh2358 | 2010-03-03 + 09:15:58 -0800 (Wed, 03 Mar 2010) | 1 line + + added support for favicon in docs build + ------------------------------------------------------------------------ + r8173 | jdh2358 | 2010-03-03 + 08:56:16 -0800 (Wed, 03 Mar 2010) | 1 line + + applied Mattias get_bounds patch + ------------------------------------------------------------------------ + r8172 | jdh2358 | 2010-03-03 + 08:31:42 -0800 (Wed, 03 Mar 2010) | 1 line + + fix svnmerge download instructions + ------------------------------------------------------------------------ + r8171 | jdh2358 | 2010-03-03 + 07:47:48 -0800 (Wed, 03 Mar 2010) | 1 line + +2010-02-25 + add annotation_demo3.py that demonstrates new functionality. -JJL + +2010-02-25 + refactor Annotation to support arbitrary Transform as xycoords or + textcoords. Also, if a tuple of two coordinates is provided, they are + interpreted as coordinates for each x and y position. -JJL + +2010-02-24 + Added pyplot.fig_subplot(), to create a figure and a group of subplots in a + single call. This offers an easier pattern than manually making figures + and calling add_subplot() multiple times. FP + +2010-02-17 + Added Gokhan's and Mattias' customizable keybindings patch for the toolbar. + You can now set the keymap.* properties in the matplotlibrc file. + Newbindings were added for toggling log scaling on the x-axis. JDH + +2010-02-16 + Committed TJ's filled marker patch for left|right|bottom|top|full filled + markers. See examples/pylab_examples/filledmarker_demo.py. JDH + +2010-02-11 + Added 'bootstrap' option to boxplot. This allows bootstrap estimates of + median confidence intervals. Based on an initial patch by Paul Hobson. - + ADS + +2010-02-06 + Added setup.cfg "basedirlist" option to override setting in setupext.py + "basedir" dictionary; added "gnu0" platform requested by Benjamin Drung. - + EF + +2010-02-06 + Added 'xy' scaling option to EllipseCollection. - EF + +2010-02-03 + Made plot_directive use a custom PlotWarning category, so that warnings can + be turned into fatal errors easily if desired. - FP + +2010-01-29 + Added draggable method to Legend to allow mouse drag placement. Thanks + Adam Fraser. JDH + +2010-01-25 + Fixed a bug reported by Olle Engdegard, when using histograms with + stepfilled and log=True - MM + +2010-01-16 + Upgraded CXX to 6.1.1 - JDH + +2009-01-16 + Don't create minor ticks on top of existing major ticks. Patch by Neil + Crighton. -ADS + +2009-01-16 + Ensure three minor ticks always drawn (SF# 2924245). Patch by Neil + Crighton. -ADS + +2010-01-16 + Applied patch by Ian Thomas to fix two contouring problems: now contourf + handles interior masked regions, and the boundaries of line and filled + contours coincide. - EF + +2009-01-11 + The color of legend patch follows the rc parameters axes.facecolor and + axes.edgecolor. -JJL + +2009-01-11 + adjustable of Axes can be "box-forced" which allow sharing axes. -JJL + +2009-01-11 + Add add_click and pop_click methods in BlockingContourLabeler. -JJL + +2010-01-03 + Added rcParams['axes.color_cycle'] - EF + +2010-01-03 + Added Pierre's qt4 formlayout editor and toolbar button - JDH + +2009-12-31 + Add support for using math text as marker symbols (Thanks to tcb) - MGD + +2009-12-31 + Commit a workaround for a regression in PyQt4-4.6.{0,1} - DSD + +2009-12-22 + Fix cmap data for gist_earth_r, etc. -JJL + +2009-12-20 + spines: put spines in data coordinates, add set_bounds() call. -ADS + +2009-12-18 + Don't limit notch size in boxplot to q1-q3 range, as this is effectively + making the data look better than it is. - ADS + +2009-12-18 + mlab.prctile handles even-length data, such that the median is the mean of + the two middle values. - ADS + +2009-12-15 + Add raw-image (unsampled) support for the ps backend. - JJL + +2009-12-14 + Add patch_artist kwarg to boxplot, but keep old default. Convert + boxplot_demo2.py to use the new patch_artist. - ADS + +2009-12-06 + axes_grid: reimplemented AxisArtist with FloatingAxes support. Added new + examples. - JJL + +2009-12-01 + Applied Laurent Dufrechou's patch to improve blitting with the qt4 backend + - DSD + +2009-11-13 + The pdf backend now allows changing the contents of a pdf file's + information dictionary via PdfPages.infodict. - JKS + +2009-11-12 + font_manager.py should no longer cause EINTR on Python 2.6 (but will on the + 2.5 version of subprocess). Also the fc-list command in that file was fixed + so now it should actually find the list of fontconfig fonts. - JKS + +2009-11-10 + Single images, and all images in renderers with option_image_nocomposite + (i.e. agg, macosx and the svg backend when rcParams['svg.image_noscale'] is + True), are now drawn respecting the zorder relative to other artists. (Note + that there may now be inconsistencies across backends when more than one + image is drawn at varying zorders, but this change introduces correct + behavior for the backends in which it's easy to do so.) + +2009-10-21 + Make AutoDateLocator more configurable by adding options to control the + maximum and minimum number of ticks. Also add control of the intervals to + be used for ticking. This does not change behavior but opens previously + hard-coded behavior to runtime modification`. - RMM + +2009-10-19 + Add "path_effects" support for Text and Patch. See + examples/pylab_examples/patheffect_demo.py -JJL + +2009-10-19 + Add "use_clabeltext" option to clabel. If True, clabels will be created + with ClabelText class, which recalculates rotation angle of the label + during the drawing time. -JJL + +2009-10-16 + Make AutoDateFormatter actually use any specified timezone setting.This was + only working correctly when no timezone was specified. - RMM + +2009-09-27 + Beginnings of a capability to test the pdf backend. - JKS + +2009-09-27 + Add a savefig.extension rcparam to control the default filename extension + used by savefig. - JKS + +=============================================== + +2009-09-21 + Tagged for release 0.99.1 + +2009-09-20 + Fix usetex spacing errors in pdf backend. - JKS + +2009-09-20 + Add Sphinx extension to highlight IPython console sessions, originally + authored (I think) by Michael Droetboom. - FP + +2009-09-20 + Fix off-by-one error in dviread.Tfm, and additionally protect against + exceptions in case a dvi font is missing some metrics. - JKS + +2009-09-15 + Implement draw_text and draw_tex method of backend_base using the textpath + module. Implement draw_tex method of the svg backend. - JJL + +2009-09-15 + Don't fail on AFM files containing floating-point bounding boxes - JKS + +2009-09-13 + AxesGrid : add modified version of colorbar. Add colorbar location howto. - + JJL + +2009-09-07 + AxesGrid : implemented axisline style. Added a demo + examples/axes_grid/demo_axisline_style.py- JJL + +2009-09-04 + Make the textpath class as a separate module (textpath.py). Add support for + mathtext and tex.- JJL + +2009-09-01 + Added support for Gouraud interpolated triangles. pcolormesh now accepts + shading='gouraud' as an option. - MGD + +2009-08-29 + Added matplotlib.testing package, which contains a Nose plugin and a + decorator that lets tests be marked as KnownFailures - ADS + +2009-08-20 + Added scaled dict to AutoDateFormatter for customized scales - JDH + +2009-08-15 + Pyplot interface: the current image is now tracked at the figure and axes + level, addressing tracker item 1656374. - EF + +2009-08-15 + Docstrings are now manipulated with decorators defined in a new module, + docstring.py, thanks to Jason Coombs. - EF + +2009-08-14 + Add support for image filtering for agg back end. See the example + demo_agg_filter.py. -JJL + +2009-08-09 + AnnotationBbox added. Similar to Annotation, but works with OffsetBox + instead of Text. See the example demo_annotation_box.py. -JJL + +2009-08-07 + BboxImage implemented. Two examples, demo_bboximage.py and + demo_ribbon_box.py added. - JJL + +2009-08-07 + In an effort to simplify the backend API, all clipping rectangles and paths + are now passed in using GraphicsContext objects, even on collections and + images. Therefore:: + + draw_path_collection(self, master_transform, cliprect, clippath, + clippath_trans, paths, all_transforms, offsets, + offsetTrans, facecolors, edgecolors, linewidths, + linestyles, antialiaseds, urls) + + becomes:: + + draw_path_collection(self, gc, master_transform, paths, all_transforms, + offsets, offsetTrans, facecolors, edgecolors, + linewidths, linestyles, antialiaseds, urls) + + :: + + draw_quad_mesh(self, master_transform, cliprect, clippath, + clippath_trans, meshWidth, meshHeight, coordinates, + offsets, offsetTrans, facecolors, antialiased, + showedges) + + becomes:: + + draw_quad_mesh(self, gc, master_transform, meshWidth, meshHeight, + coordinates, offsets, offsetTrans, facecolors, + antialiased, showedges) + + :: + + draw_image(self, x, y, im, bbox, clippath=None, clippath_trans=None) + + becomes:: + + draw_image(self, gc, x, y, im) + + - MGD + +2009-08-06 + Tagging the 0.99.0 release at svn r7397 - JDH + + * fixed an alpha colormapping bug posted on sf 2832575 + + * fix typo in axes_divider.py. use nanmin, nanmax in angle_helper.py (patch + by Christoph Gohlke) + + * remove dup gui event in enter/leave events in gtk + + * lots of fixes for os x binaries (Thanks Russell Owen) + + * attach gtk events to mpl events -- fixes sf bug 2816580 + + * applied sf patch 2815064 (middle button events for wx) and patch 2818092 + (resize events for wx) + + * fixed boilerplate.py so it doesn't break the ReST docs. + + * removed a couple of cases of mlab.load + + * fixed rec2csv win32 file handle bug from sf patch 2831018 + + * added two examples from Josh Hemann: + examples/pylab_examples/barchart_demo2.py and + examples/pylab_examples/boxplot_demo2.py + + * handled sf bugs 2831556 and 2830525; better bar error messages and + backend driver configs + + * added miktex win32 patch from sf patch 2820194 + + * apply sf patches 2830233 and 2823885 for osx setup and 64 bit; thanks + Michiel + +2009-08-04 + Made cbook.get_sample_data make use of the ETag and Last-Modified headers + of mod_dav_svn. - JKS + +2009-08-03 + Add PathCollection; modify contourf to use complex paths instead of simple + paths with cuts. - EF + +2009-08-03 + Fixed boilerplate.py so it doesn't break the ReST docs. - JKS + +2009-08-03 + pylab no longer provides a load and save function. These are available in + matplotlib.mlab, or you can use numpy.loadtxt and numpy.savetxt for text + files, or np.save and np.load for binary numpy arrays. - JDH + +2009-07-31 + Added cbook.get_sample_data for urllib enabled fetching and caching of data + needed for examples. See examples/misc/sample_data_demo.py - JDH + +2009-07-31 + Tagging 0.99.0.rc1 at 7314 - MGD + +2009-07-30 + Add set_cmap and register_cmap, and improve get_cmap, to provide convenient + handling of user-generated colormaps. Reorganized _cm and cm modules. - EF + +2009-07-28 + Quiver speed improved, thanks to tip by Ray Speth. -EF + +2009-07-27 + Simplify argument handling code for plot method. -EF + +2009-07-25 + Allow "plot(1, 2, 'r*')" to work. - EF + +2009-07-22 + Added an 'interp' keyword to griddata so the faster linear interpolation + method can be chosen. Default is 'nn', so default behavior (using natural + neighbor method) is unchanged (JSW) + +2009-07-22 + Improved boilerplate.py so that it generates the correct signatures for + pyplot functions. - JKS + +2009-07-19 + Fixed the docstring of Axes.step to reflect the correct meaning of the + kwargs "pre" and "post" - See SF bug + \https://sourceforge.net/tracker/index.php?func=detail&aid=2823304&group_id=80706&atid=560720 + - JDH + +2009-07-18 + Fix support for hatches without color fills to pdf and svg backends. Add an + example of that to hatch_demo.py. - JKS + +2009-07-17 + Removed fossils from swig version of agg backend. - EF + +2009-07-14 + initial submission of the annotation guide. -JJL + +2009-07-14 + axes_grid : minor improvements in anchored_artists and inset_locator. -JJL + +2009-07-14 + Fix a few bugs in ConnectionStyle algorithms. Add ConnectionPatch class. + -JJL + +2009-07-11 + Added a fillstyle Line2D property for half filled markers -- see + examples/pylab_examples/fillstyle_demo.py JDH + +2009-07-08 + Attempt to improve performance of qt4 backend, do not call + qApp.processEvents while processing an event. Thanks Ole Streicher for + tracking this down - DSD + +2009-06-24 + Add withheader option to mlab.rec2csv and changed use_mrecords default to + False in mlab.csv2rec since this is partially broken - JDH + +2009-06-24 + backend_agg.draw_marker quantizes the main path (as in the draw_path). - + JJL + +2009-06-24 + axes_grid: floating axis support added. - JJL + +2009-06-14 + Add new command line options to backend_driver.py to support running only + some directories of tests - JKS + +2009-06-13 + partial cleanup of mlab and its importation in pylab - EF + +2009-06-13 + Introduce a rotation_mode property for the Text artist. See + examples/pylab_examples/demo_text_rotation_mode.py -JJL + +2009-06-07 + add support for bz2 files per sf support request 2794556 - JDH + +2009-06-06 + added a properties method to the artist and inspector to return a dict + mapping property name -> value; see sf feature request 2792183 - JDH + +2009-06-06 + added Neil's auto minor tick patch; sf patch #2789713 - JDH + +2009-06-06 + do not apply alpha to rgba color conversion if input is already rgba - JDH + +2009-06-03 + axes_grid : Initial check-in of curvelinear grid support. See + examples/axes_grid/demo_curvelinear_grid.py - JJL + +2009-06-01 + Add set_color method to Patch - EF + +2009-06-01 + Spine is now derived from Patch - ADS + +2009-06-01 + use cbook.is_string_like() instead of isinstance() for spines - ADS + +2009-06-01 + cla() support for spines - ADS + +2009-06-01 + Removed support for gtk < 2.4. - EF + +2009-05-29 + Improved the animation_blit_qt4 example, which was a mix of the + object-oriented and pylab interfaces. It is now strictly object-oriented - + DSD + +2009-05-28 + Fix axes_grid toolkit to work with spine patch by ADS. - JJL + +2009-05-28 + Applied fbianco's patch to handle scroll wheel events in the qt4 backend - + DSD + +2009-05-26 + Add support for "axis spines" to have arbitrary location. -ADS + +2009-05-20 + Add an empty matplotlibrc to the tests/ directory so that running tests + will use the default set of rcparams rather than the user's config. - RMM + +2009-05-19 + Axis.grid(): allow use of which='major,minor' to have grid on major and + minor ticks. -ADS + +2009-05-18 + Make psd(), csd(), and cohere() wrap properly for complex/two-sided + versions, like specgram() (SF #2791686) - RMM + +2009-05-18 + Fix the linespacing bug of multiline text (#1239682). See + examples/pylab_examples/multiline.py -JJL + +2009-05-18 + Add *annotation_clip* attr. for text.Annotation class. If True, annotation + is only drawn when the annotated point is inside the axes area. -JJL + +2009-05-17 + Fix bug(#2749174) that some properties of minor ticks are not conserved + -JJL + +2009-05-17 + applied Michiel's sf patch 2790638 to turn off gtk event loop in setupext + for pygtk>=2.15.10 - JDH + +2009-05-17 + applied Michiel's sf patch 2792742 to speed up Cairo and macosx + collections; speedups can be 20x. Also fixes some bugs in which gc got + into inconsistent state + +----------------------- + +2008-05-17 + Release 0.98.5.3 at r7107 from the branch - JDH + +2009-05-13 + An optional offset and bbox support in restore_bbox. Add + animation_blit_gtk2.py. -JJL + +2009-05-13 + psfrag in backend_ps now uses baseline-alignment when preview.sty is used + ((default is bottom-alignment). Also, a small API improvement in + OffsetBox-JJL + +2009-05-13 + When the x-coordinate of a line is monotonically increasing, it is now + automatically clipped at the stage of generating the transformed path in + the draw method; this greatly speeds up zooming and panning when one is + looking at a short segment of a long time series, for example. - EF + +2009-05-11 + aspect=1 in log-log plot gives square decades. -JJL + +2009-05-08 + clabel takes new kwarg, rightside_up; if False, labels will not be flipped + to keep them rightside-up. This allows the use of clabel to make + streamfunction arrows, as requested by Evan Mason. - EF + +2009-05-07 + 'labelpad' can now be passed when setting x/y labels. This allows + controlling the spacing between the label and its axis. - RMM + +2009-05-06 + print_ps now uses mixed-mode renderer. Axes.draw rasterize artists whose + zorder smaller than rasterization_zorder. -JJL + +2009-05-06 + Per-artist Rasterization, originally by Eric Bruning. -JJ + +2009-05-05 + Add an example that shows how to make a plot that updates using data from + another process. Thanks to Robert Cimrman - RMM + +2009-05-05 + Add Axes.get_legend_handles_labels method. - JJL + +2009-05-04 + Fix bug that Text.Annotation is still drawn while set to not visible. - JJL + +2009-05-04 + Added TJ's fill_betweenx patch - JDH + +2009-05-02 + Added options to plotfile based on question from Joseph Smidt and patch by + Matthias Michler. - EF + +2009-05-01 + Changed add_artist and similar Axes methods to return their argument. - EF + +2009-04-30 + Incorrect eps bbox for landscape mode fixed - JJL + +2009-04-28 + Fixed incorrect bbox of eps output when usetex=True. - JJL + +2009-04-24 + Changed use of os.open* to instead use subprocess.Popen. os.popen* are + deprecated in 2.6 and are removed in 3.0. - RMM + +2009-04-20 + Worked on axes_grid documentation. Added axes_grid.inset_locator. - JJL + +2009-04-17 + Initial check-in of the axes_grid toolkit. - JJL + +2009-04-17 + Added a support for bbox_to_anchor in offsetbox.AnchoredOffsetbox. Improved + a documentation. - JJL + +2009-04-16 + Fixed a offsetbox bug that multiline texts are not correctly aligned. - + JJL + +2009-04-16 + Fixed a bug in mixed mode renderer that images produced by an rasterizing + backend are placed with incorrect size. - JJL + +2009-04-14 + Added Jonathan Taylor's Reinier Heeres' port of John Porters' mplot3d to + svn trunk. Package in mpl_toolkits.mplot3d and demo is + examples/mplot3d/demo.py. Thanks Reiner + +2009-04-06 + The pdf backend now escapes newlines and linefeeds in strings. Fixes sf + bug #2708559; thanks to Tiago Pereira for the report. + +2009-04-06 + texmanager.make_dvi now raises an error if LaTeX failed to create an output + file. Thanks to Joao Luis Silva for reporting this. - JKS + +2009-04-05 + _png.read_png() reads 12 bit PNGs (patch from Tobias Wood) - ADS + +2009-04-04 + Allow log axis scale to clip non-positive values to small positive value; + this is useful for errorbars. - EF + +2009-03-28 + Make images handle nan in their array argument. A helper, + cbook.safe_masked_invalid() was added. - EF + +2009-03-25 + Make contour and contourf handle nan in their Z argument. - EF + +2009-03-20 + Add AuxTransformBox in offsetbox.py to support some transformation. + anchored_text.py example is enhanced and renamed (anchored_artists.py). - + JJL + +2009-03-20 + Add "bar" connection style for annotation - JJL + +2009-03-17 + Fix bugs in edge color handling by contourf, found by Jae-Joon Lee. - EF + +2009-03-14 + Added 'LightSource' class to colors module for creating shaded relief maps. + shading_example.py added to illustrate usage. - JSW + +2009-03-11 + Ensure wx version >= 2.8; thanks to Sandro Tosi and Chris Barker. - EF + +2009-03-10 + Fix join style bug in pdf. - JKS + +2009-03-07 + Add pyplot access to figure number list - EF + +2009-02-28 + hashing of FontProperties accounts current rcParams - JJL + +2009-02-28 + Prevent double-rendering of shared axis in twinx, twiny - EF + +2009-02-26 + Add optional bbox_to_anchor argument for legend class - JJL + +2009-02-26 + Support image clipping in pdf backend. - JKS + +2009-02-25 + Improve tick location subset choice in FixedLocator. - EF + +2009-02-24 + Deprecate numerix, and strip out all but the numpy part of the code. - EF + +2009-02-21 + Improve scatter argument handling; add an early error message, allow inputs + to have more than one dimension. - EF + +2009-02-16 + Move plot_directive.py to the installed source tree. Add support for + inline code content - MGD + +2009-02-16 + Move mathmpl.py to the installed source tree so it is available to other + projects. - MGD + +2009-02-14 + Added the legend title support - JJL + +2009-02-10 + Fixed a bug in backend_pdf so it doesn't break when the setting + pdf.use14corefonts=True is used. Added test case in + unit/test_pdf_use14corefonts.py. - NGR + +2009-02-08 + Added a new imsave function to image.py and exposed it in the pyplot + interface - GR + +2009-02-04 + Some reorganization of the legend code. anchored_text.py added as an + example. - JJL + +2009-02-04 + Add extent keyword arg to hexbin - ADS + +2009-02-04 + Fix bug in mathtext related to \dots and \ldots - MGD + +2009-02-03 + Change default joinstyle to round - MGD + +2009-02-02 + Reduce number of marker XObjects in pdf output - JKS + +2009-02-02 + Change default resolution on polar plot to 1 - MGD + +2009-02-02 + Avoid malloc errors in ttconv for fonts that don't have e.g., PostName (a + version of Tahoma triggered this) - JKS + +2009-01-30 + Remove support for pyExcelerator in exceltools -- use xlwt instead - JDH + +2009-01-29 + Document 'resolution' kwarg for polar plots. Support it when using + pyplot.polar, not just Figure.add_axes. - MGD + +2009-01-29 + Rework the nan-handling/clipping/quantizing/simplification framework so + each is an independent part of a pipeline. Expose the C++-implementation + of all of this so it can be used from all Python backends. Add rcParam + "path.simplify_threshold" to control the threshold of similarity below + which vertices will be removed. + +2009-01-26 + Improved tight bbox option of the savefig. - JJL + +2009-01-26 + Make curves and NaNs play nice together - MGD + +2009-01-21 + Changed the defaults of acorr and xcorr to use usevlines=True, maxlags=10 + and normed=True since these are the best defaults + +2009-01-19 + Fix bug in quiver argument handling. - EF + +2009-01-19 + Fix bug in backend_gtk: don't delete nonexistent toolbar. - EF + +2009-01-16 + Implement bbox_inches option for savefig. If bbox_inches is "tight", try to + determine the tight bounding box. - JJL + +2009-01-16 + Fix bug in is_string_like so it doesn't raise an unnecessary exception. - + EF + +2009-01-16 + Fix an infinite recursion in the unit registry when searching for a + converter for a sequence of strings. Add a corresponding test. - RM + +2009-01-16 + Bugfix of C typedef of MPL_Int64 that was failing on Windows XP 64 bit, as + reported by George Goussard on numpy mailing list. - ADS + +2009-01-16 + Added helper function LinearSegmentedColormap.from_list to facilitate + building simple custom colomaps. See + examples/pylab_examples/custom_cmap_fromlist.py - JDH + +2009-01-16 + Applied Michiel's patch for macosx backend to fix rounding bug. Closed sf + bug 2508440 - JSW + +2009-01-10 + Applied Michiel's hatch patch for macosx backend and draw_idle patch for + qt. Closes sf patched 2497785 and 2468809 - JDH + +2009-01-10 + Fix bug in pan/zoom with log coordinates. - EF + +2009-01-06 + Fix bug in setting of dashed negative contours. - EF + +2009-01-06 + Be fault tolerant when len(linestyles)>NLev in contour. - MM + +2009-01-06 + Added marginals kwarg to hexbin to plot marginal densities JDH + +2009-01-06 + Change user-visible multipage pdf object to PdfPages to avoid accidents + with the file-like PdfFile. - JKS + +2009-01-05 + Fix a bug in pdf usetex: allow using non-embedded fonts. - JKS + +2009-01-05 + optional use of preview.sty in usetex mode. - JJL + +2009-01-02 + Allow multipage pdf files. - JKS + +2008-12-31 + Improve pdf usetex by adding support for font effects (slanting and + extending). - JKS + +2008-12-29 + Fix a bug in pdf usetex support, which occurred if the same Type-1 font was + used with different encodings, e.g., with Minion Pro and MnSymbol. - JKS + +2008-12-20 + fix the dpi-dependent offset of Shadow. - JJL + +2008-12-20 + fix the hatch bug in the pdf backend. minor update in docs and example - + JJL + +2008-12-19 + Add axes_locator attribute in Axes. Two examples are added. - JJL + +2008-12-19 + Update Axes.legend documentation. /api/api_changes.rst is also updated to + describe changes in keyword parameters. Issue a warning if old keyword + parameters are used. - JJL + +2008-12-18 + add new arrow style, a line + filled triangles. -JJL + +---------------- + +2008-12-18 + Re-Released 0.98.5.2 from v0_98_5_maint at r6679 Released 0.98.5.2 from + v0_98_5_maint at r6667 + +2008-12-18 + Removed configobj, experimental traits and doc/mpl_data link - JDH + +2008-12-18 + Fix bug where a line with NULL data limits prevents subsequent data limits + from calculating correctly - MGD + +2008-12-17 + Major documentation generator changes - MGD + +2008-12-17 + Applied macosx backend patch with support for path collections, quadmesh, + etc... - JDH + +2008-12-17 + fix dpi-dependent behavior of text bbox and arrow in annotate -JJL + +2008-12-17 + Add group id support in artist. Two examples which demonstrate svg filter + are added. -JJL + +2008-12-16 + Another attempt to fix dpi-dependent behavior of Legend. -JJL + +2008-12-16 + Fixed dpi-dependent behavior of Legend and fancybox in Text. + +2008-12-16 + Added markevery property to Line2D to support subsampling of markers - JDH + +2008-12-15 + Removed mpl_data symlink in docs. On platforms that do not support + symlinks, these become copies, and the font files are large, so the distro + becomes unnecessarily bloated. Keeping the mpl_examples dir because + relative links are harder for the plot directive and the \*.py files are + not so large. - JDH + +2008-12-15 + Fix \$ in non-math text with usetex off. Document differences between + usetex on/off - MGD + +2008-12-15 + Fix anti-aliasing when auto-snapping - MGD + +2008-12-15 + Fix grid lines not moving correctly during pan and zoom - MGD + +2008-12-12 + Preparations to eliminate maskedarray rcParams key: its use will now + generate a warning. Similarly, importing the obsolete numerix.npyma will + generate a warning. - EF + +2008-12-12 + Added support for the numpy.histogram() weights parameter to the axes + hist() method. Docs taken from numpy - MM + +2008-12-12 + Fixed warning in hist() with numpy 1.2 - MM + +2008-12-12 + Removed external packages: configobj and enthought.traits which are only + required by the experimental traited config and are somewhat out of date. + If needed, install them independently, see + http://code.enthought.com/pages/traits.html and + http://www.voidspace.org.uk/python/configobj.html + +2008-12-12 + Added support to assign labels to histograms of multiple data. - MM + +------------------------- + +2008-12-11 + Released 0.98.5 at svn r6573 + +2008-12-11 + Use subprocess.Popen instead of os.popen in dviread (Windows problem + reported by Jorgen Stenarson) - JKS + +2008-12-10 + Added Michael's font_manager fix and Jae-Joon's figure/subplot fix. Bumped + version number to 0.98.5 - JDH + +---------------------------- + +2008-12-09 + Released 0.98.4 at svn r6536 + +2008-12-08 + Added mdehoon's native macosx backend from sf patch 2179017 - JDH + +2008-12-08 + Removed the prints in the set_*style commands. Return the list of pprinted + strings instead - JDH + +2008-12-08 + Some of the changes Michael made to improve the output of the property + tables in the rest docs broke of made difficult to use some of the + interactive doc helpers, e.g., setp and getp. Having all the rest markup + in the ipython shell also confused the docstrings. I added a new rc param + docstring.hardcopy, to format the docstrings differently for hard copy and + other use. The ArtistInspector could use a little refactoring now since + there is duplication of effort between the rest out put and the non-rest + output - JDH + +2008-12-08 + Updated spectral methods (psd, csd, etc.) to scale one-sided densities by a + factor of 2 and, optionally, scale all densities by the sampling frequency. + This gives better MatLab compatibility. -RM + +2008-12-08 + Fixed alignment of ticks in colorbars. -MGD + +2008-12-07 + drop the deprecated "new" keyword of np.histogram() for numpy 1.2 or later. + -JJL + +2008-12-06 + Fixed a bug in svg backend that new_figure_manager() ignores keywords + arguments such as figsize, etc. -JJL + +2008-12-05 + Fixed a bug that the handlelength of the new legend class set too short + when numpoints=1 -JJL + +2008-12-04 + Added support for data with units (e.g., dates) to Axes.fill_between. -RM + +2008-12-04 + Added fancybox keyword to legend. Also applied some changes for better + look, including baseline adjustment of the multiline texts so that it is + center aligned. -JJL + +2008-12-02 + The transmuter classes in the patches.py are reorganized as subclasses of + the Style classes. A few more box and arrow styles are added. -JJL + +2008-12-02 + Fixed a bug in the new legend class that didn't allowed a tuple of + coordinate values as loc. -JJL + +2008-12-02 + Improve checks for external dependencies, using subprocess (instead of + deprecated popen*) and distutils (for version checking) - DSD + +2008-11-30 + Reimplementation of the legend which supports baseline alignment, + multi-column, and expand mode. - JJL + +2008-12-01 + Fixed histogram autoscaling bug when bins or range are given explicitly + (fixes Debian bug 503148) - MM + +2008-11-25 + Added rcParam axes.unicode_minus which allows plain hyphen for minus when + False - JDH + +2008-11-25 + Added scatterpoints support in Legend. patch by Erik Tollerud - JJL + +2008-11-24 + Fix crash in log ticking. - MGD + +2008-11-20 + Added static helper method BrokenHBarCollection.span_where and Axes/pyplot + method fill_between. See examples/pylab/fill_between.py - JDH + +2008-11-12 + Add x_isdata and y_isdata attributes to Artist instances, and use them to + determine whether either or both coordinates are used when updating + dataLim. This is used to fix autoscaling problems that had been triggered + by axhline, axhspan, axvline, axvspan. - EF + +2008-11-11 + Update the psd(), csd(), cohere(), and specgram() methods of Axes and the + csd() cohere(), and specgram() functions in mlab to be in sync with the + changes to psd(). In fact, under the hood, these all call the same core to + do computations. - RM + +2008-11-11 + Add 'pad_to' and 'sides' parameters to mlab.psd() to allow controlling of + zero padding and returning of negative frequency components, respectively. + These are added in a way that does not change the API. - RM + +2008-11-10 + Fix handling of c kwarg by scatter; generalize is_string_like to accept + numpy and numpy.ma string array scalars. - RM and EF + +2008-11-09 + Fix a possible EINTR problem in dviread, which might help when saving pdf + files from the qt backend. - JKS + +2008-11-05 + Fix bug with zoom to rectangle and twin axes - MGD + +2008-10-24 + Added Jae Joon's fancy arrow, box and annotation enhancements -- see + examples/pylab_examples/annotation_demo2.py + +2008-10-23 + Autoscaling is now supported with shared axes - EF + +2008-10-23 + Fixed exception in dviread that happened with Minion - JKS + +2008-10-21 + set_xlim, ylim now return a copy of the viewlim array to avoid modify + inplace surprises + +2008-10-20 + Added image thumbnail generating function matplotlib.image.thumbnail. See + examples/misc/image_thumbnail.py - JDH + +2008-10-20 + Applied scatleg patch based on ideas and work by Erik Tollerud and Jae-Joon + Lee. - MM + +2008-10-11 + Fixed bug in pdf backend: if you pass a file object for output instead of a + filename, e.g., in a wep app, we now flush the object at the end. - JKS + +2008-10-08 + Add path simplification support to paths with gaps. - EF + +2008-10-05 + Fix problem with AFM files that don't specify the font's full name or + family name. - JKS + +2008-10-04 + Added 'scilimits' kwarg to Axes.ticklabel_format() method, for easy access + to the set_powerlimits method of the major ScalarFormatter. - EF + +2008-10-04 + Experimental new kwarg borderpad to replace pad in legend, based on + suggestion by Jae-Joon Lee. - EF + +2008-09-27 + Allow spy to ignore zero values in sparse arrays, based on patch by Tony + Yu. Also fixed plot to handle empty data arrays, and fixed handling of + markers in figlegend. - EF + +2008-09-24 + Introduce drawstyles for lines. Transparently split linestyles like + 'steps--' into drawstyle 'steps' and linestyle '--'. Legends always use + drawstyle 'default'. - MM + +2008-09-18 + Fixed quiver and quiverkey bugs (failure to scale properly when resizing) + and added additional methods for determining the arrow angles - EF + +2008-09-18 + Fix polar interpolation to handle negative values of theta - MGD + +2008-09-14 + Reorganized cbook and mlab methods related to numerical calculations that + have little to do with the goals of those two modules into a separate + module numerical_methods.py Also, added ability to select points and stop + point selection with keyboard in ginput and manual contour labeling code. + Finally, fixed contour labeling bug. - DMK + +2008-09-11 + Fix backtick in Postscript output. - MGD + +2008-09-10 + [ 2089958 ] Path simplification for vector output backends Leverage the + simplification code exposed through path_to_polygons to simplify certain + well-behaved paths in the vector backends (PDF, PS and SVG). + "path.simplify" must be set to True in matplotlibrc for this to work. + - MGD + +2008-09-10 + Add "filled" kwarg to Path.intersects_path and Path.intersects_bbox. - MGD + +2008-09-07 + Changed full arrows slightly to avoid an xpdf rendering problem reported by + Friedrich Hagedorn. - JKS + +2008-09-07 + Fix conversion of quadratic to cubic Bezier curves in PDF and PS backends. + Patch by Jae-Joon Lee. - JKS + +2008-09-06 + Added 5-point star marker to plot command - EF + +2008-09-05 + Fix hatching in PS backend - MGD + +2008-09-03 + Fix log with base 2 - MGD + +2008-09-01 + Added support for bilinear interpolation in NonUniformImage; patch by + Gregory Lielens. - EF + +2008-08-28 + Added support for multiple histograms with data of different length - MM + +2008-08-28 + Fix step plots with log scale - MGD + +2008-08-28 + Fix masked arrays with markers in non-Agg backends - MGD + +2008-08-28 + Fix clip_on kwarg so it actually works correctly - MGD + +2008-08-25 + Fix locale problems in SVG backend - MGD + +2008-08-22 + fix quiver so masked values are not plotted - JSW + +2008-08-18 + improve interactive pan/zoom in qt4 backend on windows - DSD + +2008-08-11 + Fix more bugs in NaN/inf handling. In particular, path simplification + (which does not handle NaNs or infs) will be turned off automatically when + infs or NaNs are present. Also masked arrays are now converted to arrays + with NaNs for consistent handling of masks and NaNs - MGD and EF + +------------------------ + +2008-08-03 + Released 0.98.3 at svn r5947 + +2008-08-01 + Backported memory leak fixes in _ttconv.cpp - MGD + +2008-07-31 + Added masked array support to griddata. - JSW + +2008-07-26 + Added optional C and reduce_C_function arguments to axes.hexbin(). This + allows hexbin to accumulate the values of C based on the x,y coordinates + and display in hexagonal bins. - ADS + +2008-07-24 + Deprecated (raise NotImplementedError) all the mlab2 functions from + matplotlib.mlab out of concern that some of them were not clean room + implementations. JDH + +2008-07-24 + Rewrite of a significant portion of the clabel code (class ContourLabeler) + to improve inlining. - DMK + +2008-07-22 + Added Barbs polygon collection (similar to Quiver) for plotting wind barbs. + Added corresponding helpers to Axes and pyplot as well. + (examples/pylab_examples/barb_demo.py shows it off.) - RMM + +2008-07-21 + Added scikits.delaunay as matplotlib.delaunay. Added griddata function in + matplotlib.mlab, with example (griddata_demo.py) in pylab_examples. + griddata function will use mpl_toolkits._natgrid if installed. - JSW + +2008-07-21 + Re-introduced offset_copy that works in the context of the new transforms. + - MGD + +2008-07-21 + Committed patch by Ryan May to add get_offsets and set_offsets to + Collections base class - EF + +2008-07-21 + Changed the "asarray" strategy in image.py so that colormapping of masked + input should work for all image types (thanks Klaus Zimmerman) - EF + +2008-07-20 + Rewrote cbook.delete_masked_points and corresponding unit test to support + rgb color array inputs, datetime inputs, etc. - EF + +2008-07-20 + Renamed unit/axes_unit.py to cbook_unit.py and modified in accord with + Ryan's move of delete_masked_points from axes to cbook. - EF + +2008-07-18 + Check for nan and inf in axes.delete_masked_points(). This should help + hexbin and scatter deal with nans. - ADS + +2008-07-17 + Added ability to manually select contour label locations. Also added a + waitforbuttonpress function. - DMK + +2008-07-17 + Fix bug with NaNs at end of path (thanks, Andrew Straw for the report) - + MGD + +2008-07-16 + Improve error handling in texmanager, thanks to Ian Henry for reporting - + DSD + +2008-07-12 + Added support for external backends with the "module://my_backend" syntax - + JDH + +2008-07-11 + Fix memory leak related to shared axes. Grouper should store weak + references. - MGD + +2008-07-10 + Bugfix: crash displaying fontconfig pattern - MGD + +2008-07-10 + Bugfix: [ 2013963 ] update_datalim_bounds in Axes not works - MGD + +2008-07-10 + Bugfix: [ 2014183 ] multiple imshow() causes gray edges - MGD + +2008-07-09 + Fix rectangular axes patch on polar plots bug - MGD + +2008-07-09 + Improve mathtext radical rendering - MGD + +2008-07-08 + Improve mathtext superscript placement - MGD + +2008-07-07 + Fix custom scales in pcolormesh (thanks Matthew Turk) - MGD + +2008-07-03 + Implemented findobj method for artist and pyplot - see + examples/pylab_examples/findobj_demo.py - JDH + +2008-06-30 + Another attempt to fix TextWithDash - DSD + +2008-06-30 + Removed Qt4 NavigationToolbar2.destroy -- it appears to have been + unnecessary and caused a bug reported by P. Raybaut - DSD + +2008-06-27 + Fixed tick positioning bug - MM + +2008-06-27 + Fix dashed text bug where text was at the wrong end of the dash - MGD + +2008-06-26 + Fix mathtext bug for expressions like $x_{\leftarrow}$ - MGD + +2008-06-26 + Fix direction of horizontal/vertical hatches - MGD + +2008-06-25 + Figure.figurePatch renamed Figure.patch, Axes.axesPatch renamed Axes.patch, + Axes.axesFrame renamed Axes.frame, Axes.get_frame, which returns + Axes.patch, is deprecated. Examples and users guide updated - JDH + +2008-06-25 + Fix rendering quality of pcolor - MGD + +---------------------------- + +2008-06-24 + Released 0.98.2 at svn r5667 - (source only for debian) JDH + +2008-06-24 + Added "transparent" kwarg to savefig. - MGD + +2008-06-24 + Applied Stefan's patch to draw a single centered marker over a line with + numpoints==1 - JDH + +2008-06-23 + Use splines to render circles in scatter plots - MGD + +---------------------------- + +2008-06-22 + Released 0.98.1 at revision 5637 + +2008-06-22 + Removed axes3d support and replaced it with a NotImplementedError for one + release cycle + +2008-06-21 + fix marker placement bug in backend_ps - DSD + +2008-06-20 + [ 1978629 ] scale documentation missing/incorrect for log - MGD + +2008-06-20 + Added closed kwarg to PolyCollection. Fixes bug [ 1994535 ] still missing + lines on graph with svn (r 5548). - MGD + +2008-06-20 + Added set/get_closed method to Polygon; fixes error in hist - MM + +2008-06-19 + Use relative font sizes (e.g., 'medium' and 'large') in rcsetup.py and + matplotlibrc.template so that text will be scaled by default when changing + rcParams['font.size'] - EF + +2008-06-17 + Add a generic PatchCollection class that can contain any kind of patch. - + MGD + +2008-06-13 + Change pie chart label alignment to avoid having labels overwrite the pie - + MGD + +2008-06-12 + Added some helper functions to the mathtext parser to return bitmap arrays + or write pngs to make it easier to use mathtext outside the context of an + mpl figure. modified the mathpng sphinxext to use the mathtext png save + functionality - see examples/api/mathtext_asarray.py - JDH + +2008-06-11 + Use matplotlib.mathtext to render math expressions in online docs - MGD + +2008-06-11 + Move PNG loading/saving to its own extension module, and remove duplicate + code in _backend_agg.cpp and _image.cpp that does the same thing - MGD + +2008-06-11 + Numerous mathtext bugfixes, primarily related to dpi-independence - MGD + +2008-06-10 + Bar now applies the label only to the first patch only, and sets + '_nolegend_' for the other patch labels. This lets autolegend work as + expected for hist and bar - see + \https://sourceforge.net/tracker/index.php?func=detail&aid=1986597&group_id=80706&atid=560720 + JDH + +2008-06-10 + Fix text baseline alignment bug. [ 1985420 ] Repair of baseline alignment + in Text._get_layout. Thanks Stan West - MGD + +2008-06-09 + Committed Gregor's image resample patch to downsampling images with new + rcparam image.resample - JDH + +2008-06-09 + Don't install Enthought.Traits along with matplotlib. For matplotlib + developers convenience, it can still be installed by setting an option in + setup.cfg while we figure decide if there is a future for the traited + config - DSD + +2008-06-09 + Added range keyword arg to hist() - MM + +2008-06-07 + Moved list of backends to rcsetup.py; made use of lower case for backend + names consistent; use validate_backend when importing backends subpackage - + EF + +2008-06-06 + hist() revision, applied ideas proposed by Erik Tollerud and Olle + Engdegard: make histtype='step' unfilled by default and introduce + histtype='stepfilled'; use default color cycle; introduce reverse + cumulative histogram; new align keyword - MM + +2008-06-06 + Fix closed polygon patch and also provide the option to not close the + polygon - MGD + +2008-06-05 + Fix some dpi-changing-related problems with PolyCollection, as called by + Axes.scatter() - MGD + +2008-06-05 + Fix image drawing so there is no extra space to the right or bottom - MGD + +2006-06-04 + Added a figure title command suptitle as a Figure method and pyplot command + -- see examples/figure_title.py - JDH + +2008-06-02 + Added support for log to hist with histtype='step' and fixed a bug for + log-scale stacked histograms - MM + +----------------------------- + +2008-05-29 + Released 0.98.0 at revision 5314 + +2008-05-29 + matplotlib.image.imread now no longer always returns RGBA -- if the image + is luminance or RGB, it will return a MxN or MxNx3 array if possible. Also + uint8 is no longer always forced to float. + +2008-05-29 + Implement path clipping in PS backend - JDH + +2008-05-29 + Fixed two bugs in texmanager.py: improved comparison of dvipng versions + fixed a bug introduced when get_grey method was added - DSD + +2008-05-28 + Fix crashing of PDFs in xpdf and ghostscript when two-byte characters are + used with Type 3 fonts - MGD + +2008-05-28 + Allow keyword args to configure widget properties as requested in + \http://sourceforge.net/tracker/index.php?func=detail&aid=1866207&group_id=80706&atid=560722 + - JDH + +2008-05-28 + Replaced '-' with u'\\u2212' for minus sign as requested in + \http://sourceforge.net/tracker/index.php?func=detail&aid=1962574&group_id=80706&atid=560720 + +2008-05-28 + zero width/height Rectangles no longer influence the autoscaler. Useful + for log histograms with empty bins - JDH + +2008-05-28 + Fix rendering of composite glyphs in Type 3 conversion (particularly as + evidenced in the Eunjin.ttf Korean font) Thanks Jae-Joon Lee for finding + this! + +2008-05-27 + Rewrote the cm.ScalarMappable callback infrastructure to use + cbook.CallbackRegistry rather than custom callback handling. Any users of + add_observer/notify of the cm.ScalarMappable should use the + cm.ScalarMappable.callbacksSM CallbackRegistry instead. JDH + +2008-05-27 + Fix TkAgg build on Ubuntu 8.04 (and hopefully a more general solution for + other platforms, too.) + +2008-05-24 + Added PIL support for loading images to imread (if PIL is available) - JDH + +2008-05-23 + Provided a function and a method for controlling the plot color cycle. - EF + +2008-05-23 + Major revision of hist(). Can handle 2D arrays and create stacked histogram + plots; keyword 'width' deprecated and rwidth (relative width) introduced; + align='edge' changed to center of bin - MM + +2008-05-22 + Added support for ReST-based documentation using Sphinx. Documents are + located in doc/, and are broken up into a users guide and an API reference. + To build, run the make.py files. Sphinx-0.4 is needed to build generate + xml, which will be useful for rendering equations with mathml, use sphinx + from svn until 0.4 is released - DSD + +2008-05-21 + Fix segfault in TkAgg backend - MGD + +2008-05-21 + Fix a "local variable unreferenced" bug in plotfile - MM + +2008-05-19 + Fix crash when Windows cannot access the registry to determine font path + [Bug 1966974, thanks Patrik Simons] - MGD + +2008-05-16 + removed some unneeded code w/ the python 2.4 requirement. cbook no longer + provides compatibility for reversed, enumerate, set or izip. removed + lib/subprocess, mpl1, sandbox/units, and the swig code. This stuff should + remain on the maintenance branch for archival purposes. JDH + +2008-05-16 + Reorganized examples dir - JDH + +2008-05-16 + Added 'elinewidth' keyword arg to errorbar, based on patch by Christopher + Brown - MM + +2008-05-16 + Added 'cumulative' keyword arg to hist to plot cumulative histograms. For + normed hists, this is normalized to one - MM + +2008-05-15 + Fix Tk backend segfault on some machines - MGD + +2008-05-14 + Don't use stat on Windows (fixes font embedding problem) - MGD + +2008-05-09 + Fix /singlequote (') in Postscript backend - MGD + +2008-05-08 + Fix kerning in SVG when embedding character outlines - MGD + +2008-05-07 + Switched to future numpy histogram semantic in hist - MM + +2008-05-06 + Fix strange colors when blitting in QtAgg and Qt4Agg - MGD + +2008-05-05 + pass notify_axes_change to the figure's add_axobserver in the qt backends, + like we do for the other backends. Thanks Glenn Jones for the report - DSD + +2008-05-02 + Added step histograms, based on patch by Erik Tollerud. - MM + +2008-05-02 + On PyQt <= 3.14 there is no way to determine the underlying Qt version. + [1851364] - MGD + +2008-05-02 + Don't call sys.exit() when pyemf is not found [1924199] - MGD + +2008-05-02 + Update _subprocess.c from upstream Python 2.5.2 to get a few memory and + reference-counting-related bugfixes. See bug 1949978. - MGD + +2008-04-30 + Added some record array editing widgets for gtk -- see + examples/rec_edit*.py - JDH + +2008-04-29 + Fix bug in mlab.sqrtm - MM + +2008-04-28 + Fix bug in SVG text with Mozilla-based viewers (the symbol tag is not + supported) - MGD + +2008-04-27 + Applied patch by Michiel de Hoon to add hexbin axes method and pyplot + function - EF + +2008-04-25 + Enforce python >= 2.4; remove subprocess build - EF + +2008-04-25 + Enforce the numpy requirement at build time - JDH + +2008-04-24 + Make numpy 1.1 and python 2.3 required when importing matplotlib - EF + +2008-04-24 + Fix compilation issues on VS2003 (Thanks Martin Spacek for all the help) - + MGD + +2008-04-24 + Fix sub/superscripts when the size of the font has been changed - MGD + +2008-04-22 + Use "svg.embed_char_paths" consistently everywhere - MGD + +2008-04-20 + Add support to MaxNLocator for symmetric axis autoscaling. - EF + +2008-04-20 + Fix double-zoom bug. - MM + +2008-04-15 + Speed up colormapping. - EF + +2008-04-12 + Speed up zooming and panning of dense images. - EF + +2008-04-11 + Fix global font rcParam setting after initialization time. - MGD + +2008-04-11 + Revert commits 5002 and 5031, which were intended to avoid an unnecessary + call to draw(). 5002 broke saving figures before show(). 5031 fixed the + problem created in 5002, but broke interactive plotting. Unnecessary call + to draw still needs resolution - DSD + +2008-04-07 + Improve color validation in rc handling, suggested by Lev Givon - EF + +2008-04-02 + Allow to use both linestyle definition arguments, '-' and 'solid' etc. in + plots/collections - MM + +2008-03-27 + Fix saving to Unicode filenames with Agg backend (other backends appear to + already work...) (Thanks, Christopher Barker) - MGD + +2008-03-26 + Fix SVG backend bug that prevents copying and pasting in Inkscape (thanks + Kaushik Ghose) - MGD + +2008-03-24 + Removed an unnecessary call to draw() in the backend_qt* mouseReleaseEvent. + Thanks to Ted Drain - DSD + +2008-03-23 + Fix a pdf backend bug which sometimes caused the outermost gsave to not be + balanced with a grestore. - JKS + +2008-03-20 + Fixed a minor bug in ContourSet._process_linestyles when + len(linestyles)==Nlev - MM + +2008-03-19 + Changed ma import statements to "from numpy import ma"; this should work + with past and future versions of numpy, whereas "import numpy.ma as ma" + will work only with numpy >= 1.05, and "import numerix.npyma as ma" is + obsolete now that maskedarray is replacing the earlier implementation, as + of numpy 1.05. + +2008-03-14 + Removed an apparently unnecessary call to FigureCanvasAgg.draw in + backend_qt*agg. Thanks to Ted Drain - DSD + +2008-03-10 + Workaround a bug in backend_qt4agg's blitting due to a buffer width/bbox + width mismatch in _backend_agg's copy_from_bbox - DSD + +2008-02-29 + Fix class Wx toolbar pan and zoom functions (Thanks Jeff Peery) - MGD + +2008-02-16 + Added some new rec array functionality to mlab (rec_summarize, rec2txt and + rec_groupby). See examples/rec_groupby_demo.py. Thanks to Tim M for + rec2txt. + +2008-02-12 + Applied Erik Tollerud's span selector patch - JDH + +2008-02-11 + Update plotting() doc string to refer to getp/setp. - JKS + +2008-02-10 + Fixed a problem with square roots in the pdf backend with usetex. - JKS + +2008-02-08 + Fixed minor __str__ bugs so getp(gca()) works. - JKS + +2008-02-05 + Added getters for title, xlabel, ylabel, as requested by Brandon Kieth - EF + +2008-02-05 + Applied Gael's ginput patch and created examples/ginput_demo.py - JDH + +2008-02-03 + Expose interpnames, a list of valid interpolation methods, as an AxesImage + class attribute. - EF + +2008-02-03 + Added BoundaryNorm, with examples in colorbar_only.py and image_masked.py. + - EF + +2008-02-03 + Force dpi=72 in pdf backend to fix picture size bug. - JKS + +2008-02-01 + Fix doubly-included font problem in Postscript backend - MGD + +2008-02-01 + Fix reference leak in ft2font Glyph objects. - MGD + +2008-01-31 + Don't use unicode strings with usetex by default - DSD + +2008-01-31 + Fix text spacing problems in PDF backend with *some* fonts, such as + STIXGeneral. + +2008-01-31 + Fix \sqrt with radical number (broken by making [ and ] work below) - MGD + +2008-01-27 + Applied Martin Teichmann's patch to improve the Qt4 backend. Uses Qt's + builtin toolbars and statusbars. See bug 1828848 - DSD + +2008-01-10 + Moved toolkits to mpl_toolkits, made mpl_toolkits a namespace package - + JSWHIT + +2008-01-10 + Use setup.cfg to set the default parameters (tkagg, numpy) when building + windows installers - DSD + +2008-01-10 + Fix bug displaying [ and ] in mathtext - MGD + +2008-01-10 + Fix bug when displaying a tick value offset with scientific notation. + (Manifests itself as a warning that the \times symbol cannot be found). - + MGD + +2008-01-10 + Use setup.cfg to set the default parameters (tkagg, numpy) when building + windows installers - DSD + +-------------------- + +2008-01-06 + Released 0.91.2 at revision 4802 + +2007-12-26 + Reduce too-late use of matplotlib.use() to a warning instead of an + exception, for backwards compatibility - EF + +2007-12-25 + Fix bug in errorbar, identified by Noriko Minakawa - EF + +2007-12-25 + Changed masked array importing to work with the upcoming numpy 1.05 (now + the maskedarray branch) as well as with earlier versions. - EF + +2007-12-16 + rec2csv saves doubles without losing precision. Also, it does not close + filehandles passed in open. - JDH,ADS + +2007-12-13 + Moved rec2gtk to matplotlib.toolkits.gtktools and rec2excel to + matplotlib.toolkits.exceltools - JDH + +2007-12-12 + Support alpha-blended text in the Agg and Svg backends - MGD + +2007-12-10 + Fix SVG text rendering bug. - MGD + +2007-12-10 + Increase accuracy of circle and ellipse drawing by using an 8-piece bezier + approximation, rather than a 4-piece one. Fix PDF, SVG and Cairo backends + so they can draw paths (meaning ellipses as well). - MGD + +2007-12-07 + Issue a warning when drawing an image on a non-linear axis. - MGD + +2007-12-06 + let widgets.Cursor initialize to the lower x and y bounds rather than 0,0, + which can cause havoc for dates and other transforms - DSD + +2007-12-06 + updated references to mpl data directories for py2exe - DSD + +2007-12-06 + fixed a bug in rcsetup, see bug 1845057 - DSD + +2007-12-05 + Fix how fonts are cached to avoid loading the same one multiple times. + (This was a regression since 0.90 caused by the refactoring of + font_manager.py) - MGD + +2007-12-05 + Support arbitrary rotation of usetex text in Agg backend. - MGD + +2007-12-04 + Support '|' as a character in mathtext - MGD + +----------------------------------------------------- + +2007-11-27 + Released 0.91.1 at revision 4517 + +----------------------------------------------------- + +2007-11-27 + Released 0.91.0 at revision 4478 + +2007-11-13 + All backends now support writing to a file-like object, not just a regular + file. savefig() can be passed a file-like object in place of a file path. + - MGD + +2007-11-13 + Improved the default backend selection at build time: SVG -> Agg -> TkAgg + -> WXAgg -> GTK -> GTKAgg. The last usable backend in this progression will + be chosen in the default config file. If a backend is defined in setup.cfg, + that will be the default backend - DSD + +2007-11-13 + Improved creation of default config files at build time for traited config + package - DSD + +2007-11-12 + Exposed all the build options in setup.cfg. These options are read into a + dict called "options" by setupext.py. Also, added "-mpl" tags to the + version strings for packages provided by matplotlib. Versions provided by + mpl will be identified and updated on subsequent installs - DSD + +2007-11-12 + Added support for STIX fonts. A new rcParam, mathtext.fontset, can be used + to choose between: + + 'cm' + The TeX/LaTeX Computer Modern fonts + 'stix' + The STIX fonts (see stixfonts.org) + 'stixsans' + The STIX fonts, using sans-serif glyphs by default + 'custom' + A generic Unicode font, in which case the mathtext font must be + specified using mathtext.bf, mathtext.it, mathtext.sf etc. + + Added a new example, stix_fonts_demo.py to show how to access different + fonts and unusual symbols. - MGD + +2007-11-12 + Options to disable building backend extension modules moved from setup.py + to setup.cfg - DSD + +2007-11-09 + Applied Martin Teichmann's patch 1828813: a QPainter is used in paintEvent, + which has to be destroyed using the method end(). If matplotlib raises an + exception before the call to end - and it does if you feed it with bad data + - this method end() is never called and Qt4 will start spitting error + messages + +2007-11-09 + Moved pyparsing back into matplotlib namespace. Don't use system pyparsing, + API is too variable from one release to the next - DSD + +2007-11-08 + Made pylab use straight numpy instead of oldnumeric by default - EF + +2007-11-08 + Added additional record array utilities to mlab (rec2excel, rec2gtk, + rec_join, rec_append_field, rec_drop_field) - JDH + +2007-11-08 + Updated pytz to version 2007g - DSD + +2007-11-08 + Updated pyparsing to version 1.4.8 - DSD + +2007-11-08 + Moved csv2rec to recutils and added other record array utilities - JDH + +2007-11-08 + If available, use existing pyparsing installation - DSD + +2007-11-07 + Removed old enthought.traits from lib/matplotlib, added Gael Varoquaux's + enthought.traits-2.6b1, which is stripped of setuptools. The package is + installed to site-packages if not already available - DSD + +2007-11-05 + Added easy access to minor tick properties; slight mod of patch by Pierre + G-M - EF + +2007-11-02 + Committed Phil Thompson's patch 1599876, fixes to Qt4Agg backend and qt4 + blitting demo - DSD + +2007-11-02 + Committed Phil Thompson's patch 1599876, fixes to Qt4Agg backend and qt4 + blitting demo - DSD + +2007-10-31 + Made log color scale easier to use with contourf; automatic level + generation now works. - EF + +2007-10-29 + TRANSFORMS REFACTORING + + The primary goal of this refactoring was to make it easier to extend + matplotlib to support new kinds of projections. This is primarily an + internal improvement, and the possible user-visible changes it allows are + yet to come. + + The transformation framework was completely rewritten in Python (with + Numpy). This will make it easier to add news kinds of transformations + without writing C/C++ code. + + Transforms are composed into a 'transform tree', made of transforms whose + value depends on other transforms (their children). When the contents of + children change, their parents are automatically updated to reflect those + changes. To do this an "invalidation" method is used: when children + change, all of their ancestors are marked as "invalid". When the value of + a transform is accessed at a later time, its value is recomputed only if it + is invalid, otherwise a cached value may be used. This prevents + unnecessary recomputations of transforms, and contributes to better + interactive performance. + + The framework can be used for both affine and non-affine transformations. + However, for speed, we want use the backend renderers to perform affine + transformations whenever possible. Therefore, it is possible to perform + just the affine or non-affine part of a transformation on a set of data. + The affine is always assumed to occur after the non-affine. For any + transform:: + + full transform == non-affine + affine + + Much of the drawing has been refactored in terms of compound paths. + Therefore, many methods have been removed from the backend interface and + replaced with a handful to draw compound paths. This will make updating + the backends easier, since there is less to update. It also should make + the backends more consistent in terms of functionality. + + User visible changes: + + - POLAR PLOTS: Polar plots are now interactively zoomable, and the r-axis + labels can be interactively rotated. Straight line segments are now + interpolated to follow the curve of the r-axis. + + - Non-rectangular clipping works in more backends and with more types of + objects. + + - Sharing an axis across figures is now done in exactly the same way as + sharing an axis between two axes in the same figure:: + + fig1 = figure() + fig2 = figure() + + ax1 = fig1.add_subplot(111) + ax2 = fig2.add_subplot(111, sharex=ax1, sharey=ax1) + + - linestyles now include steps-pre, steps-post and steps-mid. The old step + still works and is equivalent to step-pre. + + - Multiple line styles may be provided to a collection. + + See API_CHANGES for more low-level information about this refactoring. + +2007-10-24 + Added ax kwarg to Figure.colorbar and pyplot.colorbar - EF + +2007-10-19 + Removed a gsave/grestore pair surrounding _draw_ps, which was causing a + loss graphics state info (see "EPS output problem - scatter & edgecolors" + on mpl-dev, 2007-10-29) - DSD + +2007-10-15 + Fixed a bug in patches.Ellipse that was broken for aspect='auto'. Scale + free ellipses now work properly for equal and auto on Agg and PS, and they + fall back on a polygonal approximation for nonlinear transformations until + we convince ourselves that the spline approximation holds for nonlinear + transformations. Added unit/ellipse_compare.py to compare spline with + vertex approx for both aspects. JDH + +2007-10-05 + remove generator expressions from texmanager and mpltraits. generator + expressions are not supported by python-2.3 - DSD + +2007-10-01 + Made matplotlib.use() raise an exception if called after backends has been + imported. - EF + +2007-09-30 + Modified update* methods of Bbox and Interval so they work with reversed + axes. Prior to this, trying to set the ticks on a reversed axis failed + with an uninformative error message. - EF + +2007-09-30 + Applied patches to axes3d to fix index error problem - EF + +2007-09-24 + Applied Eike Welk's patch reported on mpl-dev on 2007-09-22 Fixes a bug + with multiple plot windows in the qt backend, ported the changes to + backend_qt4 as well - DSD + +2007-09-21 + Changed cbook.reversed to yield the same result as the python reversed + builtin - DSD + +2007-09-13 + The usetex support in the pdf backend is more usable now, so I am enabling + it. - JKS + +2007-09-12 + Fixed a Axes.bar unit bug - JDH + +2007-09-10 + Made skiprows=1 the default on csv2rec - JDH + +2007-09-09 + Split out the plotting part of pylab and put it in pyplot.py; removed + numerix from the remaining pylab.py, which imports everything from + pyplot.py. The intention is that apart from cleanups, the result of + importing from pylab is nearly unchanged, but there is the new alternative + of importing from pyplot to get the state-engine graphics without all the + numeric functions. Numpified examples; deleted two that were obsolete; + modified some to use pyplot. - EF + +2007-09-08 + Eliminated gd and paint backends - EF + +2007-09-06 + .bmp file format is now longer an alias for .raw + +2007-09-07 + Added clip path support to pdf backend. - JKS + +2007-09-06 + Fixed a bug in the embedding of Type 1 fonts in PDF. Now it doesn't crash + Preview.app. - JKS + +2007-09-06 + Refactored image saving code so that all GUI backends can save most image + types. See FILETYPES for a matrix of backends and their supported file + types. Backend canvases should no longer write their own print_figure() + method -- instead they should write a print_xxx method for each filetype + they can output and add an entry to their class-scoped filetypes + dictionary. - MGD + +2007-09-05 + Fixed Qt version reporting in setupext.py - DSD + +2007-09-04 + Embedding Type 1 fonts in PDF, and thus usetex support via dviread, sort of + works. To test, enable it by renaming _draw_tex to draw_tex. - JKS + +2007-09-03 + Added ability of errorbar show limits via caret or arrowhead ends on the + bars; patch by Manual Metz. - EF + +2007-09-03 + Created type1font.py, added features to AFM and FT2Font (see API_CHANGES), + started work on embedding Type 1 fonts in pdf files. - JKS + +2007-09-02 + Continued work on dviread.py. - JKS + +2007-08-16 + Added a set_extent method to AxesImage, allow data extent to be modified + after initial call to imshow - DSD + +2007-08-14 + Fixed a bug in pyqt4 subplots-adjust. Thanks to Xavier Gnata for the report + and suggested fix - DSD + +2007-08-13 + Use pickle to cache entire fontManager; change to using font_manager + module-level function findfont wrapper for the fontManager.findfont method + - EF + +2007-08-11 + Numpification and cleanup of mlab.py and some examples - EF + +2007-08-06 + Removed mathtext2 + +2007-07-31 + Refactoring of distutils scripts. + + - Will not fail on the entire build if an optional Python package (e.g., + Tkinter) is installed but its development headers are not (e.g., + tk-devel). Instead, it will continue to build all other extensions. + - Provide an overview at the top of the output to display what dependencies + and their versions were found, and (by extension) what will be built. + - Use pkg-config, when available, to find freetype2, since this was broken + on Mac OS-X when using MacPorts in a non- standard location. + +2007-07-30 + Reorganized configuration code to work with traited config objects. The new + config system is located in the matplotlib.config package, but it is + disabled by default. To enable it, set NEWCONFIG=True in + matplotlib.__init__.py. The new configuration system will still use the + old matplotlibrc files by default. To switch to the experimental, traited + configuration, set USE_TRAITED_CONFIG=True in config.__init__.py. + +2007-07-29 + Changed default pcolor shading to flat; added aliases to make collection + kwargs agree with setter names, so updating works; related minor cleanups. + Removed quiver_classic, scatter_classic, pcolor_classic. - EF + +2007-07-26 + Major rewrite of mathtext.py, using the TeX box layout model. + + There is one (known) backward incompatible change. The font commands + (\cal, \rm, \it, \tt) now behave as TeX does: they are in effect until the + next font change command or the end of the grouping. Therefore uses of + $\cal{R}$ should be changed to ${\cal R}$. Alternatively, you may use the + new LaTeX-style font commands (\mathcal, \mathrm, \mathit, \mathtt) which + do affect the following group, e.g., $\mathcal{R}$. + + Other new features include: + + - Math may be interspersed with non-math text. Any text with an even + number of $'s (non-escaped) will be sent to the mathtext parser for + layout. + + - Sub/superscripts are less likely to accidentally overlap. + + - Support for sub/superscripts in either order, e.g., $x^i_j$ and $x_j^i$ + are equivalent. + + - Double sub/superscripts (e.g., $x_i_j$) are considered ambiguous and + raise an exception. Use braces to disambiguate. + + - $\frac{x}{y}$ can be used for displaying fractions. + + - $\sqrt[3]{x}$ can be used to display the radical symbol with a root + number and body. + + - $\left(\frac{x}{y}\right)$ may be used to create parentheses and other + delimiters that automatically resize to the height of their contents. + + - Spacing around operators etc. is now generally more like TeX. + + - Added support (and fonts) for boldface (\bf) and sans-serif (\sf) + symbols. + + - Log-like function name shortcuts are supported. For example, $\sin(x)$ + may be used instead of ${\rm sin}(x)$ + + - Limited use of kerning for the easy case (same font) + + Behind the scenes, the pyparsing.py module used for doing the math parsing + was updated to the latest stable version (1.4.6). A lot of duplicate code + was refactored out of the Font classes. + + - MGD + +2007-07-19 + completed numpification of most trivial cases - NN + +2007-07-19 + converted non-numpy relicts throughout the code - NN + +2007-07-19 + replaced the Python code in numerix/ by a minimal wrapper around numpy that + explicitly mentions all symbols that need to be addressed for further + numpification - NN + +2007-07-18 + make usetex respect changes to rcParams. texmanager used to only configure + itself when it was created, now it reconfigures when rcParams are changed. + Thank you Alexander Schmolck for contributing a patch - DSD + +2007-07-17 + added validation to setting and changing rcParams - DSD + +2007-07-17 + bugfix segfault in transforms module. Thanks Ben North for the patch. - ADS + +2007-07-16 + clean up some code in ticker.ScalarFormatter, use unicode to render + multiplication sign in offset ticklabel - DSD + +2007-07-16 + fixed a formatting bug in ticker.ScalarFormatter's scientific notation + (10^0 was being rendered as 10 in some cases) - DSD + +2007-07-13 + Add MPL_isfinite64() and MPL_isinf64() for testing doubles in (the now + misnamed) MPL_isnan.h. - ADS + +2007-07-13 + The matplotlib._isnan module removed (use numpy.isnan) - ADS + +2007-07-13 + Some minor cleanups in _transforms.cpp - ADS + +2007-07-13 + Removed the rest of the numerix extension code detritus, numpified axes.py, + and cleaned up the imports in axes.py - JDH + +2007-07-13 + Added legend.loc as configurable option that could in future default to + 'best'. - NN + +2007-07-12 + Bugfixes in mlab.py to coerce inputs into numpy arrays. -ADS + +2007-07-11 + Added linespacing kwarg to text.Text - EF + +2007-07-11 + Added code to store font paths in SVG files. - MGD + +2007-07-10 + Store subset of TTF font as a Type 3 font in PDF files. - MGD + +2007-07-09 + Store subset of TTF font as a Type 3 font in PS files. - MGD + +2007-07-09 + Applied Paul's pick restructure pick and add pickers, sourceforge patch + 1749829 - JDH + +2007-07-09 + Applied Allan's draw_lines agg optimization. JDH + +2007-07-08 + Applied Carl Worth's patch to fix cairo draw_arc - SC + +2007-07-07 + fixed bug 1712099: xpdf distiller on windows - DSD + +2007-06-30 + Applied patches to tkagg, gtk, and wx backends to reduce memory leakage. + Patches supplied by Mike Droettboom; see tracker numbers 1745400, 1745406, + 1745408. Also made unit/memleak_gui.py more flexible with command-line + options. - EF + +2007-06-30 + Split defaultParams into separate file rcdefaults (together with validation + code). Some heavy refactoring was necessary to do so, but the overall + behavior should be the same as before. - NN + +2007-06-27 + Added MPLCONFIGDIR for the default location for mpl data and configuration. + useful for some apache installs where HOME is not writable. Tried to clean + up the logic in _get_config_dir to support non-writable HOME where are + writable HOME/.matplotlib already exists - JDH + +2007-06-27 + Fixed locale bug reported at + \http://sourceforge.net/tracker/index.php?func=detail&aid=1744154&group_id=80706&atid=560720 + by adding a cbook.unicode_safe function - JDH + +2007-06-27 + Applied Micheal's tk savefig bugfix described at + \http://sourceforge.net/tracker/index.php?func=detail&aid=1716732&group_id=80706&atid=560720 + Thanks Michael! + +2007-06-27 + Patch for get_py2exe_datafiles() to work with new directory layout. (Thanks + Tocer and also Werner Bruhin.) -ADS + +2007-06-27 + Added a scroll event to the mpl event handling system and implemented it + for backends GTK* -- other backend users/developers/maintainers, please add + support for your backend. - JDH + +2007-06-25 + Changed default to clip=False in colors.Normalize; modified ColorbarBase + for easier colormap display - EF + +2007-06-13 + Added maskedarray option to rc, numerix - EF + +2007-06-11 + Python 2.5 compatibility fix for mlab.py - EF + +2007-06-10 + In matplotlibrc file, use 'dashed' | 'solid' instead of a pair of floats + for contour.negative_linestyle - EF + +2007-06-08 + Allow plot and fill fmt string to be any mpl string colorspec - EF + +2007-06-08 + Added gnuplot file plotfile function to pylab -- see + examples/plotfile_demo.py - JDH + +2007-06-07 + Disable build of numarray and Numeric extensions for internal MPL use and + the numerix layer. - ADS + +2007-06-07 + Added csv2rec to matplotlib.mlab to support automatically converting csv + files to record arrays using type introspection, and turned on native + datetime support using the new units support in matplotlib.dates. See + examples/loadrec.py ! JDH + +2007-06-07 + Simplified internal code of _auto_legend_data - NN + +2007-06-04 + Added labeldistance arg to Axes.pie to control the raidal distance of the + wedge labels - JDH + +2007-06-03 + Turned mathtext in SVG into single with multiple objects + (easier to edit in inkscape). - NN + +---------------------------- + +2007-06-02 + Released 0.90.1 at revision 3352 + +2007-06-02 + Display only meaningful labels when calling legend() without args. - NN + +2007-06-02 + Have errorbar follow the color cycle even if line is not plotted. Suppress + plotting of errorbar caps for capsize=0. - NN + +2007-06-02 + Set markers to same alpha value as line. - NN + +2007-06-02 + Fix mathtext position in svg backend. - NN + +2007-06-01 + Deprecate Numeric and numarray for use as numerix. Props to Travis -- job + well done. - ADS + +2007-05-18 + Added LaTeX unicode support. Enable with the 'text.latex.unicode' rcParam. + This requires the ucs and inputenc LaTeX packages. - ADS + +2007-04-23 + Fixed some problems with polar -- added general polygon clipping to clip + the lines and grids to the polar axes. Added support for set_rmax to + easily change the maximum radial grid. Added support for polar legend - + JDH + +2007-04-16 + Added Figure.autofmt_xdate to handle adjusting the bottom and rotating the + tick labels for date plots when the ticks often overlap - JDH + +2007-04-09 + Beginnings of usetex support for pdf backend. -JKS + +2007-04-07 + Fixed legend/LineCollection bug. Added label support to collections. - EF + +2007-04-06 + Removed deprecated support for a float value as a gray-scale; now it must + be a string, like '0.5'. Added alpha kwarg to ColorConverter.to_rgba_list. + - EF + +2007-04-06 + Fixed rotation of ellipses in pdf backend (sf bug #1690559) -JKS + +2007-04-04 + More matshow tweaks; documentation updates; new method set_bounds() for + formatters and locators. - EF + +2007-04-02 + Fixed problem with imshow and matshow of integer arrays; fixed problems + with changes to color autoscaling. - EF + +2007-04-01 + Made image color autoscaling work correctly with a tracking colorbar; + norm.autoscale now scales unconditionally, while norm.autoscale_None + changes only None-valued vmin, vmax. - EF + +2007-03-31 + Added a qt-based subplot-adjustment dialog - DSD + +2007-03-30 + Fixed a bug in backend_qt4, reported on mpl-dev - DSD + +2007-03-26 + Removed colorbar_classic from figure.py; fixed bug in Figure.clear() in which + _axobservers was not getting cleared. Modernization and cleanups. - EF + +2007-03-26 + Refactored some of the units support -- units now live in the respective x + and y Axis instances. See also API_CHANGES for some alterations to the + conversion interface. JDH + +2007-03-25 + Fix masked array handling in quiver.py for numpy. (Numeric and numarray + support for masked arrays is broken in other ways when using quiver. I + didn't pursue that.) - ADS + +2007-03-23 + Made font_manager.py close opened files. - JKS + +2007-03-22 + Made imshow default extent match matshow - EF + +2007-03-22 + Some more niceties for xcorr -- a maxlags option, normed now works for + xcorr as well as axorr, usevlines is supported, and a zero correlation + hline is added. See examples/xcorr_demo.py. Thanks Sameer for the patch. + - JDH + +2007-03-21 + Axes.vlines and Axes.hlines now create and returns a LineCollection, not a + list of lines. This is much faster. The kwarg signature has changed, so + consult the docs. Modified Axes.errorbar which uses vlines and hlines. + See API_CHANGES; the return signature for these three functions is now + different + +2007-03-20 + Refactored units support and added new examples - JDH + +2007-03-19 + Added Mike's units patch - JDH + +2007-03-18 + Matshow as an Axes method; test version matshow1() in pylab; added + 'integer' Boolean kwarg to MaxNLocator initializer to force ticks at + integer locations. - EF + +2007-03-17 + Preliminary support for clipping to paths agg - JDH + +2007-03-17 + Text.set_text() accepts anything convertible with '%s' - EF + +2007-03-14 + Add masked-array support to hist. - EF + +2007-03-03 + Change barh to take a kwargs dict and pass it to bar. Fixes sf bug + #1669506. + +2007-03-02 + Add rc parameter pdf.inheritcolor, which disables all color-setting + operations in the pdf backend. The idea is that you include the resulting + file in another program and set the colors (both stroke and fill color) + there, so you can use the same pdf file for e.g., a paper and a + presentation and have them in the surrounding color. You will probably not + want to draw figure and axis frames in that case, since they would be + filled in the same color. - JKS + +2007-02-26 + Prevent building _wxagg.so with broken Mac OS X wxPython. - ADS + +2007-02-23 + Require setuptools for Python 2.3 - ADS + +2007-02-22 + WXAgg accelerator updates - KM + + WXAgg's C++ accelerator has been fixed to use the correct wxBitmap + constructor. + + The backend has been updated to use new wxPython functionality to provide + fast blit() animation without the C++ accelerator. This requires wxPython + 2.8 or later. Previous versions of wxPython can use the C++ accelerator or + the old pure Python routines. + + setup.py no longer builds the C++ accelerator when wxPython >= 2.8 is + present. + + The blit() method is now faster regardless of which agg/wxPython conversion + routines are used. + +2007-02-21 + Applied the PDF backend patch by Nicolas Grilly. This impacts several + files and directories in matplotlib: + + - Created the directory lib/matplotlib/mpl-data/fonts/pdfcorefonts, holding + AFM files for the 14 PDF core fonts. These fonts are embedded in every + PDF viewing application. + + - setup.py: Added the directory pdfcorefonts to package_data. + + - lib/matplotlib/__init__.py: Added the default parameter + 'pdf.use14corefonts'. When True, the PDF backend uses only the 14 PDF + core fonts. + + - lib/matplotlib/afm.py: Added some keywords found in recent AFM files. + Added a little workaround to handle Euro symbol. + + - lib/matplotlib/fontmanager.py: Added support for the 14 PDF core fonts. + These fonts have a dedicated cache (file pdfcorefont.cache), not the same + as for other AFM files (file .afmfont.cache). Also cleaned comments to + conform to CODING_GUIDE. + + - lib/matplotlib/backends/backend_pdf.py: Added support for 14 PDF core + fonts. Fixed some issues with incorrect character widths and encodings + (works only for the most common encoding, WinAnsiEncoding, defined by the + official PDF Reference). Removed parameter 'dpi' because it causes + alignment issues. + + -JKS (patch by Nicolas Grilly) + +2007-02-17 + Changed ft2font.get_charmap, and updated all the files where get_charmap is + mentioned - ES + +2007-02-13 + Added barcode demo- JDH + +2007-02-13 + Added binary colormap to cm - JDH + +2007-02-13 + Added twiny to pylab - JDH + +2007-02-12 + Moved data files into lib/matplotlib so that setuptools' develop mode + works. Re-organized the mpl-data layout so that this source structure is + maintained in the installation. (i.e., the 'fonts' and 'images' + sub-directories are maintained in site-packages.) Suggest removing + site-packages/matplotlib/mpl-data and ~/.matplotlib/ttffont.cache before + installing - ADS + +2007-02-07 + Committed Rob Hetland's patch for qt4: remove references to + text()/latin1(), plus some improvements to the toolbar layout - DSD + +--------------------------- + +2007-02-06 + Released 0.90.0 at revision 3003 + +2007-01-22 + Extended the new picker API to text, patches and patch collections. Added + support for user customizable pick hit testing and attribute tagging of the + PickEvent - Details and examples in examples/pick_event_demo.py - JDH + +2007-01-16 + Begun work on a new pick API using the mpl event handling framework. + Artists will define their own pick method with a configurable epsilon + tolerance and return pick attrs. All artists that meet the tolerance + threshold will fire a PickEvent with artist dependent attrs; e.g., a Line2D + can set the indices attribute that shows the indices into the line that are + within epsilon of the pick point. See examples/pick_event_demo.py. The + implementation of pick for the remaining Artists remains to be done, but + the core infrastructure at the level of event handling is in place with a + proof-of-concept implementation for Line2D - JDH + +2007-01-16 + src/_image.cpp: update to use Py_ssize_t (for 64-bit systems). Use return + value of fread() to prevent warning messages - SC. + +2007-01-15 + src/_image.cpp: combine buffer_argb32() and buffer_bgra32() into a new + method color_conv(format) - SC + +2007-01-14 + backend_cairo.py: update draw_arc() so that examples/arctest.py looks + correct - SC + +2007-01-12 + backend_cairo.py: enable clipping. Update draw_image() so that + examples/contour_demo.py looks correct - SC + +2007-01-12 + backend_cairo.py: fix draw_image() so that examples/image_demo.py now looks + correct - SC + +2007-01-11 + Added Axes.xcorr and Axes.acorr to plot the cross correlation of x vs. y or + the autocorrelation of x. pylab wrappers also provided. See + examples/xcorr_demo.py - JDH + +2007-01-10 + Added "Subplot.label_outer" method. It will set the visibility of the + ticklabels so that yticklabels are only visible in the first column and + xticklabels are only visible in the last row - JDH + +2007-01-02 + Added additional kwarg documentation - JDH + +2006-12-28 + Improved error message for nonpositive input to log transform; added log + kwarg to bar, barh, and hist, and modified bar method to behave sensibly by + default when the ordinate has a log scale. (This only works if the log + scale is set before or by the call to bar, hence the utility of the log + kwarg.) - EF + +2006-12-27 + backend_cairo.py: update draw_image() and _draw_mathtext() to work with + numpy - SC + +2006-12-20 + Fixed xpdf dependency check, which was failing on windows. Removed ps2eps + dependency check. - DSD + +2006-12-19 + Added Tim Leslie's spectral patch - JDH + +2006-12-17 + Added rc param 'axes.formatter.limits' to control the default threshold for + switching to scientific notation. Added convenience method + Axes.ticklabel_format() for turning scientific notation on or off on either + or both axes. - EF + +2006-12-16 + Added ability to turn control scientific notation in ScalarFormatter - EF + +2006-12-16 + Enhanced boxplot to handle more flexible inputs - EF + +2006-12-13 + Replaced calls to where() in colors.py with much faster clip() and + putmask() calls; removed inappropriate uses of getmaskorNone (which should + be needed only very rarely); all in response to profiling by David + Cournapeau. Also fixed bugs in my 2-D array support from 12-09. - EF + +2006-12-09 + Replaced spy and spy2 with the new spy that combines marker and image + capabilities - EF + +2006-12-09 + Added support for plotting 2-D arrays with plot: columns are plotted as in + Matlab - EF + +2006-12-09 + Added linewidth kwarg to bar and barh; fixed arg checking bugs - EF + +2006-12-07 + Made pcolormesh argument handling match pcolor; fixed kwarg handling + problem noted by Pierre GM - EF + +2006-12-06 + Made pcolor support vector X and/or Y instead of requiring 2-D arrays - EF + +2006-12-05 + Made the default Artist._transform None (rather than invoking + identity_transform for each artist only to have it overridden later). Use + artist.get_transform() rather than artist._transform, even in derived + classes, so that the default transform will be created lazily as needed - + JDH + +2006-12-03 + Added LogNorm to colors.py as illustrated by examples/pcolor_log.py, based + on suggestion by Jim McDonald. Colorbar modified to handle LogNorm. Norms + have additional "inverse" method. - EF + +2006-12-02 + Changed class names in colors.py to match convention: normalize -> + Normalize, no_norm -> NoNorm. Old names are still available. Changed + __init__.py rc defaults to match those in matplotlibrc - EF + +2006-11-22 + Fixed bug in set_*lim that I had introduced on 11-15 - EF + +2006-11-22 + Added examples/clippedline.py, which shows how to clip line data based on + view limits -- it also changes the marker style when zoomed in - JDH + +2006-11-21 + Some spy bug-fixes and added precision arg per Robert C's suggestion - JDH + +2006-11-19 + Added semi-automatic docstring generation detailing all the kwargs that + functions take using the artist introspection tools; e.g., 'help text now + details the scatter kwargs that control the Text properties - JDH + +2006-11-17 + Removed obsolete scatter_classic, leaving a stub to raise + NotImplementedError; same for pcolor_classic - EF + +2006-11-15 + Removed obsolete pcolor_classic - EF + +2006-11-15 + Fixed 1588908 reported by Russel Owen; factored nonsingular method out of + ticker.py, put it into transforms.py as a function, and used it in set_xlim + and set_ylim. - EF + +2006-11-14 + Applied patch 1591716 by Ulf Larssen to fix a bug in apply_aspect. + Modified and applied patch 1594894 by mdehoon to fix bugs and improve + formatting in lines.py. Applied patch 1573008 by Greg Willden to make psd + etc. plot full frequency range for complex inputs. - EF + +2006-11-14 + Improved the ability of the colorbar to track changes in corresponding + image, pcolor, or contourf. - EF + +2006-11-11 + Fixed bug that broke Numeric compatibility; added support for alpha to + colorbar. The alpha information is taken from the mappable object, not + specified as a kwarg. - EF + +2006-11-05 + Added broken_barh function for making a sequence of horizontal bars broken + by gaps -- see examples/broken_barh.py + +2006-11-05 + Removed lineprops and markerprops from the Annotation code and replaced + them with an arrow configurable with kwarg arrowprops. See + examples/annotation_demo.py - JDH + +2006-11-02 + Fixed a pylab subplot bug that was causing axes to be deleted with hspace + or wspace equals zero in subplots_adjust - JDH + +2006-10-31 + Applied axes3d patch 1587359 + \http://sourceforge.net/tracker/index.php?func=detail&aid=1587359&group_id=80706&atid=560722 + JDH + +------------------------- + +2006-10-26 + Released 0.87.7 at revision 2835 + +2006-10-25 + Made "tiny" kwarg in Locator.nonsingular much smaller - EF + +2006-10-17 + Closed sf bug 1562496 update line props dash/solid/cap/join styles - JDH + +2006-10-17 + Complete overhaul of the annotations API and example code - See + matplotlib.text.Annotation and examples/annotation_demo.py JDH + +2006-10-12 + Committed Manuel Metz's StarPolygon code and examples/scatter_star_poly.py + - JDH + +2006-10-11 + commented out all default values in matplotlibrc.template Default values + should generally be taken from defaultParam in __init__.py - the file + matplotlib should only contain those values that the user wants to + explicitly change from the default. (see thread "marker color handling" on + matplotlib-devel) + +2006-10-10 + Changed default comment character for load to '#' - JDH + +2006-10-10 + deactivated rcfile-configurability of markerfacecolor and markeredgecolor. + Both are now hardcoded to the special value 'auto' to follow the line + color. Configurability at run-time (using function arguments) remains + functional. - NN + +2006-10-07 + introduced dummy argument magnification=1.0 to FigImage.make_image to + satisfy unit test figimage_demo.py The argument is not yet handled + correctly, which should only show up when using non-standard DPI settings + in PS backend, introduced by patch #1562394. - NN + +2006-10-06 + add backend-agnostic example: simple3d.py - NN + +2006-09-29 + fix line-breaking for SVG-inline images (purely cosmetic) - NN + +2006-09-29 + reworked set_linestyle and set_marker markeredgecolor and markerfacecolor + now default to a special value "auto" that keeps the color in sync with the + line color further, the intelligence of axes.plot is cleaned up, improved + and simplified. Complete compatibility cannot be guaranteed, but the new + behavior should be much more predictable (see patch #1104615 for details) - + NN + +2006-09-29 + changed implementation of clip-path in SVG to work around a limitation in + inkscape - NN + +2006-09-29 + added two options to matplotlibrc: + + - svg.image_inline + - svg.image_noscale + + see patch #1533010 for details - NN + +2006-09-29 + axes.py: cleaned up kwargs checking - NN + +2006-09-29 + setup.py: cleaned up setup logic - NN + +2006-09-29 + setup.py: check for required pygtk versions, fixes bug #1460783 - SC + +--------------------------------- + +2006-09-27 + Released 0.87.6 at revision 2783 + +2006-09-24 + Added line pointers to the Annotation code, and a pylab interface. See + matplotlib.text.Annotation, examples/annotation_demo.py and + examples/annotation_demo_pylab.py - JDH + +2006-09-18 + mathtext2.py: The SVG backend now supports the same things that the AGG + backend does. Fixed some bugs with rendering, and out of bounds errors in + the AGG backend - ES. Changed the return values of math_parse_s_ft2font_svg + to support lines (fractions etc.) + +2006-09-17 + Added an Annotation class to facilitate annotating objects and an examples + file examples/annotation_demo.py. I want to add dash support as in + TextWithDash, but haven't decided yet whether inheriting from TextWithDash + is the right base class or if another approach is needed - JDH + +------------------------------ + +2006-09-05 + Released 0.87.5 at revision 2761 + +2006-09-04 + Added nxutils for some numeric add-on extension code -- specifically a + better/more efficient inside polygon tester (see unit/inside_poly_*.py) - + JDH + +2006-09-04 + Made bitstream fonts the rc default - JDH + +2006-08-31 + Fixed alpha-handling bug in ColorConverter, affecting collections in + general and contour/contourf in particular. - EF + +2006-08-30 + ft2font.cpp: Added draw_rect_filled method (now used by mathtext2 to draw + the fraction bar) to FT2Font - ES + +2006-08-29 + setupext.py: wrap calls to tk.getvar() with str(). On some systems, getvar + returns a Tcl_Obj instead of a string - DSD + +2006-08-28 + mathtext2.py: Sub/superscripts can now be complex (i.e. fractions etc.). + The demo is also updated - ES + +2006-08-28 + font_manager.py: Added /usr/local/share/fonts to list of X11 font + directories - DSD + +2006-08-28 + mathtext2.py: Initial support for complex fractions. Also, rendering is now + completely separated from parsing. The sub/superscripts now work better. + Updated the mathtext2_demo.py - ES + +2006-08-27 + qt backends: don't create a QApplication when backend is imported, do it + when the FigureCanvasQt is created. Simplifies applications where mpl is + embedded in qt. Updated embedding_in_qt* examples - DSD + +2006-08-27 + mathtext2.py: Now the fonts are searched in the OS font dir and in the + mpl-data dir. Also env is not a dict anymore. - ES + +2006-08-26 + minor changes to __init__.py, mathtex2_demo.py. Added matplotlibrc key + "mathtext.mathtext2" (removed the key "mathtext2") - ES + +2006-08-21 + mathtext2.py: Initial support for fractions Updated the mathtext2_demo.py + _mathtext_data.py: removed "\" from the unicode dicts mathtext.py: Minor + modification (because of _mathtext_data.py)- ES + +2006-08-20 + Added mathtext2.py: Replacement for mathtext.py. Supports _ ^, \rm, \cal + etc., \sin, \cos etc., unicode, recursive nestings, inline math mode. The + only backend currently supported is Agg __init__.py: added new rc params + for mathtext2 added mathtext2_demo.py example - ES + +2006-08-19 + Added embedding_in_qt4.py example - DSD + +2006-08-11 + Added scale free Ellipse patch for Agg - CM + +2006-08-10 + Added converters to and from julian dates to matplotlib.dates (num2julian + and julian2num) - JDH + +2006-08-08 + Fixed widget locking so multiple widgets could share the event handling - + JDH + +2006-08-07 + Added scale free Ellipse patch to SVG and PS - CM + +2006-08-05 + Re-organized imports in numerix for numpy 1.0b2 -- TEO + +2006-08-04 + Added draw_markers to PDF backend. - JKS + +2006-08-01 + Fixed a bug in postscript's rendering of dashed lines - DSD + +2006-08-01 + figure.py: savefig() update docstring to add support for 'format' argument. + backend_cairo.py: print_figure() add support 'format' argument. - SC + +2006-07-31 + Don't let postscript's xpdf distiller compress images - DSD + +2006-07-31 + Added shallowcopy() methods to all Transformations; removed + copy_bbox_transform and copy_bbox_transform_shallow from transforms.py; + added offset_copy() function to transforms.py to facilitate positioning + artists with offsets. See examples/transoffset.py. - EF + +2006-07-31 + Don't let postscript's xpdf distiller compress images - DSD + +2006-07-29 + Fixed numerix polygon bug reported by Nick Fotopoulos. Added + inverse_numerix_xy() transform method. Made autoscale_view() preserve axis + direction (e.g., increasing down).- EF + +2006-07-28 + Added shallow bbox copy routine for transforms -- mainly useful for copying + transforms to apply offset to. - JDH + +2006-07-28 + Added resize method to FigureManager class for Qt and Gtk backend - CM + +2006-07-28 + Added subplots_adjust button to Qt backend - CM + +2006-07-26 + Use numerix more in collections. Quiver now handles masked arrays. - EF + +2006-07-22 + Fixed bug #1209354 - DSD + +2006-07-22 + make scatter() work with the kwarg "color". Closes bug 1285750 - DSD + +2006-07-20 + backend_cairo.py: require pycairo 1.2.0. print_figure() update to output + SVG using cairo. + +2006-07-19 + Added blitting for Qt4Agg - CM + +2006-07-19 + Added lasso widget and example examples/lasso_demo.py - JDH + +2006-07-18 + Added blitting for QtAgg backend - CM + +2006-07-17 + Fixed bug #1523585: skip nans in semilog plots - DSD + +2006-07-12 + Add support to render the scientific notation label over the right-side + y-axis - DSD + +------------------------------ + +2006-07-11 + Released 0.87.4 at revision 2558 + +2006-07-07 + Fixed a usetex bug with older versions of latex - DSD + +2006-07-07 + Add compatibility for NumPy 1.0 - TEO + +2006-06-29 + Added a Qt4Agg backend. Thank you James Amundson - DSD + +2006-06-26 + Fixed a usetex bug. On Windows, usetex will process postscript output in + the current directory rather than in a temp directory. This is due to the + use of spaces and tildes in windows paths, which cause problems with latex. + The subprocess module is no longer used. - DSD + +2006-06-22 + Various changes to bar(), barh(), and hist(). Added 'edgecolor' keyword + arg to bar() and barh(). The x and y args in barh() have been renamed to + width and bottom respectively, and their order has been swapped to maintain + a (position, value) order ala matlab. left, height, width and bottom args + can now all be scalars or sequences. barh() now defaults to edge alignment + instead of center alignment. Added a keyword arg 'align' to bar(), barh() + and hist() that controls between edge or center bar alignment. Fixed + ignoring the rcParams['patch.facecolor'] for bar color in bar() and barh(). + Fixed ignoring the rcParams['lines.color'] for error bar color in bar() and + barh(). Fixed a bug where patches would be cleared when error bars were + plotted if rcParams['axes.hold'] was False. - MAS + +2006-06-22 + Added support for numerix 2-D arrays as alternatives to a sequence of (x,y) + tuples for specifying paths in collections, quiver, contour, pcolor, + transforms. Fixed contour bug involving setting limits for colormapping. + Added numpy-style all() to numerix. - EF + +2006-06-20 + Added custom FigureClass hook to pylab interface - see + examples/custom_figure_class.py + +2006-06-16 + Added colormaps from gist (gist_earth, gist_stern, gist_rainbow, gist_gray, + gist_yarg, gist_heat, gist_ncar) - JW + +2006-06-16 + Added a pointer to parent in figure canvas so you can access the container + with fig.canvas.manager. Useful if you want to set the window title, e.g., + in gtk fig.canvas.manager.window.set_title, though a GUI neutral method + would be preferable JDH + +2006-06-16 + Fixed colorbar.py to handle indexed colors (i.e., norm = no_norm()) by + centering each colored region on its index. - EF + +2006-06-15 + Added scalex and scaley to Axes.autoscale_view to support selective + autoscaling just the x or y axis, and supported these command in plot so + you can say plot(something, scaley=False) and just the x axis will be + autoscaled. Modified axvline and axhline to support this, so for example + axvline will no longer autoscale the y axis. JDH + +2006-06-13 + Fix so numpy updates are backward compatible - TEO + +2006-06-12 + Updated numerix to handle numpy restructuring of oldnumeric - TEO + +2006-06-12 + Updated numerix.fft to handle numpy restructuring Added ImportError to + numerix.linear_algebra for numpy -TEO + +2006-06-11 + Added quiverkey command to pylab and Axes, using QuiverKey class in + quiver.py. Changed pylab and Axes to use quiver2 if possible, but drop + back to the newly-renamed quiver_classic if necessary. Modified + examples/quiver_demo.py to illustrate the new quiver and quiverkey. + Changed LineCollection implementation slightly to improve compatibility + with PolyCollection. - EF + +2006-06-11 + Fixed a usetex bug for windows, running latex on files with spaces in their + names or paths was failing - DSD + +2006-06-09 + Made additions to numerix, changes to quiver to make it work with all + numeric flavors. - EF + +2006-06-09 + Added quiver2 function to pylab and method to axes, with implementation via + a Quiver class in quiver.py. quiver2 will replace quiver before the next + release; it is placed alongside it initially to facilitate testing and + transition. See also examples/quiver2_demo.py. - EF + +2006-06-08 + Minor bug fix to make ticker.py draw proper minus signs with usetex - DSD + +----------------------- + +2006-06-06 + Released 0.87.3 at revision 2432 + +2006-05-30 + More partial support for polygons with outline or fill, but not both. Made + LineCollection inherit from ScalarMappable. - EF + +2006-05-29 + Yet another revision of aspect-ratio handling. - EF + +2006-05-27 + Committed a patch to prevent stroking zero-width lines in the svg backend - + DSD + +2006-05-24 + Fixed colorbar positioning bug identified by Helge Avlesen, and improved + the algorithm; added a 'pad' kwarg to control the spacing between colorbar + and parent axes. - EF + +2006-05-23 + Changed color handling so that collection initializers can take any mpl + color arg or sequence of args; deprecated float as grayscale, replaced by + string representation of float. - EF + +2006-05-19 + Fixed bug: plot failed if all points were masked - EF + +2006-05-19 + Added custom symbol option to scatter - JDH + +2006-05-18 + New example, multi_image.py; colorbar fixed to show offset text when the + ScalarFormatter is used; FixedFormatter augmented to accept and display + offset text. - EF + +2006-05-14 + New colorbar; old one is renamed to colorbar_classic. New colorbar code is + in colorbar.py, with wrappers in figure.py and pylab.py. Fixed + aspect-handling bug reported by Michael Mossey. Made + backend_bases.draw_quad_mesh() run.- EF + +2006-05-08 + Changed handling of end ranges in contourf: replaced "clip-ends" kwarg with + "extend". See docstring for details. -EF + +2006-05-08 + Added axisbelow to rc - JDH + +2006-05-08 + If using PyGTK require version 2.2+ - SC + +2006-04-19 + Added compression support to PDF backend, controlled by new pdf.compression + rc setting. - JKS + +2006-04-19 + Added Jouni's PDF backend + +2006-04-18 + Fixed a bug that caused agg to not render long lines + +2006-04-16 + Masked array support for pcolormesh; made pcolormesh support the same + combinations of X,Y,C dimensions as pcolor does; improved (I hope) + description of grid used in pcolor, pcolormesh. - EF + +2006-04-14 + Reorganized axes.py - EF + +2006-04-13 + Fixed a bug Ryan found using usetex with sans-serif fonts and exponential + tick labels - DSD + +2006-04-11 + Refactored backend_ps and backend_agg to prevent module-level texmanager + imports. Now these imports only occur if text.usetex rc setting is true - + DSD + +2006-04-10 + Committed changes required for building mpl on win32 platforms with visual + studio. This allows wxpython blitting for fast animations. - CM + +2006-04-10 + Fixed an off-by-one bug in Axes.change_geometry. + +2006-04-10 + Fixed bug in pie charts where wedge wouldn't have label in legend. + Submitted by Simon Hildebrandt. - ADS + +2006-05-06 + Usetex makes temporary latex and dvi files in a temporary directory, rather + than in the user's current working directory - DSD + +2006-04-05 + Applied Ken's wx deprecation warning patch closing sf patch #1465371 - JDH + +2006-04-05 + Added support for the new API in the postscript backend. Allows values to + be masked using nan's, and faster file creation - DSD + +2006-04-05 + Use python's subprocess module for usetex calls to external programs. + subprocess catches when they exit abnormally so an error can be raised. - + DSD + +2006-04-03 + Fixed the bug in which widgets would not respond to events. This regressed + the twinx functionality, so I also updated subplots_adjust to update axes + that share an x or y with a subplot instance. - CM + +2006-04-02 + Moved PBox class to transforms and deleted pbox.py; made pylab axis command + a thin wrapper for Axes.axis; more tweaks to aspect-ratio handling; fixed + Axes.specgram to account for the new imshow default of unit aspect ratio; + made contour set the Axes.dataLim. - EF + +2006-03-31 + Fixed the Qt "Underlying C/C++ object deleted" bug. - JRE + +2006-03-31 + Applied Vasily Sulatskov's Qt Navigation Toolbar enhancement. - JRE + +2006-03-31 + Ported Norbert's rewriting of Halldor's stineman_interp algorithm to make + it numerix compatible and added code to matplotlib.mlab. See + examples/interp_demo.py - JDH + +2006-03-30 + Fixed a bug in aspect ratio handling; blocked potential crashes when + panning with button 3; added axis('image') support. - EF + +2006-03-28 + More changes to aspect ratio handling; new PBox class in new file pbox.py + to facilitate resizing and repositioning axes; made PolarAxes maintain unit + aspect ratio. - EF + +2006-03-23 + Refactored TextWithDash class to inherit from, rather than delegate to, the + Text class. Improves object inspection and closes bug # 1357969 - DSD + +2006-03-22 + Improved aspect ratio handling, including pylab interface. Interactive + resizing, pan, zoom of images and plots (including panels with a shared + axis) should work. Additions and possible refactoring are still likely. - + EF + +2006-03-21 + Added another colorbrewer colormap (RdYlBu) - JSWHIT + +2006-03-21 + Fixed tickmarks for logscale plots over very large ranges. Closes bug # + 1232920 - DSD + +2006-03-21 + Added Rob Knight's arrow code; see examples/arrow_demo.py - JDH + +2006-03-20 + Added support for masking values with nan's, using ADS's isnan module and + the new API. Works for \*Agg backends - DSD + +2006-03-20 + Added contour.negative_linestyle rcParam - ADS + +2006-03-20 + Added _isnan extension module to test for nan with Numeric - ADS + +2006-03-17 + Added Paul and Alex's support for faceting with quadmesh in sf patch + 1411223 - JDH + +2006-03-17 + Added Charle Twardy's pie patch to support colors=None. Closes sf patch + 1387861 - JDH + +2006-03-17 + Applied sophana's patch to support overlapping axes with toolbar navigation + by toggling activation with the 'a' key. Closes sf patch 1432252 - JDH + +2006-03-17 + Applied Aarre's linestyle patch for backend EMF; closes sf patch 1449279 - + JDH + +2006-03-17 + Applied Jordan Dawe's patch to support kwarg properties for grid lines in + the grid command. Closes sf patch 1451661 - JDH + +2006-03-17 + Center postscript output on page when using usetex - DSD + +2006-03-17 + subprocess module built if Python <2.4 even if subprocess can be imported + from an egg - ADS + +2006-03-17 + Added _subprocess.c from Python upstream and hopefully enabled building + (without breaking) on Windows, although not tested. - ADS + +2006-03-17 + Updated subprocess.py to latest Python upstream and reverted name back to + subprocess.py - ADS + +2006-03-16 + Added John Porter's 3D handling code + +------------------------ + +2006-03-16 + Released 0.87.2 at revision 2150 + +2006-03-15 + Fixed bug in MaxNLocator revealed by daigos@infinito.it. The main change + is that Locator.nonsingular now adjusts vmin and vmax if they are nearly + the same, not just if they are equal. A new kwarg, "tiny", sets the + threshold. - EF + +2006-03-14 + Added import of compatibility library for newer numpy linear_algebra - TEO + +2006-03-12 + Extended "load" function to support individual columns and moved "load" and + "save" into matplotlib.mlab so they can be used outside of pylab -- see + examples/load_converter.py - JDH + +2006-03-12 + Added AutoDateFormatter and AutoDateLocator submitted by James Evans. Try + the load_converter.py example for a demo. - ADS + +2006-03-11 + Added subprocess module from python-2.4 - DSD + +2006-03-11 + Fixed landscape orientation support with the usetex option. The backend_ps + print_figure method was getting complicated, I added a _print_figure_tex + method to maintain some degree of sanity - DSD + +2006-03-11 + Added "papertype" savefig kwarg for setting postscript papersizes. + papertype and ps.papersize rc setting can also be set to "auto" to + autoscale pagesizes - DSD + +2006-03-09 + Apply P-J's patch to make pstoeps work on windows patch report # 1445612 - + DSD + +2006-03-09 + Make backend rc parameter case-insensitive - DSD + +2006-03-07 + Fixed bug in backend_ps related to C0-C6 papersizes, which were causing + problems with postscript viewers. Supported page sizes include letter, + legal, ledger, A0-A10, and B0-B10 - DSD + +------------------------------------ + +2006-03-07 + Released 0.87.1 + +2006-03-04 + backend_cairo.py: fix get_rgb() bug reported by Keith Briggs. Require + pycairo 1.0.2. Support saving png to file-like objects. - SC + +2006-03-03 + Fixed pcolor handling of vmin, vmax - EF + +2006-03-02 + improve page sizing with usetex with the latex geometry package. Closes bug + # 1441629 - DSD + +2006-03-02 + Fixed dpi problem with usetex png output. Accepted a modified version of + patch # 1441809 - DSD + +2006-03-01 + Fixed axis('scaled') to deal with case xmax < xmin - JSWHIT + +2006-03-01 + Added reversed colormaps (with '_r' appended to name) - JSWHIT + +2006-02-27 + Improved eps bounding boxes with usetex - DSD + +2006-02-27 + Test svn commit, again! + +2006-02-27 + Fixed two dependency checking bugs related to usetex on Windows - DSD + +2006-02-27 + Made the rc deprecation warnings a little more human readable. + +2006-02-26 + Update the previous gtk.main_quit() bug fix to use gtk.main_level() - SC + +2006-02-24 + Implemented alpha support in contour and contourf - EF + +2006-02-22 + Fixed gtk main quit bug when quit was called before mainloop. - JDH + +2006-02-22 + Small change to colors.py to workaround apparent bug in numpy masked array + module - JSWHIT + +2006-02-22 + Fixed bug in ScalarMappable.to_rgba() reported by Ray Jones, and fixed + incorrect fix found by Jeff Whitaker - EF + +-------------------------------- + +2006-02-22 + Released 0.87 + +2006-02-21 + Fixed portrait/landscape orientation in postscript backend - DSD + +2006-02-21 + Fix bug introduced in yesterday's bug fix - SC + +2006-02-20 + backend_gtk.py FigureCanvasGTK.draw(): fix bug reported by David + Tremouilles - SC + +2006-02-20 + Remove the "pygtk.require('2.4')" error from examples/embedding_in_gtk2.py + - SC + +2006-02-18 + backend_gtk.py FigureCanvasGTK.draw(): simplify to use (rather than + duplicate) the expose_event() drawing code - SC + +2006-02-12 + Added stagger or waterfall plot capability to LineCollection; illustrated + in examples/collections.py. - EF + +2006-02-11 + Massive cleanup of the usetex code in the postscript backend. Possibly + fixed the clipping issue users were reporting with older versions of + ghostscript - DSD + +2006-02-11 + Added autolim kwarg to axes.add_collection. Changed collection get_verts() + methods accordingly. - EF + +2006-02-09 + added a temporary rc parameter text.dvipnghack, to allow Mac users to get + nice results with the usetex option. - DSD + +2006-02-09 + Fixed a bug related to setting font sizes with the usetex option. - DSD + +2006-02-09 + Fixed a bug related to usetex's latex code. - DSD + +2006-02-09 + Modified behavior of font.size rc setting. You should define font.size in + pts, which will set the "medium" or default fontsize. Special text sizes + like axis labels or tick labels can be given relative font sizes like + small, large, x-large, etc. and will scale accordingly. - DSD + +2006-02-08 + Added py2exe specific datapath check again. Also added new py2exe helper + function get_py2exe_datafiles for use in py2exe setup.py scripts. - CM + +2006-02-02 + Added box function to pylab + +2006-02-02 + Fixed a problem in setupext.py, tk library formatted in unicode caused + build problems - DSD + +2006-02-01 + Dropped TeX engine support in usetex to focus on LaTeX. - DSD + +2006-01-29 + Improved usetex option to respect the serif, sans-serif, monospace, and + cursive rc settings. Removed the font.latex.package rc setting, it is no + longer required - DSD + +2006-01-29 + Fixed tex's caching to include font.family rc information - DSD + +2006-01-29 + Fixed subpixel rendering bug in \*Agg that was causing uneven gridlines - + JDH + +2006-01-28 + Added fontcmd to backend_ps's RendererPS.draw_tex, to support other font + families in eps output - DSD + +2006-01-28 + Added MaxNLocator to ticker.py, and changed contour.py to use it by + default. - EF + +2006-01-28 + Added fontcmd to backend_ps's RendererPS.draw_tex, to support other font + families in eps output - DSD + +2006-01-27 + Buffered reading of matplotlibrc parameters in order to allow 'verbose' + settings to be processed first (allows verbose.report during rc validation + process) - DSD + +2006-01-27 + Removed setuptools support from setup.py and created a separate setupegg.py + file to replace it. - CM + +2006-01-26 + Replaced the ugly datapath logic with a cleaner approach from + http://wiki.python.org/moin/DistutilsInstallDataScattered. Overrides the + install_data command. - CM + +2006-01-24 + Don't use character typecodes in cntr.c --- changed to use defined + typenumbers instead. - TEO + +2006-01-24 + Fixed some bugs in usetex's and ps.usedistiller's dependency + +2006-01-24 + Added masked array support to scatter - EF + +2006-01-24 + Fixed some bugs in usetex's and ps.usedistiller's dependency checking - DSD + +------------------------------- + +2006-01-24 + Released 0.86.2 + +2006-01-20 + Added a converters dict to pylab load to convert selected columns to float + -- especially useful for files with date strings, uses a datestr2num + converter - JDH + +2006-01-20 + Added datestr2num to matplotlib dates to convert a string or sequence of + strings to a matplotlib datenum + +2006-01-18 + Added quadrilateral pcolormesh patch 1409190 by Alex Mont and Paul Kienzle + -- this is \*Agg only for now. See examples/quadmesh_demo.py - JDH + +2006-01-18 + Added Jouni's boxplot patch - JDH + +2006-01-18 + Added comma delimiter for pylab save - JDH + +2006-01-12 + Added Ryan's legend patch - JDH + +2006-01-12 + Fixed numpy / numeric to use .dtype.char to keep in SYNC with numpy SVN + +--------------------------- + +2006-01-11 + Released 0.86.1 + +2006-01-11 + Fixed setup.py for win32 build and added rc template to the MANIFEST.in + +2006-01-10 + Added xpdf distiller option. matplotlibrc ps.usedistiller can now be none, + false, ghostscript, or xpdf. Validation checks for dependencies. This needs + testing, but the xpdf option should produce the highest-quality output and + small file sizes - DSD + +2006-01-10 + For the usetex option, backend_ps now does all the LaTeX work in the os's + temp directory - DSD + +2006-01-10 + Added checks for usetex dependencies. - DSD + +--------------------------------- + +2006-01-09 + Released 0.86 + +2006-01-04 + Changed to support numpy (new name for scipy_core) - TEO + +2006-01-04 + Added Mark's scaled axes patch for shared axis + +2005-12-28 + Added Chris Barker's build_wxagg patch - JDH + +2005-12-27 + Altered numerix/scipy to support new scipy package structure - TEO + +2005-12-20 + Fixed Jame's Boyles date tick reversal problem - JDH + +2005-12-20 + Added Jouni's rc patch to support lists of keys to set on - JDH + +2005-12-12 + Updated pyparsing and mathtext for some speed enhancements (Thanks Paul + McGuire) and minor fixes to scipy numerix and setuptools + +2005-12-12 + Matplotlib data is now installed as package_data in the matplotlib module. + This gets rid of checking the many possibilities in + matplotlib._get_data_path() - CM + +2005-12-11 + Support for setuptools/pkg_resources to build and use matplotlib as an egg. + Still allows matplotlib to exist using a traditional distutils install. - + ADS + +2005-12-03 + Modified setup to build matplotlibrc based on compile time findings. It + will set numerix in the order of scipy, numarray, Numeric depending on + which are founds, and backend as in preference order GTKAgg, WXAgg, TkAgg, + GTK, Agg, PS + +2005-12-03 + Modified scipy patch to support Numeric, scipy and numarray Some work + remains to be done because some of the scipy imports are broken if only the + core is installed. e.g., apparently we need from scipy.basic.fftpack + import * rather than from scipy.fftpack import * + +2005-12-03 + Applied some fixes to Nicholas Young's nonuniform image patch + +2005-12-01 + Applied Alex Gontmakher hatch patch - PS only for now + +2005-11-30 + Added Rob McMullen's EMF patch + +2005-11-30 + Added Daishi's patch for scipy + +2005-11-30 + Fixed out of bounds draw markers segfault in agg + +2005-11-28 + Got TkAgg blitting working 100% (cross fingers) correctly. - CM + +2005-11-27 + Multiple changes in cm.py, colors.py, figure.py, image.py, contour.py, + contour_demo.py; new _cm.py, examples/image_masked.py. + + 1. Separated the color table data from cm.py out into a new file, _cm.py, + to make it easier to find the actual code in cm.py and to add new + colormaps. Also added some line breaks to the color data dictionaries. + Everything from _cm.py is imported by cm.py, so the split should be + transparent. + 2. Enabled automatic generation of a colormap from a list of colors in + contour; see modified examples/contour_demo.py. + 3. Support for imshow of a masked array, with the ability to specify colors + (or no color at all) for masked regions, and for regions that are above + or below the normally mapped region. See examples/image_masked.py. + 4. In support of the above, added two new classes, ListedColormap, and + no_norm, to colors.py, and modified the Colormap class to include common + functionality. Added a clip kwarg to the normalize class. Reworked + color handling in contour.py, especially in the ContourLabeller mixin. + + - EF + +2005-11-25 + Changed text.py to ensure color is hashable. EF + +-------------------------------- + +2005-11-16 + Released 0.85 + +2005-11-16 + Changed the default linewidth in rc to 1.0 + +2005-11-16 + Replaced agg_to_gtk_drawable with pure pygtk pixbuf code in backend_gtkagg. + When the equivalent is doe for blit, the agg extension code will no longer + be needed + +2005-11-16 + Added a maxdict item to cbook to prevent caches from growing w/o bounds + +2005-11-15 + Fixed a colorup/colordown reversal bug in finance.py -- Thanks Gilles + +2005-11-15 + Applied Jouni K Steppanen's boxplot patch SF patch#1349997 - JDH + +2005-11-09 + added axisbelow attr for Axes to determine whether ticks and such are above + or below the actors + +2005-11-08 + Added Nicolas' irregularly spaced image patch + +2005-11-08 + Deprecated HorizontalSpanSelector and replaced with SpanSelection that + takes a third arg, direction. The new SpanSelector supports horizontal and + vertical span selection, and the appropriate min/max is returned. - CM + +2005-11-08 + Added lineprops dialog for gtk + +2005-11-03 + Added FIFOBuffer class to mlab to support real time feeds and + examples/fifo_buffer.py + +2005-11-01 + Contributed Nickolas Young's patch for afm mathtext to support mathtext + based upon the standard postscript Symbol font when ps.usetex = True. + +2005-10-26 + Added support for scatter legends - thanks John Gill + +2005-10-20 + Fixed image clipping bug that made some tex labels disappear. JDH + +2005-10-14 + Removed sqrt from dvipng 1.6 alpha channel mask. + +2005-10-14 + Added width kwarg to hist function + +2005-10-10 + Replaced all instances of os.rename with shutil.move + +2005-10-05 + Added Michael Brady's ydate patch + +2005-10-04 + Added rkern's texmanager patch + +2005-09-25 + contour.py modified to use a single ContourSet class that handles filled + contours, line contours, and labels; added keyword arg (clip_ends) to + contourf. Colorbar modified to work with new ContourSet object; if the + ContourSet has lines rather than polygons, the colorbar will follow suit. + Fixed a bug introduced in 0.84, in which contourf(...,colors=...) was + broken - EF + +------------------------------- + +2005-09-19 + Released 0.84 + +2005-09-14 + Added a new 'resize_event' which triggers a callback with a + backend_bases.ResizeEvent object - JDH + +2005-09-14 + font_manager.py: removed chkfontpath from x11FontDirectory() - SC + +2005-09-14 + Factored out auto date locator/formatter factory code into + matplotlib.date.date_ticker_factory; applies John Bryne's quiver patch. + +2005-09-13 + Added Mark's axes positions history patch #1286915 + +2005-09-09 + Added support for auto canvas resizing with:: + + fig.set_figsize_inches(9,5,forward=True) # inches + + OR:: + + fig.resize(400,300) # pixels + +2005-09-07 + figure.py: update Figure.draw() to use the updated renderer.draw_image() so + that examples/figimage_demo.py works again. examples/stock_demo.py: remove + data_clipping (which no longer exists) - SC + +2005-09-06 + Added Eric's tick.direction patch: in or out in rc + +2005-09-06 + Added Martin's rectangle selector widget + +2005-09-04 + Fixed a logic err in text.py that was preventing rgxsuper from matching - + JDH + +2005-08-29 + Committed Ken's wx blit patch #1275002 + +2005-08-26 + colorbar modifications - now uses contourf instead of imshow so that colors + used by contourf are displayed correctly. Added two new keyword args + (cspacing and clabels) that are only relevant for ContourMappable images - + JSWHIT + +2005-08-24 + Fixed a PS image bug reported by Darren - JDH + +2005-08-23 + colors.py: change hex2color() to accept unicode strings as well as normal + strings. Use isinstance() instead of types.IntType etc - SC + +2005-08-16 + removed data_clipping line and rc property - JDH + +2005-08-22 + backend_svg.py: Remove redundant "x=0.0 y=0.0" from svg element. Increase + svg version from 1.0 to 1.1. Add viewBox attribute to svg element to allow + SVG documents to scale-to-fit into an arbitrary viewport - SC + +2005-08-16 + Added Eric's dot marker patch - JDH + +2005-08-08 + Added blitting/animation for TkAgg - CM + +2005-08-05 + Fixed duplicate tickline bug - JDH + +2005-08-05 + Fixed a GTK animation bug that cropped up when doing animations in + gtk//gtkagg canvases that had widgets packed above them + +2005-08-05 + Added Clovis Goldemberg patch to the tk save dialog + +2005-08-04 + Removed origin kwarg from backend.draw_image. origin is handled entirely + by the frontend now. + +2005-07-03 + Fixed a bug related to TeX commands in backend_ps + +2005-08-03 + Fixed SVG images to respect upper and lower origins. + +2005-08-03 + Added flipud method to image and removed it from to_str. + +2005-07-29 + Modified figure.figaspect to take an array or number; modified backend_svg + to write utf-8 - JDH + +2005-07-30 + backend_svg.py: embed png image files in svg rather than linking to a + separate png file, fixes bug #1245306 (thanks to Norbert Nemec for the + patch) - SC + +--------------------------- + +2005-07-29 + Released 0.83.2 + +2005-07-27 + Applied SF patch 1242648: minor rounding error in IndexDateFormatter in + dates.py + +2005-07-27 + Applied sf patch 1244732: Scale axis such that circle looks like circle - + JDH + +2005-07-29 + Improved message reporting in texmanager and backend_ps - DSD + +2005-07-28 + backend_gtk.py: update FigureCanvasGTK.draw() (needed due to the recent + expose_event() change) so that examples/anim.py works in the usual way - SC + +2005-07-26 + Added new widgets Cursor and HorizontalSpanSelector to matplotlib.widgets. + See examples/widgets/cursor.py and examples/widgets/span_selector.py - JDH + +2005-07-26 + added draw event to mpl event hierarchy -- triggered on figure.draw + +2005-07-26 + backend_gtk.py: allow 'f' key to toggle window fullscreen mode + +2005-07-26 + backend_svg.py: write "<.../>" elements all on one line and remove surplus + spaces - SC + +2005-07-25 + backend_svg.py: simplify code by deleting GraphicsContextSVG and + RendererSVG.new_gc(), and moving the gc.get_capstyle() code into + RendererSVG._get_gc_props_svg() - SC + +2005-07-24 + backend_gtk.py: call FigureCanvasBase.motion_notify_event() on all + motion-notify-events, not just ones where a modifier key or button has been + pressed (fixes bug report from Niklas Volbers) - SC + +2005-07-24 + backend_gtk.py: modify print_figure() use own pixmap, fixing problems where + print_figure() overwrites the display pixmap. return False from all + button/key etc events - to allow the event to propagate further - SC + +2005-07-23 + backend_gtk.py: change expose_event from using set_back_pixmap(); clear() + to draw_drawable() - SC + +2005-07-23 + backend_gtk.py: removed pygtk.require() matplotlib/__init__.py: delete + 'FROZEN' and 'McPLError' which are no longer used - SC + +2005-07-22 + backend_gdk.py: removed pygtk.require() - SC + +2005-07-21 + backend_svg.py: Remove unused imports. Remove methods doc strings which + just duplicate the docs from backend_bases.py. Rename draw_mathtext to + _draw_mathtext. - SC + +2005-07-17 + examples/embedding_in_gtk3.py: new example demonstrating placing a + FigureCanvas in a gtk.ScrolledWindow - SC + +2005-07-14 + Fixed a Windows related bug (#1238412) in texmanager - DSD + +2005-07-11 + Fixed color kwarg bug, setting color=1 or 0 caused an exception - DSD + +2005-07-07 + Added Eric's MA set_xdata Line2D fix - JDH + +2005-07-06 + Made HOME/.matplotlib the new config dir where the matplotlibrc file, the + ttf.cache, and the tex.cache live. The new default filenames in + .matplotlib have no leading dot and are not hidden. e.g., the new names + are matplotlibrc tex.cache ttffont.cache. This is how ipython does it so + it must be right. If old files are found, a warning is issued and they are + moved to the new location. Also fixed texmanager to put all files, + including temp files in ~/.matplotlib/tex.cache, which allows you to usetex + in non-writable dirs. + +2005-07-05 + Fixed bug #1231611 in subplots adjust layout. The problem was that the + text caching mechanism was not using the transformation affine in the key. + - JDH + +2005-07-05 + Fixed default backend import problem when using API (SF bug # 1209354 - + see API_CHANGES for more info - JDH + +2005-07-04 + backend_gtk.py: require PyGTK version 2.0.0 or higher - SC + +2005-06-30 + setupext.py: added numarray_inc_dirs for building against numarray when not + installed in standard location - ADS + +2005-06-27 + backend_svg.py: write figure width, height as int, not float. Update to + fix some of the pychecker warnings - SC + +2005-06-23 + Updated examples/agg_test.py to demonstrate curved paths and fills - JDH + +2005-06-21 + Moved some texmanager and backend_agg tex caching to class level rather + than instance level - JDH + +2005-06-20 + setupext.py: fix problem where _nc_backend_gdk is installed to the wrong + directory - SC + +2005-06-19 + Added 10.4 support for CocoaAgg. - CM + +2005-06-18 + Move Figure.get_width_height() to FigureCanvasBase and return int instead + of float. - SC + +2005-06-18 + Applied Ted Drain's QtAgg patch: 1) Changed the toolbar to be a horizontal + bar of push buttons instead of a QToolbar and updated the layout algorithms + in the main window accordingly. This eliminates the ability to drag and + drop the toolbar and detach it from the window. 2) Updated the resize + algorithm in the main window to show the correct size for the plot widget + as requested. This works almost correctly right now. It looks to me like + the final size of the widget is off by the border of the main window but I + haven't figured out a way to get that information yet. We could just add a + small margin to the new size but that seems a little hacky. 3) Changed the + x/y location label to be in the toolbar like the Tk backend instead of as a + status line at the bottom of the widget. 4) Changed the toolbar pixmaps to + use the ppm files instead of the png files. I noticed that the Tk backend + buttons looked much nicer and it uses the ppm files so I switched them. + +2005-06-17 + Modified the gtk backend to not queue mouse motion events. This allows for + live updates when dragging a slider. - CM + +2005-06-17 + Added starter CocoaAgg backend. Only works on OS 10.3 for now and requires + PyObjC. (10.4 is high priority) - CM + +2005-06-17 + Upgraded pyparsing and applied Paul McGuire's suggestions for speeding + things up. This more than doubles the speed of mathtext in my simple + tests. JDH + +2005-06-16 + Applied David Cooke's subplot make_key patch + +---------------------------------- + +0.82 (2005-06-15) +----------------- + +2005-06-15 + Added subplot config tool to GTK* backends -- note you must now import the + NavigationToolbar2 from your backend of choice rather than from backend_gtk + because it needs to know about the backend specific canvas -- see + examples/embedding_in_gtk2.py. Ditto for wx backend -- see + examples/embedding_in_wxagg.py + +2005-06-15 + backend_cairo.py: updated to use pycairo 0.5.0 - SC + +2005-06-14 + Wrote some GUI neutral widgets (Button, Slider, RadioButtons, CheckButtons) + in matplotlib.widgets. See examples/widgets/\*.py - JDH + +2005-06-14 + Exposed subplot parameters as rc vars and as the fig SubplotParams instance + subplotpars. See figure.SubplotParams, figure.Figure.subplots_adjust and + the pylab method subplots_adjust and examples/subplots_adjust.py . Also + added a GUI neutral widget for adjusting subplots, see + examples/subplot_toolbar.py - JDH + +2005-06-13 + Exposed cap and join style for lines with new rc params and line properties:: + + lines.dash_joinstyle : miter # miter|round|bevel + lines.dash_capstyle : butt # butt|round|projecting + lines.solid_joinstyle : miter # miter|round|bevel + lines.solid_capstyle : projecting # butt|round|projecting + + +2005-06-13 + Added kwargs to Axes init + +2005-06-13 + Applied Baptiste's tick patch - JDH + +2005-06-13 + Fixed rc alias 'l' bug reported by Fernando by removing aliases for + mainlevel rc options. - JDH + +2005-06-10 + Fixed bug #1217637 in ticker.py - DSD + +2005-06-07 + Fixed a bug in texmanager.py: .aux files not being removed - DSD + +2005-06-08 + Added Sean Richard's hist binning fix -- see API_CHANGES - JDH + +2005-06-07 + Fixed a bug in texmanager.py: .aux files not being removed - DSD + + +---------------------- + +0.81 (2005-06-07) +----------------- + +2005-06-06 + Added autoscale_on prop to axes + +2005-06-06 + Added Nick's picker "among" patch - JDH + +2005-06-05 + Fixed a TeX/LaTeX font discrepancy in backend_ps. - DSD + +2005-06-05 + Added a ps.distill option in rc settings. If True, postscript output will + be distilled using ghostscript, which should trim the file size and allow + it to load more quickly. Hopefully this will address the issue of large ps + files due to font definitions. Tested with gnu-ghostscript-8.16. - DSD + +2005-06-03 + Improved support for tex handling of text in backend_ps. - DSD + +2005-06-03 + Added rc options to render text with tex or latex, and to select the latex + font package. - DSD + +2005-06-03 + Fixed a bug in ticker.py causing a ZeroDivisionError + +2005-06-02 + backend_gtk.py remove DBL_BUFFER, add line to expose_event to try to fix + pygtk 2.6 redraw problem - SC + +2005-06-01 + The default behavior of ScalarFormatter now renders scientific notation and + large numerical offsets in a label at the end of the axis. - DSD + +2005-06-01 + Added Nicholas' frombyte image patch - JDH + +2005-05-31 + Added vertical TeX support for agg - JDH + +2005-05-31 + Applied Eric's cntr patch - JDH + +2005-05-27 + Finally found the pesky agg bug (which Maxim was kind enough to fix within + hours) that was causing a segfault in the win32 cached marker drawing. Now + windows users can get the enormous performance benefits of cached markers + w/o those occasional pesy screenshots. - JDH + +2005-05-27 + Got win32 build system working again, using a more recent version of gtk + and pygtk in the win32 build, gtk 2.6 from + https://web.archive.org/web/20050527002647/https://www.gimp.org/~tml/gimp/win32/downloads.html + (you will also need libpng12.dll to use these). I haven't tested whether + this binary build of mpl for win32 will work with older gtk runtimes, so + you may need to upgrade. + +2005-05-27 + Fixed bug where 2nd wxapp could be started if using wxagg backend. - ADS + +2005-05-26 + Added Daishi text with dash patch -- see examples/dashtick.py + +2005-05-26 + Moved backend_latex functionality into backend_ps. If text.usetex=True, the + PostScript backend will use LaTeX to generate the .ps or .eps file. + Ghostscript is required for eps output. - DSD + +2005-05-24 + Fixed alignment and color issues in latex backend. - DSD + +2005-05-21 + Fixed raster problem for small rasters with dvipng -- looks like it was a + premultiplied alpha problem - JDH + +2005-05-20 + Added linewidth and faceted kwarg to scatter to control edgewidth and + color. Also added autolegend patch to inspect line segments. + +2005-05-18 + Added Orsay and JPL qt fixes - JDH + +2005-05-17 + Added a psfrag latex backend -- some alignment issues need to be worked + out. Run with -dLaTeX and a *.tex file and *.eps file are generated. latex + and dvips the generated latex file to get ps output. Note xdvi *does* not + work, you must generate ps.- JDH + +2005-05-13 + Added Florent Rougon's Axis set_label1 patch + +2005-05-17 + pcolor optimization, fixed bug in previous pcolor patch - JSWHIT + +2005-05-16 + Added support for masked arrays in pcolor - JSWHIT + + +2005-05-12 + Started work on TeX text for antigrain using pngdvi -- see + examples/tex_demo.py and the new module matplotlib.texmanager. Rotated + text not supported and rendering small glyphs is not working right yet. But + large fontsizes and/or high dpi saved figs work great. + +2005-05-10 + New image resize options interpolation options. New values for the interp + kwarg are + + 'nearest', 'bilinear', 'bicubic', 'spline16', 'spline36', + 'hanning', 'hamming', 'hermite', 'kaiser', 'quadric', + 'catrom', 'gaussian', 'bessel', 'mitchell', 'sinc', + 'lanczos', 'blackman' + + See help(imshow) for details, particularly the interpolation, filternorm + and filterrad kwargs + + +2005-05-10 + Applied Eric's contour mem leak fixes - JDH + +2005-05-10 + Extended python agg wrapper and started implementing backend_agg2, an agg + renderer based on the python wrapper. This will be more flexible and + easier to extend than the current backend_agg. See also + examples/agg_test.py - JDH + +2005-05-09 + Added Marcin's no legend patch to exclude lines from the autolegend builder:: + + plot(x, y, label='nolegend') + +2005-05-05 + Upgraded to agg23 + +2005-05-05 + Added newscalarformatter_demo.py to examples. -DSD + +2005-05-04 + Added NewScalarFormatter. Improved formatting of ticklabels, scientific + notation, and the ability to plot large numbers with small ranges, by + determining a numerical offset. See ticker.NewScalarFormatter for more + details. -DSD + +2005-05-03 + Added the option to specify a delimiter in pylab.load -DSD + +2005-04-28 + Added Darren's line collection example + +2005-04-28 + Fixed aa property in agg - JDH + +2005-04-27 + Set postscript page size in .matplotlibrc - DSD + +2005-04-26 + Added embedding in qt example. - JDH + +2005-04-14 + Applied Michael Brady's qt backend patch: 1) fix a bug where keyboard input + was grabbed by the figure and not released 2) turn on cursor changes 3) + clean up a typo and commented-out print statement. - JDH + +2005-04-14 + Applied Eric Firing's masked data lines patch and contour patch. Support + for masked arrays has been added to the plot command and to the Line2D + object. Only the valid points are plotted. A "valid_only" kwarg was added + to the get_xdata() and get_ydata() methods of Line2D; by default it is + False, so that the original data arrays are returned. Setting it to True + returns the plottable points. - see examples/masked_demo.py - JDH + +2005-04-13 + Applied Tim Leslie's arrow key event handling patch - JDH + +--------------------------- + +0.80 +---- + +2005-04-11 + Applied a variant of rick's xlim/ylim/axis patch. These functions now take + kwargs to let you selectively alter only the min or max if desired. e.g., + xlim(xmin=2) or axis(ymax=3). They always return the new lim. - JDH + + +2005-04-11 + Incorporated Werner's wx patch -- wx backend should be compatible with + wxpython2.4 and recent versions of 2.5. Some early versions of wxpython + 2.5 will not work because there was a temporary change in the dc API that + was rolled back to make it 2.4 compliant + +2005-04-11 + modified tkagg show so that new figure window pops up on call to figure + +2005-04-11 + fixed wxapp init bug + +2005-04-02 + updated backend_ps.draw_lines, draw_markers for use with the new API - DSD + +2005-04-01 + Added editable polygon example + +------------------------------ + +0.74 (2005-03-31) +----------------- + +2005-03-30 + Fixed and added checks for floating point inaccuracy in ticker.Base - DSD + +2005-03-30 + updated /ellipse definition in backend_ps.py to address bug #1122041 - DSD + +2005-03-29 + Added unicode support for Agg and PS - JDH + +2005-03-28 + Added Jarrod's svg patch for text - JDH + +2005-03-28 + Added Ludal's arrow and quiver patch - JDH + +2005-03-28 + Added label kwarg to Axes to facilitate forcing the creation of new Axes + with otherwise identical attributes + +2005-03-28 + Applied boxplot and OSX font search patches + +2005-03-27 + Added ft2font NULL check to fix Japanese font bug - JDH + +2005-03-27 + Added sprint legend patch plus John Gill's tests and fix -- see + examples/legend_auto.py - JDH + +--------------------------- + +0.73.1 (2005-03-19) +------------------- + +2005-03-19 + Reverted wxapp handling because it crashed win32 - JDH + +2005-03-18 + Add .number attribute to figure objects returned by figure() - FP + +--------------------------- + +0.73 (2005-03-18) +----------------- + +2005-03-16 + Fixed labelsep bug + +2005-03-16 + Applied Darren's ticker fix for small ranges - JDH + +2005-03-16 + Fixed tick on horiz colorbar - JDH + +2005-03-16 + Added Japanese winreg patch - JDH + +2005-03-15 + backend_gtkagg.py: changed to use double buffering, this fixes the problem + reported Joachim Berdal Haga - "Parts of plot lagging from previous frame + in animation". Tested with anim.py and it makes no noticeable difference to + performance (23.7 before, 23.6 after) - SC + +2005-03-14 + add src/_backend_gdk.c extension to provide a substitute function for + pixbuf.get_pixels_array(). Currently pixbuf.get_pixels_array() only works + with Numeric, and then only works if pygtk has been compiled with Numeric + support. The change provides a function pixbuf_get_pixels_array() which + works with Numeric and numarray and is always available. It means that + backend_gtk should be able to display images and mathtext in all + circumstances. - SC + +2005-03-11 + Upgraded CXX to 5.3.1 + +2005-03-10 + remove GraphicsContextPS.set_linestyle() and + GraphicsContextSVG.set_linestyle() since they do no more than the base + class GraphicsContext.set_linestyle() - SC + +2005-03-09 + Refactored contour functionality into dedicated module + +2005-03-09 + Added Eric's contourf updates and Nadia's clabel functionality + +2005-03-09 + Moved colorbar to figure.Figure to expose it for API developers - JDH + +2005-03-09 + backend_cairo.py: implemented draw_markers() - SC + +2005-03-09 + cbook.py: only use enumerate() (the python version) if the builtin version + is not available. Add new function 'izip' which is set to itertools.izip + if available and the python equivalent if not available. - SC + +2005-03-07 + backend_gdk.py: remove PIXELS_PER_INCH from points_to_pixels(), but still + use it to adjust font sizes. This allows the GTK version of line_styles.py + to more closely match GTKAgg, previously the markers were being drawn too + large. - SC + +2005-03-01 + Added Eric's contourf routines + +2005-03-01 + Added start of proper agg SWIG wrapper. I would like to expose agg + functionality directly a the user level and this module will serve that + purpose eventually, and will hopefully take over most of the functionality + of the current _image and _backend_agg modules. - JDH + +2005-02-28 + Fixed polyfit / polyval to convert input args to float arrays - JDH + +2005-02-25 + Add experimental feature to backend_gtk.py to enable/disable double + buffering (DBL_BUFFER=True/False) - SC + +2005-02-24 + colors.py change ColorConverter.to_rgb() so it always returns rgb (and not + rgba), allow cnames keys to be cached, change the exception raised from + RuntimeError to ValueError (like hex2color()) hex2color() use a regular + expression to check the color string is valid - SC + +2005-02-23 + Added rc param ps.useafm so backend ps can use native afm fonts or + truetype. afme breaks mathtext but causes much smaller font sizes and may + result in images that display better in some contexts (e.g., pdfs + incorporated into latex docs viewed in acrobat reader). I would like to + extend this approach to allow the user to use truetype only for mathtext, + which should be easy. + +2005-02-23 + Used sequence protocol rather than tuple in agg collection drawing routines + for greater flexibility - JDH + +-------------------------------- + +0.72.1 (2005-02-22) +------------------- + +2005-02-21 + fixed linestyles for collections -- contour now dashes for levels <0 + +2005-02-21 + fixed ps color bug - JDH + +2005-02-15 + fixed missing qt file + +2005-02-15 + banished error_msg and report_error. Internal backend methods like + error_msg_gtk are preserved. backend writers, check your backends, and + diff against 0.72 to make sure I did the right thing! - JDH + +2005-02-14 + Added enthought traits to matplotlib tree - JDH + +------------------------ + +0.72 (2005-02-14) +----------------- + +2005-02-14 + fix bug in cbook alltrue() and onetrue() - SC + +2005-02-11 + updated qtagg backend from Ted - JDH + +2005-02-11 + matshow fixes for figure numbering, return value and docs - FP + +2005-02-09 + new zorder example for fine control in zorder_demo.py - FP + +2005-02-09 + backend renderer draw_lines now has transform in backend, as in + draw_markers; use numerix in _backend_agg, added small line optimization to + agg + +2005-02-09 + subplot now deletes axes that it overlaps + +2005-02-08 + Added transparent support for gzipped files in load/save - Fernando Perez + (FP from now on). + +2005-02-08 + Small optimizations in PS backend. They may have a big impact for large + plots, otherwise they don't hurt - FP + +2005-02-08 + Added transparent support for gzipped files in load/save - Fernando Perez + (FP from now on). + +2005-02-07 + Added newstyle path drawing for markers - only implemented in agg currently + - JDH + +2005-02-05 + Some superscript text optimizations for ticking log plots + +2005-02-05 + Added some default key press events to pylab figures: 'g' toggles grid - + JDH + +2005-02-05 + Added some support for handling log switching for lines that have nonpos + data - JDH + +2005-02-04 + Added Nadia's contour patch - contour now has matlab compatible syntax; + this also fixed an unequal sized contour array bug- JDH + +2005-02-04 + Modified GTK backends to allow the FigureCanvas to be resized smaller than + its original size - SC + +2005-02-02 + Fixed a bug in dates mx2num - JDH + +2005-02-02 + Incorporated Fernando's matshow - JDH + +2005-02-01 + Added Fernando's figure num patch, including experimental support for pylab + backend switching, LineCOllection.color warns, savefig now a figure method, + fixed a close(fig) bug - JDH + +2005-01-31 + updated datalim in contour - JDH + +2005-01-30 + Added backend_qtagg.py provided by Sigve Tjora - SC + +2005-01-28 + Added tk.inspect rc param to .matplotlibrc. IDLE users should set + tk.pythoninspect:True and interactive:True and backend:TkAgg + +2005-01-28 + Replaced examples/interactive.py with an updated script from Fernando Perez + - SC + +2005-01-27 + Added support for shared x or y axes. See examples/shared_axis_demo.py and + examples/ganged_plots.py + +2005-01-27 + Added Lee's patch for missing symbols \leq and \LEFTbracket to + _mathtext_data - JDH + +2005-01-26 + Added Baptiste's two scales patch -- see help(twinx) in the pylab interface + for more info. See also examples/two_scales.py + +2005-01-24 + Fixed a mathtext parser bug that prevented font changes in sub/superscripts + - JDH + +2005-01-24 + Fixed contour to work w/ interactive changes in colormaps, clim, etc - JDH + +----------------------------- + +0.71 (2005-01-21) +----------------- + +2005-01-21 + Refactored numerix to solve vexing namespace issues - JDH + +2005-01-21 + Applied Nadia's contour bug fix - JDH + +2005-01-20 + Made some changes to the contour routine - particularly region=1 seems t + fix a lot of the zigzag strangeness. Added colormaps as default for + contour - JDH + +2005-01-19 + Restored builtin names which were overridden (min, max, abs, round, and + sum) in pylab. This is a potentially significant change for those who were + relying on an array version of those functions that previously overrode + builtin function names. - ADS + +2005-01-18 + Added accents to mathtext: \hat, \breve, \grave, \bar, \acute, \tilde, + \vec, \dot, \ddot. All of them have the same syntax, e.g., to make an + overbar you do \bar{o} or to make an o umlaut you do \ddot{o}. The + shortcuts are also provided, e.g., \"o \'e \`e \~n \.x \^y - JDH + +2005-01-18 + Plugged image resize memory leaks - JDH + +2005-01-18 + Fixed some mathtext parser problems relating to superscripts + +2005-01-17 + Fixed a yticklabel problem for colorbars under change of clim - JDH + +2005-01-17 + Cleaned up Destroy handling in wx reducing memleak/fig from approx 800k to + approx 6k- JDH + +2005-01-17 + Added kappa to latex_to_bakoma - JDH + +2005-01-15 + Support arbitrary colorbar axes and horizontal colorbars - JDH + +2005-01-15 + Fixed colormap number of colors bug so that the colorbar has the same + discretization as the image - JDH + +2005-01-15 + Added Nadia's x,y contour fix - JDH + +2005-01-15 + backend_cairo: added PDF support which requires pycairo 0.1.4. Its not + usable yet, but is ready for when the Cairo PDF backend matures - SC + +2005-01-15 + Added Nadia's x,y contour fix + +2005-01-12 + Fixed set clip_on bug in artist - JDH + +2005-01-11 + Reverted pythoninspect in tkagg - JDH + +2005-01-09 + Fixed a backend_bases event bug caused when an event is triggered when + location is None - JDH + +2005-01-07 + Add patch from Stephen Walton to fix bug in pylab.load() when the % + character is included in a comment. - ADS + +2005-01-07 + Added markerscale attribute to Legend class. This allows the marker size + in the legend to be adjusted relative to that in the plot. - ADS + +2005-01-06 + Add patch from Ben Vanhaeren to make the FigureManagerGTK vbox a public + attribute - SC + +---------------------------- + +2004-12-30 + Release 0.70 + +2004-12-28 + Added coord location to key press and added a examples/picker_demo.py + +2004-12-28 + Fixed coords notification in wx toolbar - JDH + +2004-12-28 + Moved connection and disconnection event handling to the FigureCanvasBase. + Backends now only need to connect one time for each of the button press, + button release and key press/release functions. The base class deals with + callbacks and multiple connections. This fixes flakiness on some backends + (tk, wx) in the presence of multiple connections and/or disconnect - JDH + +2004-12-27 + Fixed PS mathtext bug where color was not set - Jochen please verify + correct - JDH + +2004-12-27 + Added Shadow class and added shadow kwarg to legend and pie for shadow + effect - JDH + +2004-12-27 + Added pie charts and new example/pie_demo.py + +2004-12-23 + Fixed an agg text rotation alignment bug, fixed some text kwarg processing + bugs, and added examples/text_rotation.py to explain and demonstrate how + text rotations and alignment work in matplotlib. - JDH + +----------------------- + +0.65.1 (2004-12-22) +------------------- + +2004-12-22 + Fixed colorbar bug which caused colorbar not to respond to changes in + colormap in some instances - JDH + +2004-12-22 + Refactored NavigationToolbar in tkagg to support app embedding , init now + takes (canvas, window) rather than (canvas, figman) - JDH + +2004-12-21 + Refactored axes and subplot management - removed add_subplot and add_axes + from the FigureManager. classic toolbar updates are done via an observer + pattern on the figure using add_axobserver. Figure now maintains the axes + stack (for gca) and supports axes deletion. Ported changes to GTK, Tk, Wx, + and FLTK. Please test! Added delaxes - JDH + +2004-12-21 + Lots of image optimizations - 4x performance boost over 0.65 JDH + +2004-12-20 + Fixed a figimage bug where the axes is shown and modified tkagg to move the + destroy binding into the show method. + +2004-12-18 + Minor refactoring of NavigationToolbar2 to support embedding in an + application - JDH + +2004-12-14 + Added linestyle to collections (currently broken) - JDH + +2004-12-14 + Applied Nadia's setupext patch to fix libstdc++ link problem with contour + and solaris -JDH + +2004-12-14 + A number of pychecker inspired fixes, including removal of True and False + from cbook which I erroneously thought was needed for python2.2 - JDH + +2004-12-14 + Finished porting doc strings for set introspection. Used silent_list for + many get funcs that return lists. JDH + +2004-12-13 + dates.py: removed all timezone() calls, except for UTC - SC + +---------------------------- + +0.65 (2004-12-13) +----------------- + +2004-12-13 + colors.py: rgb2hex(), hex2color() made simpler (and faster), also rgb2hex() + - added round() instead of integer truncation hex2color() - changed 256.0 + divisor to 255.0, so now '#ffffff' becomes (1.0,1.0,1.0) not + (0.996,0.996,0.996) - SC + +2004-12-11 + Added ion and ioff to pylab interface - JDH + +2004-12-11 + backend_template.py: delete FigureCanvasTemplate.realize() - most backends + don't use it and its no longer needed + + backend_ps.py, backend_svg.py: delete show() and draw_if_interactive() - + they are not needed for image backends + + backend_svg.py: write direct to file instead of StringIO + + - SC + +2004-12-10 + Added zorder to artists to control drawing order of lines, patches and text + in axes. See examples/zoder_demo.py - JDH + +2004-12-10 + Fixed colorbar bug with scatter - JDH + +2004-12-10 + Added Nadia Dencheva contour code - JDH + +2004-12-10 + backend_cairo.py: got mathtext working - SC + +2004-12-09 + Added Norm Peterson's svg clipping patch + +2004-12-09 + Added Matthew Newville's wx printing patch + +2004-12-09 + Migrated matlab to pylab - JDH + +2004-12-09 + backend_gtk.py: split into two parts + + - backend_gdk.py - an image backend + - backend_gtk.py - A GUI backend that uses GDK - SC + +2004-12-08 + backend_gtk.py: remove quit_after_print_xvfb(\*args), show_xvfb(), + Dialog_MeasureTool(gtk.Dialog) one month after sending mail to + matplotlib-users asking if anyone still uses these functions - SC + +2004-12-02 + backend_bases.py, backend_template.py: updated some of the method + documentation to make them consistent with each other - SC + +2004-12-04 + Fixed multiple bindings per event for TkAgg mpl_connect and mpl_disconnect. + Added a "test_disconnect" command line parameter to coords_demo.py JTM + +2004-12-04 + Fixed some legend bugs JDH + +2004-11-30 + Added over command for oneoff over plots. e.g., over(plot, x, y, lw=2). + Works with any plot function. + +2004-11-30 + Added bbox property to text - JDH + +2004-11-29 + Zoom to rect now respect reversed axes limits (for both linear and log + axes). - GL + +2004-11-29 + Added the over command to the matlab interface. over allows you to add an + overlay plot regardless of hold state. - JDH + +2004-11-25 + Added Printf to mplutils for printf style format string formatting in C++ + (should help write better exceptions) + +2004-11-24 + IMAGE_FORMAT: remove from agg and gtkagg backends as its no longer used - + SC + +2004-11-23 + Added matplotlib compatible set and get introspection. See set_and_get.py + +2004-11-23 + applied Norbert's patched and exposed legend configuration to kwargs - JDH + +2004-11-23 + backend_gtk.py: added a default exception handler - SC + +2004-11-18 + backend_gtk.py: change so that the backend knows about all image formats + and does not need to use IMAGE_FORMAT in other backends - SC + +2004-11-18 + Fixed some report_error bugs in string interpolation as reported on SF bug + tracker- JDH + +2004-11-17 + backend_gtkcairo.py: change so all print_figure() calls render using Cairo + and get saved using backend_gtk.print_figure() - SC + +2004-11-13 + backend_cairo.py: Discovered the magic number (96) required for Cairo PS + plots to come out the right size. Restored Cairo PS output and added + support for landscape mode - SC + +2004-11-13 + Added ishold - JDH + +2004-11-12 + Added many new matlab colormaps - autumn bone cool copper flag gray hot hsv + jet pink prism spring summer winter - PG + +2004-11-11 + greatly simplify the emitted postscript code - JV + +2004-11-12 + Added new plotting functions spy, spy2 for sparse matrix visualization - + JDH + +2004-11-11 + Added rgrids, thetragrids for customizing the grid locations and labels for + polar plots - JDH + +2004-11-11 + make the Gtk backends build without an X-server connection - JV + +2004-11-10 + matplotlib/__init__.py: Added FROZEN to signal we are running under py2exe + (or similar) - is used by backend_gtk.py - SC + +2004-11-09 + backend_gtk.py: Made fix suggested by maffew@cat.org.au to prevent problems + when py2exe calls pygtk.require(). - SC + +2004-11-09 + backend_cairo.py: Added support for printing to a fileobject. Disabled + cairo PS output which is not working correctly. - SC + +---------------------------------- + +0.64 (2004-11-08) +----------------- + +2004-11-04 + Changed -dbackend processing to only use known backends, so we don't + clobber other non-matplotlib uses of -d, like -debug. + +2004-11-04 + backend_agg.py: added IMAGE_FORMAT to list the formats that the backend can + save to. backend_gtkagg.py: added support for saving JPG files by using + the GTK backend - SC + +2004-10-31 + backend_cairo.py: now produces png and ps files (although the figure sizing + needs some work). pycairo did not wrap all the necessary functions, so I + wrapped them myself, they are included in the backend_cairo.py doc string. + - SC + +2004-10-31 + backend_ps.py: clean up the generated PostScript code, use the PostScript + stack to hold intermediate values instead of storing them in the dictionary. + - JV + +2004-10-30 + backend_ps.py, ft2font.cpp, ft2font.h: fix the position of text in the + PostScript output. The new FT2Font method get_descent gives the distance + between the lower edge of the bounding box and the baseline of a string. + In backend_ps the text is shifted upwards by this amount. - JV + +2004-10-30 + backend_ps.py: clean up the code a lot. Change the PostScript output to be + more DSC compliant. All definitions for the generated PostScript are now + in a PostScript dictionary 'mpldict'. Moved the long comment about drawing + ellipses from the PostScript output into a Python comment. - JV + +2004-10-30 + backend_gtk.py: removed FigureCanvasGTK.realize() as its no longer needed. + Merged ColorManager into GraphicsContext backend_bases.py: For + set_capstyle/joinstyle() only set cap or joinstyle if there is no error. - + SC + +2004-10-30 + backend_gtk.py: tidied up print_figure() and removed some of the dependency + on widget events - SC + +2004-10-28 + backend_cairo.py: The renderer is complete except for mathtext, + draw_image() and clipping. gtkcairo works reasonably well. cairo does not + yet create any files since I can't figure how to set the 'target surface', + I don't think pycairo wraps the required functions - SC + +2004-10-28 + backend_gtk.py: Improved the save dialog (GTK 2.4 only) so it presents the + user with a menu of supported image formats - SC + +2004-10-28 + backend_svg.py: change print_figure() to restore original face/edge color + backend_ps.py : change print_figure() to ensure original face/edge colors + are restored even if there's an IOError - SC + +2004-10-27 + Applied Norbert's errorbar patch to support barsabove kwarg + +2004-10-27 + Applied Norbert's legend patch to support None handles + +2004-10-27 + Added two more backends: backend_cairo.py, backend_gtkcairo.py They are not + complete yet, currently backend_gtkcairo just renders polygons, rectangles + and lines - SC + +2004-10-21 + Added polar axes and plots - JDH + +2004-10-20 + Fixed corrcoef bug exposed by corrcoef(X) where X is matrix - JDH + +2004-10-19 + Added kwarg support to xticks and yticks to set ticklabel text properties + -- thanks to T. Edward Whalen for the suggestion + +2004-10-19 + Added support for PIL images in imshow(), image.py - ADS + +2004-10-19 + Re-worked exception handling in _image.py and _transforms.py to avoid + masking problems with shared libraries. - JTM + +2004-10-16 + Streamlined the matlab interface wrapper, removed the noplot option to hist + - just use mlab.hist instead. + +2004-09-30 + Added Andrew Dalke's strftime code to extend the range of dates supported + by the DateFormatter - JDH + +2004-09-30 + Added barh - JDH + +2004-09-30 + Removed fallback to alternate array package from numerix so that + ImportErrors are easier to debug. - JTM + +2004-09-30 + Add GTK+ 2.4 support for the message in the toolbar. SC + +2004-09-30 + Made some changes to support python22 - lots of doc fixes. - JDH + +2004-09-29 + Added a Verbose class for reporting - JDH + +------------------------------------ + +2004-09-28 + Released 0.63.0 + +2004-09-28 + Added save to file object for agg - see examples/print_stdout.py + +2004-09-24 + Reorganized all py code to lib subdir + +2004-09-24 + Fixed axes resize image edge effects on interpolation - required upgrade to + agg22 which fixed an agg bug related to this problem + +2004-09-20 + Added toolbar2 message display for backend_tkagg. JTM + +2004-09-17 + Added coords formatter attributes. These must be callable, and return a + string for the x or y data. These will be used to format the x and y data + for the coords box. Default is the axis major formatter. e.g.:: + + # format the coords message box + def price(x): return '$%1.2f'%x + ax.format_xdata = DateFormatter('%Y-%m-%d') + ax.format_ydata = price + +2004-09-17 + Total rewrite of dates handling to use python datetime with num2date, + date2num and drange. pytz for timezone handling, dateutils for + spohisticated ticking. date ranges from 0001-9999 are supported. rrules + allow arbitrary date ticking. examples/date_demo*.py converted to show new + usage. new example examples/date_demo_rrule.py shows how to use rrules in + date plots. The date locators are much more general and almost all of them + have different constructors. See matplotlib.dates for more info. + +2004-09-15 + Applied Fernando's backend __init__ patch to support easier backend + maintenance. Added his numutils to mlab. JDH + +2004-09-16 + Re-designated all files in matplotlib/images as binary and w/o keyword + substitution using "cvs admin -kb \*.svg ...". See binary files in "info + cvs" under Linux. This was messing up builds from CVS on windows since CVS + was doing lf -> cr/lf and keyword substitution on the bitmaps. - JTM + +2004-09-15 + Modified setup to build array-package-specific extensions for those + extensions which are array-aware. Setup builds extensions automatically + for either Numeric, numarray, or both, depending on what you have + installed. Python proxy modules for the array-aware extensions import the + version optimized for numarray or Numeric determined by numerix. - JTM + +2004-09-15 + Moved definitions of infinity from mlab to numerix to avoid divide by zero + warnings for numarray - JTM + +2004-09-09 + Added axhline, axvline, axhspan and axvspan + +------------------------------- + +0.62.4 (2004-08-30) +------------------- + +2004-08-30 + Fixed a multiple images with different extent bug, Fixed markerfacecolor as + RGB tuple + +2004-08-27 + Mathtext now more than 5x faster. Thanks to Paul Mcguire for fixes both to + pyparsing and to the matplotlib grammar! mathtext broken on python2.2 + +2004-08-25 + Exposed Darren's and Greg's log ticking and formatting options to semilogx + and friends + +2004-08-23 + Fixed grid w/o args to toggle grid state - JDH + +2004-08-11 + Added Gregory's log patches for major and minor ticking + +2004-08-18 + Some pixel edge effects fixes for images + +2004-08-18 + Fixed TTF files reads in backend_ps on win32. + +2004-08-18 + Added base and subs properties for logscale plots, user modifiable using + set_[x,y]scale('log',base=b,subs=[mt1,mt2,...]) - GL + +2004-08-18 + fixed a bug exposed by trying to find the HOME dir on win32 thanks to Alan + Issac for pointing to the light - JDH + +2004-08-18 + fixed errorbar bug in setting ecolor - JDH + +2004-08-12 + Added Darren Dale's exponential ticking patch + +2004-08-11 + Added Gregory's fltkagg backend + +------------------------------ + +0.61.0 (2004-08-09) +------------------- + +2004-08-08 + backend_gtk.py: get rid of the final PyGTK deprecation warning by replacing + gtkOptionMenu with gtkMenu in the 2.4 version of the classic toolbar. + +2004-08-06 + Added Tk zoom to rect rectangle, proper idle drawing, and keybinding - JDH + +2004-08-05 + Updated installing.html and INSTALL - JDH + +2004-08-01 + backend_gtk.py: move all drawing code into the expose_event() + +2004-07-28 + Added Greg's toolbar2 and backend_*agg patches - JDH + +2004-07-28 + Added image.imread with support for loading png into numerix arrays + +2004-07-28 + Added key modifiers to events - implemented dynamic updates and rubber + banding for interactive pan/zoom - JDH + +2004-07-27 + did a readthrough of SVG, replacing all the string additions with string + interps for efficiency, fixed some layout problems, added font and image + support (through external pngs) - JDH + +2004-07-25 + backend_gtk.py: modify toolbar2 to make it easier to support GTK+ 2.4. Add + GTK+ 2.4 toolbar support. - SC + +2004-07-24 + backend_gtk.py: Simplified classic toolbar creation - SC + +2004-07-24 + Added images/matplotlib.svg to be used when GTK+ windows are minimised - SC + +2004-07-22 + Added right mouse click zoom for NavigationToolbar2 panning mode. - JTM + +2004-07-22 + Added NavigationToolbar2 support to backend_tkagg. Minor tweak to + backend_bases. - JTM + +2004-07-22 + Incorporated Gergory's renderer cache and buffer object cache - JDH + +2004-07-22 + Backend_gtk.py: Added support for GtkFileChooser, changed + FileSelection/FileChooser so that only one instance pops up, and made them + both modal. - SC + +2004-07-21 + Applied backend_agg memory leak patch from hayden - jocallo@online.no. + Found and fixed a leak in binary operations on transforms. Moral of the + story: never incref where you meant to decref! Fixed several leaks in + ft2font: moral of story: almost always return Py::asObject over Py::Object + - JDH + +2004-07-21 + Fixed a to string memory allocation bug in agg and image modules - JDH + +2004-07-21 + Added mpl_connect and mpl_disconnect to matlab interface - JDH + +2004-07-21 + Added beginnings of users_guide to CVS - JDH + +2004-07-20 + ported toolbar2 to wx + +2004-07-20 + upgraded to agg21 - JDH + +2004-07-20 + Added new icons for toolbar2 - JDH + +2004-07-19 + Added vertical mathtext for \*Agg and GTK - thanks Jim Benson! - JDH + +2004-07-16 + Added ps/eps/svg savefig options to wx and gtk JDH + +2004-07-15 + Fixed python framework tk finder in setupext.py - JDH + +2004-07-14 + Fixed layer images demo which was broken by the 07/12 image extent fixes - + JDH + +2004-07-13 + Modified line collections to handle arbitrary length segments for each line + segment. - JDH + +2004-07-13 + Fixed problems with image extent and origin - set_image_extent deprecated. + Use imshow(blah, blah, extent=(xmin, xmax, ymin, ymax) instead - JDH + +2004-07-12 + Added prototype for new nav bar with codified event handling. Use + mpl_connect rather than connect for matplotlib event handling. toolbar + style determined by rc toolbar param. backend status: gtk: prototype, wx: + in progress, tk: not started - JDH + +2004-07-11 + backend_gtk.py: use builtin round() instead of redefining it. - SC + +2004-07-10 + Added embedding_in_wx3 example - ADS + +2004-07-09 + Added dynamic_image_wxagg to examples - ADS + +2004-07-09 + added support for embedding TrueType fonts in PS files - PEB + +2004-07-09 + fixed a sfnt bug exposed if font cache is not built + +2004-07-09 + added default arg None to matplotlib.matlab grid command to toggle current + grid state + +--------------------- + +0.60.2 (2004-07-08) +------------------- + +2004-07-08 + fixed a mathtext bug for '6' + +2004-07-08 + added some numarray bug workarounds + +-------------------------- + +0.60 (2004-07-07) +----------------- + +2004-07-07 + Fixed a bug in dynamic_demo_wx + +2004-07-07 + backend_gtk.py: raise SystemExit immediately if 'import pygtk' fails - SC + +2004-07-05 + Added new mathtext commands \over{sym1}{sym2} and \under{sym1}{sym2} + +2004-07-05 + Unified image and patch collections colormapping and scaling args. Updated + docstrings for all - JDH + +2004-07-05 + Fixed a figure legend bug and added examples/figlegend_demo.py - JDH + +2004-07-01 + Fixed a memory leak in image and agg to string methods + +2004-06-25 + Fixed fonts_demo spacing problems and added a kwargs version of the + fonts_demo fonts_demo_kw.py - JDH + +2004-06-25 + finance.py: handle case when urlopen() fails - SC + +2004-06-24 + Support for multiple images on axes and figure, with blending. Support for + upper and lower image origins. clim, jet and gray functions in matlab + interface operate on current image - JDH + +2004-06-23 + ported code to Perry's new colormap and norm scheme. Added new rc + attributes image.aspect, image.interpolation, image.cmap, image.lut, + image.origin + +2004-06-20 + backend_gtk.py: replace gtk.TRUE/FALSE with True/False. simplified + _make_axis_menu(). - SC + +2004-06-19 + anim_tk.py: Updated to use TkAgg by default (not GTK) backend_gtk_py: Added + '_' in front of private widget creation functions - SC + +2004-06-17 + backend_gtk.py: Create a GC once in realise(), not every time draw() is + called. - SC + +2004-06-16 + Added new py2exe FAQ entry and added frozen support in get_data_path for + py2exe - JDH + +2004-06-16 + Removed GTKGD, which was always just a proof-of-concept backend - JDH + +2004-06-16 + backend_gtk.py updates to replace deprecated functions gtk.mainquit(), + gtk.mainloop(). Update NavigationToolbar to use the new GtkToolbar API - + SC + +2004-06-15 + removed set_default_font from font_manager to unify font customization + using the new function rc. See API_CHANGES for more info. The examples + fonts_demo.py and fonts_demo_kw.py are ported to the new API - JDH + +2004-06-15 + Improved (yet again!) axis scaling to properly handle singleton plots - JDH + +2004-06-15 + Restored the old FigureCanvasGTK.draw() - SC + +2004-06-11 + More memory leak fixes in transforms and ft2font - JDH + +2004-06-11 + Eliminated numerix .numerix file and environment variable NUMERIX. Fixed + bug which prevented command line overrides: --numarray or --numeric. - JTM + +2004-06-10 + Added rc configuration function rc; deferred all rc param setting until + object creation time; added new rc attrs: lines.markerfacecolor, + lines.markeredgecolor, lines.markeredgewidth, patch.linewidth, + patch.facecolor, patch.edgecolor, patch.antialiased; see + examples/customize_rc.py for usage - JDH + +--------------------------------------------------------------- + +0.54.2 (2004-06-09) +------------------- + +2004-06-08 + Rewrote ft2font using CXX as part of general memory leak fixes; also fixed + transform memory leaks - JDH + +2004-06-07 + Fixed several problems with log ticks and scaling - JDH + +2004-06-07 + Fixed width/height issues for images - JDH + +2004-06-03 + Fixed draw_if_interactive bug for semilogx; + +2004-06-02 + Fixed text clipping to clip to axes - JDH + +2004-06-02 + Fixed leading newline text and multiple newline text - JDH + +2004-06-02 + Fixed plot_date to return lines - JDH + +2004-06-01 + Fixed plot to work with x or y having shape N,1 or 1,N - JDH + +2004-05-31 + Added renderer markeredgewidth attribute of Line2D. - ADS + +2004-05-29 + Fixed tick label clipping to work with navigation. + +2004-05-28 + Added renderer grouping commands to support groups in + SVG/PS. - JDH + +2004-05-28 + Fixed, this time I really mean it, the singleton plot plot([0]) scaling + bug; Fixed Flavio's shape = N,1 bug - JDH + +2004-05-28 + added colorbar - JDH + +2004-05-28 + Made some changes to the matplotlib.colors.Colormap to properly support + clim - JDH + +----------------------------------------------------------------- + +0.54.1 (2004-05-27) +------------------- + +2004-05-27 + Lots of small bug fixes: rotated text at negative angles, errorbar capsize + and autoscaling, right tick label position, gtkagg on win98, alpha of + figure background, singleton plots - JDH + +2004-05-26 + Added Gary's errorbar stuff and made some fixes for length one plots and + constant data plots - JDH + +2004-05-25 + Tweaked TkAgg backend so that canvas.draw() works more like the other + backends. Fixed a bug resulting in 2 draws per figure manager show(). + - JTM + +------------------------------------------------------------ + +0.54 (2004-05-19) +----------------- + +2004-05-18 + Added newline separated text with rotations to text.Text layout - JDH + +2004-05-16 + Added fast pcolor using PolyCollections. - JDH + +2004-05-14 + Added fast polygon collections - changed scatter to use them. Added + multiple symbols to scatter. 10x speedup on large scatters using \*Agg and + 5X speedup for ps. - JDH + +2004-05-14 + On second thought... created an "nx" namespace in numerix which maps + type names onto typecodes the same way for both numarray and Numeric. This + undoes my previous change immediately below. To get a typename for Int16 + usable in a Numeric extension: say nx.Int16. - JTM + +2004-05-15 + Rewrote transformation class in extension code, simplified all the artist + constructors - JDH + +2004-05-14 + Modified the type definitions in the numarray side of numerix so that they + are Numeric typecodes and can be used with Numeric compilex extensions. + The original numarray types were renamed to type. - JTM + +2004-05-06 + Gary Ruben sent me a bevy of new plot symbols and markers. See + matplotlib.matlab.plot - JDH + +2004-05-06 + Total rewrite of mathtext - factored ft2font stuff out of layout engine and + defined abstract class for font handling to lay groundwork for ps mathtext. + Rewrote parser and made layout engine much more precise. Fixed all the + layout hacks. Added spacing commands \/ and \hspace. Added composite + chars and defined angstrom. - JDH + +2004-05-05 + Refactored text instances out of backend; aligned text with arbitrary + rotations is now supported - JDH + +2004-05-05 + Added a Matrix capability for numarray to numerix. JTM + +2004-05-04 + Updated whats_new.html.template to use dictionary and template loop, added + anchors for all versions and items; updated goals.txt to use those for + links. PG + +2004-05-04 + Added fonts_demo.py to backend_driver, and AFM and TTF font caches to + font_manager.py - PEB + +2004-05-03 + Redid goals.html.template to use a goals.txt file that has a pseudo + restructured text organization. PG + +2004-05-03 + Removed the close buttons on all GUIs and added the python #! bang line to + the examples following Steve Chaplin's advice on matplotlib dev + +2004-04-29 + Added CXX and rewrote backend_agg using it; tracked down and fixed agg + memory leak - JDH + +2004-04-29 + Added stem plot command - JDH + +2004-04-28 + Fixed PS scaling and centering bug - JDH + +2004-04-26 + Fixed errorbar autoscale problem - JDH + +2004-04-22 + Fixed copy tick attribute bug, fixed singular datalim ticker bug; fixed + mathtext fontsize interactive bug. - JDH + +2004-04-21 + Added calls to draw_if_interactive to axes(), legend(), and pcolor(). + Deleted duplicate pcolor(). - JTM + +------------------------------------------------------------ + +2004-04-21 + matplotlib 0.53 release + +2004-04-19 + Fixed vertical alignment bug in PS backend - JDH + +2004-04-17 + Added support for two scales on the "same axes" with tick different ticking + and labeling left right or top bottom. See examples/two_scales.py - JDH + +2004-04-17 + Added default dirs as list rather than single dir in setupext.py - JDH + +2004-04-16 + Fixed wx exception swallowing bug (and there was much rejoicing!) - JDH + +2004-04-16 + Added new ticker locator a formatter, fixed default font return - JDH + +2004-04-16 + Added get_name method to FontProperties class. Fixed font lookup in GTK and + WX backends. - PEB + +2004-04-16 + Added get- and set_fontstyle methods. - PEB + +2004-04-10 + Mathtext fixes: scaling with dpi, - JDH + +2004-04-09 + Improved font detection algorithm. - PEB + +2004-04-09 + Move deprecation warnings from text.py to __init__.py - PEB + +2004-04-09 + Added default font customization - JDH + +2004-04-08 + Fixed viewlim set problem on axes and axis. - JDH + +2004-04-07 + Added validate_comma_sep_str and font properties parameters to __init__. + Removed font families and added rcParams to FontProperties __init__ + arguments in font_manager. Added default font property parameters to + .matplotlibrc file with descriptions. Added deprecation warnings to the + get\_ - and set_fontXXX methods of the Text object. - PEB + +2004-04-06 + Added load and save commands for ASCII data - JDH + +2004-04-05 + Improved font caching by not reading AFM fonts until needed. Added better + documentation. Changed the behaviour of the get_family, set_family, and + set_name methods of FontProperties. - PEB + +2004-04-05 + Added WXAgg backend - JDH + +2004-04-04 + Improved font caching in backend_agg with changes to font_manager - JDH + +2004-03-29 + Fixed fontdicts and kwargs to work with new font manager - JDH + +-------------------------------------------- + +This is the Old, stale, never used changelog + +2002-12-10 + - Added a TODO file and CHANGELOG. Lots to do -- get crackin'! + + - Fixed y zoom tool bug + + - Adopted a compromise fix for the y data clipping problem. The problem + was that for solid lines, the y data clipping (as opposed to the gc + clipping) caused artifactual horizontal solid lines near the ylim + boundaries. I did a 5% offset hack in Axes set_ylim functions which + helped, but didn't cure the problem for very high gain y zooms. So I + disabled y data clipping for connected lines . If you need extensive y + clipping, either plot(y,x) because x data clipping is always enabled, or + change the _set_clip code to 'if 1' as indicated in the lines.py src. + See _set_clip in lines.py and set_ylim in figure.py for more information. + +2002-12-11 + - Added a measurement dialog to the figure window to measure axes position + and the delta x delta y with a left mouse drag. These defaults can be + overridden by deriving from Figure and overriding button_press_event, + button_release_event, and motion_notify_event, and _dialog_measure_tool. + + - fixed the navigation dialog so you can check the axes the navigation + buttons apply to. + +2003-04-23 + Released matplotlib v0.1 + +2003-04-24 + Added a new line style PixelLine2D which is the plots the markers as pixels + (as small as possible) with format symbol ',' + + Added a new class Patch with derived classes Rectangle, RegularPolygon and + Circle + +2003-04-25 + Implemented new functions errorbar, scatter and hist + + Added a new line type '|' which is a vline. syntax is plot(x, Y, '|') + where y.shape = len(x),2 and each row gives the ymin,ymax for the + respective values of x. Previously I had implemented vlines as a list of + lines, but I needed the efficiency of the numeric clipping for large + numbers of vlines outside the viewport, so I wrote a dedicated class + Vline2D which derives from Line2D + +2003-05-01 + Fixed ytick bug where grid and tick show outside axis viewport with gc clip + +2003-05-14 + Added new ways to specify colors 1) matlab format string 2) html-style hex + string, 3) rgb tuple. See examples/color_demo.py + +2003-05-28 + Changed figure rendering to draw form a pixmap to reduce flicker. See + examples/system_monitor.py for an example where the plot is continuously + updated w/o flicker. This example is meant to simulate a system monitor + that shows free CPU, RAM, etc... + +2003-08-04 + Added Jon Anderson's GTK shell, which doesn't require pygtk to have + threading built-in and looks nice! + +2003-08-25 + Fixed deprecation warnings for python2.3 and pygtk-1.99.18 + +2003-08-26 + Added figure text with new example examples/figtext.py + +2003-08-27 + Fixed bugs in figure text with font override dictionaries and fig text that + was placed outside the window bounding box + +2003-09-01 through 2003-09-15 + Added a postscript and a GD module backend + +2003-09-16 + Fixed font scaling and point scaling so circles, squares, etc on lines will + scale with DPI as will fonts. Font scaling is not fully implemented on the + gtk backend because I have not figured out how to scale fonts to arbitrary + sizes with GTK + +2003-09-17 + Fixed figure text bug which crashed X windows on long figure text extending + beyond display area. This was, I believe, due to the vestigial erase + functionality that was no longer needed since I began rendering to a pixmap + +2003-09-30 + Added legend + +2003-10-01 + Fixed bug when colors are specified with rgb tuple or hex string. + +2003-10-21 + Andrew Straw provided some legend code which I modified and incorporated. + Thanks Andrew! + +2003-10-27 + Fixed a bug in axis.get_view_distance that affected zoom in versus out with + interactive scrolling, and a bug in the axis text reset system that + prevented the text from being redrawn on a interactive gtk view lim set + with the widget + + Fixed a bug in that prevented the manual setting of ticklabel strings from + working properly + +2003-11-02 + - Do a nearest neighbor color pick on GD when allocate fails + +2003-11-02 + - Added pcolor plot + - Added MRI example + - Fixed bug that screwed up label position if xticks or yticks were empty + - added nearest neighbor color picker when GD max colors exceeded + - fixed figure background color bug in GD backend + +2003-11-10 - 2003-11-11 + major refactoring. + + * Ticks (with labels, lines and grid) handled by dedicated class + * Artist now know bounding box and dpi + * Bounding boxes and transforms handled by dedicated classes + * legend in dedicated class. Does a better job of alignment and bordering. + Can be initialized with specific line instances. See + examples/legend_demo2.py + +2003-11-14 + Fixed legend positioning bug and added new position args + +2003-11-16 + Finished porting GD to new axes API + +2003-11-20 + - add TM for matlab on website and in docs + +2003-11-20 + - make a nice errorbar and scatter screenshot + +2003-11-20 + - auto line style cycling for multiple line types broken + +2003-11-18 + (using inkrect) :logical rect too big on gtk backend + +2003-11-18 + ticks don't reach edge of axes in gtk mode -- rounding error? + +2003-11-20 + - port Gary's errorbar code to new API before 0.40 + +2003-11-20 + - problem with stale _set_font. legend axes box doesn't resize on save in + GTK backend -- see htdocs legend_demo.py + +2003-11-21 + - make a dash-dot dict for the GC + +2003-12-15 + - fix install path bug diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/dflt_style_changes.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/dflt_style_changes.rst new file mode 100644 index 0000000000000000000000000000000000000000..e86e34c50e4698504e0ae21aab0edce27785c84c --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/dflt_style_changes.rst @@ -0,0 +1,1232 @@ +.. redirect-from:: /users/dflt_style_changes + +============================== + Changes to the default style +============================== + +The most important changes in matplotlib 2.0 are the changes to the +default style. + +While it is impossible to select the best default for all cases, these +are designed to work well in the most common cases. + +A 'classic' style sheet is provided so reverting to the 1.x default +values is a single line of python + +.. code:: + + import matplotlib.style + import matplotlib as mpl + mpl.style.use('classic') + +See :ref:`customizing-with-matplotlibrc-files` for details about how to +persistently and selectively revert many of these changes. + + +.. contents:: Table of Contents + :depth: 2 + :local: + :backlinks: entry + + + +Colors, color cycles, and colormaps +=================================== + +Colors in default property cycle +-------------------------------- + +The colors in the default property cycle have been changed from +``['b', 'g', 'r', 'c', 'm', 'y', 'k']`` to the category10 +color palette used by `Vega +`__ and +`d3 +`__ +originally developed at Tableau. + + +.. plot:: + + import numpy as np + import matplotlib.pyplot as plt + + th = np.linspace(0, 2*np.pi, 512) + + fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(6, 3)) + + + def color_demo(ax, colors, title): + ax.set_title(title) + for j, c in enumerate(colors): + v_offset = -(j / len(colors)) + ax.plot(th, .1*np.sin(th) + v_offset, color=c) + ax.annotate("'C{}'".format(j), (0, v_offset), + xytext=(-1.5, 0), + ha='right', + va='center', + color=c, + textcoords='offset points', + family='monospace') + + ax.annotate("{!r}".format(c), (2*np.pi, v_offset), + xytext=(1.5, 0), + ha='left', + va='center', + color=c, + textcoords='offset points', + family='monospace') + ax.axis('off') + + old_colors = ['b', 'g', 'r', 'c', 'm', 'y', 'k'] + + new_colors = ['#1f77b4', '#ff7f0e', '#2ca02c', '#d62728', + '#9467bd', '#8c564b', '#e377c2', '#7f7f7f', + '#bcbd22', '#17becf'] + + color_demo(ax1, old_colors, 'classic') + color_demo(ax2, new_colors, 'v2.0') + + fig.subplots_adjust(**{'bottom': 0.0, 'left': 0.059, + 'right': 0.869, 'top': 0.895}) + +In addition to changing the colors, an additional method to specify +colors was added. Previously, the default colors were the single +character short-hand notations for red, green, blue, cyan, magenta, +yellow, and black. This made them easy to type and usable in the +abbreviated style string in ``plot``, however the new default colors +are only specified via hex values. To access these colors outside of +the property cycling the notation for colors ``'CN'``, where ``N`` +takes values 0-9, was added to +denote the first 10 colors in :rc:`axes.prop_cycle`. See +:ref:`colors_def` for more details. + +To restore the old color cycle use + +.. code:: + + from cycler import cycler + mpl.rcParams['axes.prop_cycle'] = cycler(color='bgrcmyk') + +or set + +.. code:: + + axes.prop_cycle : cycler('color', 'bgrcmyk') + +in your :file:`matplotlibrc` file. + + +Colormap +-------- + +The new default colormap used by `matplotlib.cm.ScalarMappable` instances is +'viridis' (aka `option D `__). + +.. plot:: + + import numpy as np + import matplotlib.pyplot as plt + + N = M = 200 + X, Y = np.ogrid[0:20:N*1j, 0:20:M*1j] + data = np.sin(np.pi * X*2 / 20) * np.cos(np.pi * Y*2 / 20) + + fig, (ax2, ax1) = plt.subplots(1, 2, figsize=(7, 3)) + im = ax1.imshow(data, extent=[0, 200, 0, 200]) + ax1.set_title("v2.0: 'viridis'") + fig.colorbar(im, ax=ax1, shrink=0.8) + + im2 = ax2.imshow(data, extent=[0, 200, 0, 200], cmap='jet') + fig.colorbar(im2, ax=ax2, shrink=0.8) + ax2.set_title("classic: 'jet'") + + fig.tight_layout() + +For an introduction to color theory and how 'viridis' was generated +watch Nathaniel Smith and Stéfan van der Walt's talk from SciPy2015. +See `here for many more details `__ +about the other alternatives and the tools used to create the color +map. For details on all of the colormaps available in matplotlib see +:ref:`colormaps`. + +.. raw:: html + + + + +The previous default can be restored using + +.. code:: + + mpl.rcParams['image.cmap'] = 'jet' + +or setting + +.. code:: + + image.cmap : 'jet' + +in your :file:`matplotlibrc` file; however this is strongly discouraged. + +Interactive figures +------------------- + +The default interactive figure background color has changed from grey +to white, which matches the default background color used when saving. + +The previous defaults can be restored by :: + + mpl.rcParams['figure.facecolor'] = '0.75' + +or by setting :: + + + figure.facecolor : '0.75' + +in your :file:`matplotlibrc` file. + + +Grid lines +---------- + +The default style of grid lines was changed from black dashed lines to thicker +solid light grey lines. + +.. plot:: + + import numpy as np + import matplotlib.pyplot as plt + + fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(6, 3)) + + ax1.grid(color='k', linewidth=.5, linestyle=':') + ax1.set_title('classic') + + ax2.grid() + ax2.set_title('v2.0') + +The previous default can be restored by using:: + + mpl.rcParams['grid.color'] = 'k' + mpl.rcParams['grid.linestyle'] = ':' + mpl.rcParams['grid.linewidth'] = 0.5 + +or by setting:: + + grid.color : k # grid color + grid.linestyle : : # dotted + grid.linewidth : 0.5 # in points + +in your :file:`matplotlibrc` file. + + +Figure size, font size, and screen dpi +====================================== + +The default dpi used for on-screen display was changed from 80 dpi to +100 dpi, the same as the default dpi for saving files. Due to this +change, the on-screen display is now more what-you-see-is-what-you-get +for saved files. To keep the figure the same size in terms of pixels, in +order to maintain approximately the same size on the screen, the +default figure size was reduced from 8x6 inches to 6.4x4.8 inches. As +a consequence of this the default font sizes used for the title, tick +labels, and axes labels were reduced to maintain their size relative +to the overall size of the figure. By default the dpi of the saved +image is now the dpi of the `~matplotlib.figure.Figure` instance being +saved. + +This will have consequences if you are trying to match text in a +figure directly with external text. + + +The previous defaults can be restored by :: + + mpl.rcParams['figure.figsize'] = [8.0, 6.0] + mpl.rcParams['figure.dpi'] = 80 + mpl.rcParams['savefig.dpi'] = 100 + + mpl.rcParams['font.size'] = 12 + mpl.rcParams['legend.fontsize'] = 'large' + mpl.rcParams['figure.titlesize'] = 'medium' + +or by setting:: + + figure.figsize : [8.0, 6.0] + figure.dpi : 80 + savefig.dpi : 100 + + font.size : 12.0 + legend.fontsize : 'large' + figure.titlesize : 'medium' + +In your :file:`matplotlibrc` file. + +In addition, the ``forward`` kwarg to +`~.Figure.set_size_inches` now defaults to `True` to improve +the interactive experience. Backend canvases that adjust the size of +their bound `matplotlib.figure.Figure` must pass ``forward=False`` to +avoid circular behavior. This default is not configurable. + + +Plotting functions +================== + +``scatter`` +----------- + +The following changes were made to the default behavior of +`~matplotlib.axes.Axes.scatter` + +- The default size of the elements in a scatter plot is now based on + :rc:`lines.markersize` so it is consistent with ``plot(X, + Y, 'o')``. The old value was 20, and the new value is 36 (6^2). +- Scatter markers no longer have a black edge. +- If the color of the markers is not specified it will follow the + property cycle, pulling from the 'patches' cycle on the ``Axes``. + +.. plot:: + + import numpy as np + import matplotlib.pyplot as plt + + np.random.seed(2) + + fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(6, 3)) + + x = np.arange(15) + y = np.random.rand(15) + y2 = np.random.rand(15) + ax1.scatter(x, y, s=20, edgecolors='k', c='b', label='a') + ax1.scatter(x, y2, s=20, edgecolors='k', c='b', label='b') + ax1.legend() + ax1.set_title('classic') + + ax2.scatter(x, y, label='a') + ax2.scatter(x, y2, label='b') + ax2.legend() + ax2.set_title('v2.0') + + +The classic default behavior of `~matplotlib.axes.Axes.scatter` can +only be recovered through ``mpl.style.use('classic')``. The marker size +can be recovered via :: + + mpl.rcParam['lines.markersize'] = np.sqrt(20) + +however, this will also affect the default marker size of +`~matplotlib.axes.Axes.plot`. To recover the classic behavior on +a per-call basis pass the following kwargs:: + + classic_kwargs = {'s': 20, 'edgecolors': 'k', 'c': 'b'} + +``plot`` +-------- + +The following changes were made to the default behavior of +`~matplotlib.axes.Axes.plot` + +- the default linewidth increased from 1 to 1.5 +- the dash patterns associated with ``'--'``, ``':'``, and ``'-.'`` have + changed +- the dash patterns now scale with line width + + +.. plot:: + + import numpy as np + import matplotlib.pyplot as plt + import matplotlib as mpl + from cycler import cycler + + fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(6, 3)) + + N = 15 + + x = np.arange(N) + y = np.ones_like(x) + + sty_cycle = (cycler('ls', ['--' ,':', '-.']) * + cycler('lw', [None, 1, 2, 5])) + + classic = { + 'lines.linewidth': 1.0, + 'lines.dashed_pattern' : [6, 6], + 'lines.dashdot_pattern' : [3, 5, 1, 5], + 'lines.dotted_pattern' : [1, 3], + 'lines.scale_dashes': False} + + v2 = {} + # {'lines.linewidth': 1.5, + # 'lines.dashed_pattern' : [2.8, 1.2], + # 'lines.dashdot_pattern' : [4.8, 1.2, 0.8, 1.2], + # 'lines.dotted_pattern' : [1.1, 1.1], + # 'lines.scale_dashes': True} + + def demo(ax, rcparams, title): + ax.axis('off') + ax.set_title(title) + with mpl.rc_context(rc=rcparams): + for j, sty in enumerate(sty_cycle): + ax.plot(x, y + j, **sty) + + demo(ax1, classic, 'classic') + demo(ax2, {}, 'v2.0') + + +The previous defaults can be restored by setting:: + + mpl.rcParams['lines.linewidth'] = 1.0 + mpl.rcParams['lines.dashed_pattern'] = [6, 6] + mpl.rcParams['lines.dashdot_pattern'] = [3, 5, 1, 5] + mpl.rcParams['lines.dotted_pattern'] = [1, 3] + mpl.rcParams['lines.scale_dashes'] = False + +or by setting:: + + lines.linewidth : 1.0 + lines.dashed_pattern : 6, 6 + lines.dashdot_pattern : 3, 5, 1, 5 + lines.dotted_pattern : 1, 3 + lines.scale_dashes: False + +in your :file:`matplotlibrc` file. + +``errorbar`` +------------ + +By default, caps on the ends of errorbars are not present. + +.. plot:: + + import matplotlib as mpl + import matplotlib.pyplot as plt + import numpy as np + + # example data + x = np.arange(0.1, 4, 0.5) + y = np.exp(-x) + + # example variable error bar values + yerr = 0.1 + 0.2*np.sqrt(x) + xerr = 0.1 + yerr + + def demo(ax, rc, title): + with mpl.rc_context(rc=rc): + ax.errorbar(x, y, xerr=0.2, yerr=0.4) + ax.set_title(title) + + fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(6, 3), tight_layout=True) + + demo(ax1, {'errorbar.capsize': 3}, 'classic') + demo(ax2, {}, 'v2.0') + +This also changes the return value of +:meth:`~matplotlib.axes.Axes.errorbar` as the list of 'caplines' will +be empty by default. + +The previous defaults can be restored by setting:: + + mpl.rcParams['errorbar.capsize'] = 3 + +or by setting :: + + errorbar.capsize : 3 + +in your :file:`matplotlibrc` file. + + +``boxplot`` +----------- + +Previously, boxplots were composed of a mish-mash of styles that were, for +better for worse, inherited from Matlab. Most of the elements were blue, +but the medians were red. The fliers (outliers) were black plus-symbols +('+') and the whiskers were dashed lines, which created ambiguity if +the (solid and black) caps were not drawn. + +For the new defaults, everything is black except for the median and mean +lines (if drawn), which are set to the first two elements of the current +color cycle. Also, the default flier markers are now hollow circles, +which maintain the ability of the plus-symbols to overlap without +obscuring data too much. + +.. plot:: + + import numpy as np + import matplotlib.pyplot as plt + + data = np.random.lognormal(size=(37, 4)) + fig, (old, new) = plt.subplots(ncols=2, sharey=True) + with plt.style.context('default'): + new.boxplot(data, labels=['A', 'B', 'C', 'D']) + new.set_title('v2.0') + + with plt.style.context('classic'): + old.boxplot(data, labels=['A', 'B', 'C', 'D']) + old.set_title('classic') + + new.set_yscale('log') + old.set_yscale('log') + +The previous defaults can be restored by setting:: + + mpl.rcParams['boxplot.flierprops.color'] = 'k' + mpl.rcParams['boxplot.flierprops.marker'] = '+' + mpl.rcParams['boxplot.flierprops.markerfacecolor'] = 'none' + mpl.rcParams['boxplot.flierprops.markeredgecolor'] = 'k' + mpl.rcParams['boxplot.boxprops.color'] = 'b' + mpl.rcParams['boxplot.whiskerprops.color'] = 'b' + mpl.rcParams['boxplot.whiskerprops.linestyle'] = '--' + mpl.rcParams['boxplot.medianprops.color'] = 'r' + mpl.rcParams['boxplot.meanprops.color'] = 'r' + mpl.rcParams['boxplot.meanprops.marker'] = '^' + mpl.rcParams['boxplot.meanprops.markerfacecolor'] = 'r' + mpl.rcParams['boxplot.meanprops.markeredgecolor'] = 'k' + mpl.rcParams['boxplot.meanprops.markersize'] = 6 + mpl.rcParams['boxplot.meanprops.linestyle'] = '--' + mpl.rcParams['boxplot.meanprops.linewidth'] = 1.0 + +or by setting:: + + boxplot.flierprops.color: 'k' + boxplot.flierprops.marker: '+' + boxplot.flierprops.markerfacecolor: 'none' + boxplot.flierprops.markeredgecolor: 'k' + boxplot.boxprops.color: 'b' + boxplot.whiskerprops.color: 'b' + boxplot.whiskerprops.linestyle: '--' + boxplot.medianprops.color: 'r' + boxplot.meanprops.color: 'r' + boxplot.meanprops.marker: '^' + boxplot.meanprops.markerfacecolor: 'r' + boxplot.meanprops.markeredgecolor: 'k' + boxplot.meanprops.markersize: 6 + boxplot.meanprops.linestyle: '--' + boxplot.meanprops.linewidth: 1.0 + +in your :file:`matplotlibrc` file. + + +``fill_between`` and ``fill_betweenx`` +-------------------------------------- + +`~matplotlib.axes.Axes.fill_between` and +`~matplotlib.axes.Axes.fill_betweenx` both follow the patch color +cycle. + +.. plot:: + + import matplotlib.pyplot as plt + import numpy as np + + fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(6, 3)) + fig.subplots_adjust(wspace=0.3) + th = np.linspace(0, 2*np.pi, 128) + N = 5 + + def demo(ax, extra_kwargs, title): + ax.set_title(title) + return [ax.fill_between(th, np.sin((j / N) * np.pi + th), alpha=.5, **extra_kwargs) + for j in range(N)] + + demo(ax1, {'facecolor': 'C0'}, 'classic') + demo(ax2, {}, 'v2.0') + + +If the facecolor is set via the ``facecolors`` or ``color`` keyword argument, +then the color is not cycled. + +To restore the previous behavior, explicitly pass the keyword argument +``facecolors='C0'`` to the method call. + + +Patch edges and color +--------------------- + +Most artists drawn with a patch (``~matplotlib.axes.Axes.bar``, +``~matplotlib.axes.Axes.pie``, etc) no longer have a black edge by +default. The default face color is now ``'C0'`` instead of ``'b'``. + +.. plot:: + + import matplotlib.pyplot as plt + import numpy as np + from matplotlib import rc_context + import matplotlib.patches as mpatches + + fig, all_ax = plt.subplots(3, 2, figsize=(4, 6), tight_layout=True) + + def demo(ax_top, ax_mid, ax_bottom, rcparams, label): + labels = 'Frogs', 'Hogs', 'Dogs', 'Logs' + fracs = [15, 30, 45, 10] + + explode = (0, 0.05, 0, 0) + + ax_top.set_title(label) + + with rc_context(rc=rcparams): + ax_top.pie(fracs, labels=labels) + ax_top.set_aspect('equal') + ax_mid.bar(range(len(fracs)), fracs, tick_label=labels) + plt.setp(ax_mid.get_xticklabels(), rotation=-45) + grid = np.mgrid[0.2:0.8:3j, 0.2:0.8:3j].reshape(2, -1).T + + ax_bottom.set_xlim(0, .75) + ax_bottom.set_ylim(0, .75) + ax_bottom.add_artist(mpatches.Rectangle(grid[1] - [0.025, 0.05], + 0.05, 0.1)) + ax_bottom.add_artist(mpatches.RegularPolygon(grid[3], 5, radius=0.1)) + ax_bottom.add_artist(mpatches.Ellipse(grid[4], 0.2, 0.1)) + ax_bottom.add_artist(mpatches.Circle(grid[0], 0.1)) + ax_bottom.axis('off') + + demo(*all_ax[:, 0], rcparams={'patch.force_edgecolor': True, + 'patch.facecolor': 'b'}, label='classic') + demo(*all_ax[:, 1], rcparams={}, label='v2.0') + +The previous defaults can be restored by setting:: + + mpl.rcParams['patch.force_edgecolor'] = True + mpl.rcParams['patch.facecolor'] = 'b' + +or by setting:: + + patch.facecolor : b + patch.force_edgecolor : True + +in your :file:`matplotlibrc` file. + +``hexbin`` +---------- + +The default value of the *linecolor* keyword argument for `~.Axes.hexbin` has +changed from ``'none'`` to ``'face'``. If 'none' is now supplied, no line edges +are drawn around the hexagons. + +.. _barbarh_align: + +``bar`` and ``barh`` +-------------------- + +The default value of the ``align`` kwarg for both +`~.Axes.bar` and `~.Axes.barh` is changed from +``'edge'`` to ``'center'``. + + +.. plot:: + + import matplotlib.pyplot as plt + import numpy as np + + fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2, figsize=(5, 5)) + + def demo(bar_func, bar_kwargs): + return bar_func([1, 2, 3], [1, 2, 3], tick_label=['a', 'b', 'c'], + **bar_kwargs) + + + ax1.set_title("classic") + ax2.set_title('v2.0') + + demo(ax1.bar, {'align': 'edge'}) + demo(ax2.bar, {}) + demo(ax3.barh, {'align': 'edge'}) + demo(ax4.barh, {}) + + +To restore the previous behavior explicitly pass the keyword argument +``align='edge'`` to the method call. + + +Hatching +======== + + +The color of the lines in the hatch is now determined by + +- If an edge color is explicitly set, use that for the hatch color +- If the edge color is not explicitly set, use :rc:`hatch.color` which + is looked up at artist creation time. + +The width of the lines in a hatch pattern is now configurable by the +rcParams :rc:`hatch.linewidth`, which defaults to 1 point. The old +behavior for the line width was different depending on backend: + +- PDF: 0.1 pt +- SVG: 1.0 pt +- PS: 1 px +- Agg: 1 px + +The old line width behavior cannot be restored across all backends +simultaneously, but can be restored for a single backend by setting:: + + mpl.rcParams['hatch.linewidth'] = 0.1 # previous pdf hatch linewidth + mpl.rcParams['hatch.linewidth'] = 1.0 # previous svg hatch linewidth + +The behavior of the PS and Agg backends was DPI dependent, thus:: + + + mpl.rcParams['figure.dpi'] = dpi + mpl.rcParams['savefig.dpi'] = dpi # or leave as default 'figure' + mpl.rcParams['hatch.linewidth'] = 1.0 / dpi # previous ps and Agg hatch linewidth + + +There is no direct API level control of the hatch color or linewidth. + +Hatching patterns are now rendered at a consistent density, regardless of DPI. +Formerly, high DPI figures would be more dense than the default, and low DPI +figures would be less dense. This old behavior cannot be directly restored, +but the density may be increased by repeating the hatch specifier. + + +.. _default_changes_font: + +Fonts +===== + +Normal text +----------- + +The default font has changed from "Bitstream Vera Sans" to "DejaVu +Sans". DejaVu Sans has additional international and math characters, +but otherwise has the same appearance as Bitstream Vera Sans. +Latin, Greek, Cyrillic, Armenian, Georgian, Hebrew, and Arabic are +`all supported `__ +(but right-to-left rendering is still not handled by matplotlib). +In addition, DejaVu contains a sub-set of emoji symbols. + +.. plot:: + + from __future__ import unicode_literals + + import matplotlib.pyplot as plt + + fig, ax = plt.subplots() + tick_labels = ['😃', '😎', '😴', '😲', '😻'] + bar_labels = ['א', 'α', '☣', '⌬', 'ℝ'] + y = [1, 4, 9, 16, 25] + x = range(5) + ax.bar(x, y, tick_label=tick_labels, align='center') + ax.xaxis.set_tick_params(labelsize=20) + for _x, _y, t in zip(x, y, bar_labels): + ax.annotate(t, (_x, _y), fontsize=20, ha='center', + xytext=(0, -2), textcoords='offset pixels', + bbox={'facecolor': 'w'}) + + ax.set_title('Диаграмма со смайликами') + +See the `DejaVu Sans PDF sample for full coverage +`__. + +Math text +--------- + +The default math font when using the built-in math rendering engine +(mathtext) has changed from "Computer Modern" (i.e. LaTeX-like) to +"DejaVu Sans". This change has no effect if the +TeX backend is used (i.e. ``text.usetex`` is ``True``). + + +.. plot:: + + import matplotlib.pyplot as plt + import matplotlib as mpl + + mpl.rcParams['mathtext.fontset'] = 'cm' + mpl.rcParams['mathtext.rm'] = 'serif' + + fig, ax = plt.subplots(tight_layout=True, figsize=(3, 3)) + + ax.plot(range(15), label=r'int: $15 \int_0^\infty dx$') + ax.legend() + ax.set_title('classic') + + +.. plot:: + + import matplotlib.pyplot as plt + import matplotlib as mpl + + fig, ax = plt.subplots(tight_layout=True, figsize=(3, 3)) + + ax.plot(range(15), label=r'int: $15 \int_0^\infty dx$') + ax.legend() + ax.set_title('v2.0') + + + +To revert to the old behavior set the:: + + mpl.rcParams['mathtext.fontset'] = 'cm' + mpl.rcParams['mathtext.rm'] = 'serif' + +or set:: + + mathtext.fontset: cm + mathtext.rm : serif + + +in your :file:`matplotlibrc` file. + +This ``rcParam`` is consulted when the text is drawn, not when the +artist is created. Thus all mathtext on a given ``canvas`` will use the +same fontset. + + +Legends +======= + +- By default, the number of points displayed in a legend is now 1. +- The default legend location is ``'best'``, so the legend will be + automatically placed in a location to minimize overlap with data. +- The legend defaults now include rounded corners, a lighter + boundary, and partially transparent boundary and background. + +.. plot:: + + import matplotlib as mpl + import matplotlib.pyplot as plt + import numpy as np + + def demo(ax, rcparams, title): + np.random.seed(2) + N = 25 + with mpl.rc_context(rc=rcparams): + x = range(N) + y = np.cumsum(np.random.randn(N) ) + # unpack the single Line2D artist + ln, = ax.plot(x, y, marker='s', + linestyle='-', label='plot') + ax.fill_between(x, y, 0, label='fill', alpha=.5, color=ln.get_color()) + ax.scatter(N*np.random.rand(N), np.random.rand(N), label='scatter') + ax.set_title(title) + ax.legend() + + fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(6, 3), tight_layout=True) + + classic_rc = {'legend.fancybox': False, + 'legend.numpoints': 2, + 'legend.scatterpoints': 3, + 'legend.framealpha': None, + 'legend.edgecolor': 'inherit', + 'legend.loc': 'upper right', + 'legend.fontsize': 'large'} + + demo(ax1, classic_rc, 'classic') + demo(ax2, {}, 'v2.0') + + +The previous defaults can be restored by setting:: + + mpl.rcParams['legend.fancybox'] = False + mpl.rcParams['legend.loc'] = 'upper right' + mpl.rcParams['legend.numpoints'] = 2 + mpl.rcParams['legend.fontsize'] = 'large' + mpl.rcParams['legend.framealpha'] = None + mpl.rcParams['legend.scatterpoints'] = 3 + mpl.rcParams['legend.edgecolor'] = 'inherit' + + +or by setting:: + + legend.fancybox : False + legend.loc : upper right + legend.numpoints : 2 # the number of points in the legend line + legend.fontsize : large + legend.framealpha : None # opacity of legend frame + legend.scatterpoints : 3 # number of scatter points + legend.edgecolor : inherit # legend edge color ('inherit' + # means it uses axes.edgecolor) + +in your :file:`matplotlibrc` file. + +Image +===== + +Interpolation +------------- + +The default interpolation method for `~matplotlib.axes.Axes.imshow` is +now ``'nearest'`` and by default it resamples the data (both up and down +sampling) before colormapping. + + +.. plot:: + + import matplotlib.pyplot as plt + import matplotlib as mpl + import numpy as np + + + def demo(ax, rcparams, title): + np.random.seed(2) + A = np.random.rand(5, 5) + + with mpl.rc_context(rc=rcparams): + ax.imshow(A) + ax.set_title(title) + + fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(6, 3), tight_layout=True) + + classic_rcparams = {'image.interpolation': 'bilinear', + 'image.resample': False} + + demo(ax1, classic_rcparams, 'classic') + demo(ax2, {}, 'v2.0') + + +To restore the previous behavior set:: + + mpl.rcParams['image.interpolation'] = 'bilinear' + mpl.rcParams['image.resample'] = False + +or set:: + + image.interpolation : bilinear # see help(imshow) for options + image.resample : False + +in your :file:`matplotlibrc` file. + +Colormapping pipeline +--------------------- + +Previously, the input data was normalized, then colormapped, and then +resampled to the resolution required for the screen. This meant that +the final resampling was being done in color space. Because the color +maps are not generally linear in RGB space, colors not in the colormap +may appear in the final image. This bug was addressed by an almost +complete overhaul of the image handling code. + +The input data is now normalized, then resampled to the correct +resolution (in normalized dataspace), and then colormapped to +RGB space. This ensures that only colors from the colormap appear +in the final image. (If your viewer subsequently resamples the image, +the artifact may reappear.) + +The previous behavior cannot be restored. + + +Shading +------- + +- The default shading mode for light source shading, in + ``matplotlib.colors.LightSource.shade``, is now ``overlay``. + Formerly, it was ``hsv``. + + +Plot layout +=========== + +Auto limits +----------- + +The previous auto-scaling behavior was to find 'nice' round numbers +as view limits that enclosed the data limits, but this could produce +bad plots if the data happened to fall on a vertical or +horizontal line near the chosen 'round number' limit. The new default +sets the view limits to 5% wider than the data range. + +.. plot:: + + import matplotlib as mpl + import matplotlib.pyplot as plt + import numpy + + data = np.zeros(1000) + data[0] = 1 + + fig = plt.figure(figsize=(6, 3)) + + def demo(fig, rc, title, j): + with mpl.rc_context(rc=rc): + ax = fig.add_subplot(1, 2, j) + ax.plot(data) + ax.set_title(title) + + demo(fig, {'axes.autolimit_mode': 'round_numbers', + 'axes.xmargin': 0, + 'axes.ymargin': 0}, 'classic', 1) + demo(fig, {}, 'v2.0', 2) + +The size of the padding in the x and y directions is controlled by the +``'axes.xmargin'`` and ``'axes.ymargin'`` rcParams respectively. Whether +the view limits should be 'round numbers' is controlled by +:rc:`axes.autolimit_mode`. In the original ``'round_number'`` mode, +the view limits coincide with ticks. + +The previous default can be restored by using:: + + mpl.rcParams['axes.autolimit_mode'] = 'round_numbers' + mpl.rcParams['axes.xmargin'] = 0 + mpl.rcParams['axes.ymargin'] = 0 + +or setting:: + + axes.autolimit_mode: round_numbers + axes.xmargin: 0 + axes.ymargin: 0 + +in your :file:`matplotlibrc` file. + + +Z-order +------- + +- Ticks and grids are now plotted above solid elements such as + filled contours, but below lines. To return to the previous + behavior of plotting ticks and grids above lines, set + ``rcParams['axes.axisbelow'] = False``. + + +Ticks +----- + +Direction +~~~~~~~~~ + +To reduce the collision of tick marks with data, the default ticks now +point outward by default. In addition, ticks are now drawn only on +the bottom and left spines to prevent a porcupine appearance, and for +a cleaner separation between subplots. + + +.. plot:: + + import matplotlib as mpl + import matplotlib.pyplot as plt + import numpy as np + + th = np.linspace(0, 2*np.pi, 128) + y = np.sin(th) + + def demo(fig, rcparams, title, j): + np.random.seed(2) + with mpl.rc_context(rc=rcparams): + + ax = fig.add_subplot(2, 2, j) + ax.hist(np.random.beta(0.5, 0.5, 10000), 25, density=True) + ax.set_xlim([0, 1]) + ax.set_title(title) + + ax = fig.add_subplot(2, 2, j + 2) + ax.imshow(np.random.rand(5, 5)) + + classic = {'xtick.direction': 'in', + 'ytick.direction': 'in', + 'xtick.top': True, + 'ytick.right': True} + + fig = plt.figure(figsize=(6, 6), tight_layout=True) + + demo(fig, classic, 'classic', 1) + demo(fig, {}, 'v2.0', 2) + + +To restore the previous behavior set:: + + mpl.rcParams['xtick.direction'] = 'in' + mpl.rcParams['ytick.direction'] = 'in' + mpl.rcParams['xtick.top'] = True + mpl.rcParams['ytick.right'] = True + +or set:: + + xtick.top: True + xtick.direction: in + + ytick.right: True + ytick.direction: in + +in your :file:`matplotlibrc` file. + + + +Number of ticks +~~~~~~~~~~~~~~~ + +The default `~matplotlib.ticker.Locator` used for the x and y axis is +`~matplotlib.ticker.AutoLocator` which tries to find, up to some +maximum number, 'nicely' spaced ticks. The locator now includes +an algorithm to estimate the maximum number of ticks that will leave +room for the tick labels. By default it also ensures that there are at least +two ticks visible. + +.. plot:: + + import matplotlib.pyplot as plt + import numpy as np + + from matplotlib.ticker import AutoLocator + + fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(4, 3), tight_layout=True) + ax1.set_xlim(0, .1) + ax2.set_xlim(0, .1) + + ax1.xaxis.get_major_locator().set_params(nbins=9, steps=[1, 2, 5, 10]) + ax1.set_title('classic') + ax2.set_title('v2.0') + +There is no way, other than using ``mpl.style.use('classic')``, to restore the +previous behavior as the default. On an axis-by-axis basis you may either +control the existing locator via: :: + + ax.xaxis.get_major_locator().set_params(nbins=9, steps=[1, 2, 5, 10]) + +or create a new `~matplotlib.ticker.MaxNLocator`:: + + import matplotlib.ticker as mticker + ax.set_major_locator(mticker.MaxNLocator(nbins=9, steps=[1, 2, 5, 10]) + +The algorithm used by `~matplotlib.ticker.MaxNLocator` has been +improved, and this may change the choice of tick locations in some +cases. This also affects `~matplotlib.ticker.AutoLocator`, which +uses ``MaxNLocator`` internally. + +For a log-scaled axis the default locator is the +`~matplotlib.ticker.LogLocator`. Previously the maximum number +of ticks was set to 15, and could not be changed. Now there is a +*numticks* kwarg for setting the maximum to any integer value, +to the string 'auto', or to its default value of None which is +equivalent to 'auto'. With the 'auto' setting the maximum number +will be no larger than 9, and will be reduced depending on the +length of the axis in units of the tick font size. As in the +case of the AutoLocator, the heuristic algorithm reduces the +incidence of overlapping tick labels but does not prevent it. + + +Tick label formatting +--------------------- + +``LogFormatter`` labeling of minor ticks +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Minor ticks on a log axis are now labeled when the axis view limits +span a range less than or equal to the interval between two major +ticks. See `~matplotlib.ticker.LogFormatter` for details. The +minor tick labeling is turned off when using ``mpl.style.use('classic')``, +but cannot be controlled independently via `.rcParams`. + +.. plot:: + + import numpy as np + import matplotlib.pyplot as plt + + np.random.seed(2) + + fig, (ax1, ax2) = plt.subplots(ncols=2, figsize=(6, 3)) + fig.subplots_adjust(wspace=0.35, left=0.09, right=0.95) + + x = np.linspace(0.9, 1.7, 10) + y = 10 ** x[np.random.randint(0, 10, 10)] + + ax2.semilogy(x, y) + ax2.set_title('v2.0') + + with plt.style.context('classic'): + ax1.semilogy(x, y) + ax1.set_xlim(ax2.get_xlim()) + ax1.set_ylim(ax2.get_ylim()) + ax1.set_title('classic') + + +``ScalarFormatter`` tick label formatting with offsets +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +With the default :rc:`axes.formatter.useoffset`, +an offset will be used when it will save 4 or more digits. This can +be controlled with the new :rc:`axes.formatter.offset_threshold`. +To restore the previous behavior of using an offset to save 2 or more +digits, use ``rcParams['axes.formatter.offset_threshold'] = 2``. + +.. plot:: + + import numpy as np + import matplotlib.pyplot as plt + + np.random.seed(5) + + fig = plt.figure(figsize=(6, 3)) + fig.subplots_adjust(bottom=0.15, wspace=0.3, left=0.09, right=0.95) + + x = np.linspace(2000, 2008, 9) + y = np.random.randn(9) + 50000 + + with plt.rc_context(rc={'axes.formatter.offset_threshold' : 2}): + ax1 = fig.add_subplot(1, 2, 1) + ax1.plot(x, y) + ax1.set_title('classic') + + ax2 = fig.add_subplot(1, 2, 2) + ax2.plot(x, y) + ax2.set_title('v2.0') + + +``AutoDateFormatter`` format strings +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The default date formats are now all based on ISO format, i.e., with +the slowest-moving value first. The date formatters are +configurable through the ``date.autoformatter.*`` rcParams. + + ++--------------------------------------+--------------------------------------+-------------------+-------------------+ +| Threshold (tick interval >= than) | rcParam | classic | v2.0 | ++======================================+======================================+===================+===================+ +| 365 days | ``'date.autoformatter.year'`` | ``'%Y'`` | ``'%Y'`` | ++--------------------------------------+--------------------------------------+-------------------+-------------------+ +| 30 days | ``'date.autoformatter.month'`` | ``'%b %Y'`` | ``'%Y-%m'`` | ++--------------------------------------+--------------------------------------+-------------------+-------------------+ +| 1 day | ``'date.autoformatter.day'`` | ``'%b %d %Y'`` | ``'%Y-%m-%d'`` | ++--------------------------------------+--------------------------------------+-------------------+-------------------+ +| 1 hour | ``'date.autoformatter.hour'`` | ``'%H:%M:%S'`` | ``'%H:%M'`` | ++--------------------------------------+--------------------------------------+-------------------+-------------------+ +| 1 minute | ``'date.autoformatter.minute'`` | ``'%H:%M:%S.%f'`` | ``'%H:%M:%S'`` | ++--------------------------------------+--------------------------------------+-------------------+-------------------+ +| 1 second | ``'date.autoformatter.second'`` | ``'%H:%M:%S.%f'`` | ``'%H:%M:%S'`` | ++--------------------------------------+--------------------------------------+-------------------+-------------------+ +| 1 microsecond | ``'date.autoformatter.microsecond'`` | ``'%H:%M:%S.%f'`` | ``'%H:%M:%S.%f'`` | ++--------------------------------------+--------------------------------------+-------------------+-------------------+ + + + +Python's ``%x`` and ``%X`` date formats may be of particular interest +to format dates based on the current locale. + +The previous default can be restored by:: + + mpl.rcParams['date.autoformatter.year'] = '%Y' + mpl.rcParams['date.autoformatter.month'] = '%b %Y' + mpl.rcParams['date.autoformatter.day'] = '%b %d %Y' + mpl.rcParams['date.autoformatter.hour'] = '%H:%M:%S' + mpl.rcParams['date.autoformatter.minute'] = '%H:%M:%S.%f' + mpl.rcParams['date.autoformatter.second'] = '%H:%M:%S.%f' + mpl.rcParams['date.autoformatter.microsecond'] = '%H:%M:%S.%f' + + +or setting :: + + date.autoformatter.year : %Y + date.autoformatter.month : %b %Y + date.autoformatter.day : %b %d %Y + date.autoformatter.hour : %H:%M:%S + date.autoformatter.minute : %H:%M:%S.%f + date.autoformatter.second : %H:%M:%S.%f + date.autoformatter.microsecond : %H:%M:%S.%f + +in your :file:`matplotlibrc` file. + +mplot3d +======= + +- mplot3d now obeys some style-related rcParams, rather than using + hard-coded defaults. These include: + + - xtick.major.width + - ytick.major.width + - xtick.color + - ytick.color + - axes.linewidth + - axes.edgecolor + - grid.color + - grid.linewidth + - grid.linestyle diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.0.0.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.0.0.rst new file mode 100644 index 0000000000000000000000000000000000000000..ab90e5e79e4e7f79fc20846550d04bd6e0e510fb --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.0.0.rst @@ -0,0 +1,1221 @@ +.. _github-stats-3-0-0: + +GitHub statistics for 3.0.0 (Sep 18, 2018) +========================================== + +GitHub statistics for 2017/01/17 (tag: v2.0.0) - 2018/09/18 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 123 issues and merged 598 pull requests. +The full list can be seen `on GitHub `__ + +The following 478 authors contributed 9809 commits. + +* 816-8055 +* Aashil Patel +* AbdealiJK +* Adam +* Adam Williamson +* Adrian Price-Whelan +* Adrien Chardon +* Adrien F. Vincent +* ahed87 +* akrherz +* Akshay Nair +* Alan Bernstein +* Alberto +* alcinos +* Aleksey Bilogur +* Alex Rothberg +* Alexander Buchkovsky +* Alexander Harnisch +* AlexCav +* Alexis Bienvenüe +* Ali Uneri +* Allan Haldane +* Allen Downey +* Alvaro Sanchez +* alvarosg +* AndersonDaniel +* Andras Deak +* Andreas Gustafsson +* Andreas Hilboll +* Andreas Mayer +* Andreas Mueller +* Andrew Nelson +* Andy Mastbaum +* aneda +* Anthony Scopatz +* Anton Akhmerov +* Antony Lee +* aparamon +* apodemus +* Arthur Paulino +* Arvind +* as691454 +* ash13 +* Atharva Khare +* Avinash Sharma +* Bastian Bechtold +* bduick +* Ben +* Ben Root +* Benedikt Daurer +* Benjamin Berg +* Benjamin Congdon +* Bernhard M. Wiedemann +* BHT +* Bianca Gibson +* Björn Dahlgren +* Blaise Thompson +* Boaz Mohar +* Brendan Zhang +* Brennan Magee +* Bruno Zohreh +* BTWS +* buefox +* Cameron Davidson-Pilon +* Cameron Fackler +* cclauss +* ch3rn0v +* Charles Ruan +* chelseatroy +* Chen Karako +* Chris Holdgraf +* Christoph Deil +* Christoph Gohlke +* Cimarron Mittelsteadt +* CJ Carey +* cknd +* cldssty +* clintval +* Cody Scot +* Colin +* Conner R. Phillips +* Craig Citro +* DaCoEx +* dahlbaek +* Dakota Blair +* Damian +* Dan Hickstein +* Dana +* Daniel C. Marcu +* Daniel Laidig +* danielballan +* Danny Hermes +* daronjp +* DaveL17 +* David A +* David Brooks +* David Kent +* David Stansby +* deeenes +* deepyaman +* Derek Kim +* Derek Tropf +* Devashish Deshpande +* Diego Mora Cespedes +* Dietmar Schwertberger +* Dietrich Brunn +* Divyam Madaan +* dlmccaffrey +* Dmitry Shachnev +* Dora Fraeman +* DoriekeMG +* Dorota Jarecka +* Doug Blank +* Drew J. Sonne +* Duncan Macleod +* Dylan Evans +* E. G. Patrick Bos +* Egor Panfilov +* Elijah Schutz +* Elizabeth Seiver +* Elliott Sales de Andrade +* Elvis Stansvik +* Emlyn Price +* endolith +* Eric Dill +* Eric Firing +* Eric Galloway +* Eric Larson +* Eric Wang (Mac) +* Eric Wieser +* Erik M. Bray +* Erin Pintozzi +* et2010 +* Ethan Ligon +* Eugene Yurtsev +* Fabian Kloosterman +* Fabian-Robert Stöter +* FedeMiorelli +* Federico Ariza +* Felix +* Felix Kohlgrüber +* Felix Yan +* Filip Dimitrovski +* Florencia Noriega +* Florian Le Bourdais +* Franco Vaccari +* Francoise Provencher +* Frank Yu +* fredrik-1 +* fuzzythecat +* Gabe +* Gabriel Munteanu +* Gauravjeet +* Gaute Hope +* gcallah +* Geoffrey Spear +* gnaggnoyil +* goldstarwebs +* Graeme Smecher +* greg-roper +* gregorybchris +* Grillard +* Guillermo Breto +* Gustavo Goretkin +* Hajoon Choi +* Hakan Kucukdereli +* hannah +* Hans Moritz Günther +* Harnesser +* Harshal Prakash Patankar +* Harshit Patni +* Hassan Kibirige +* Hastings Greer +* Heath Henley +* Heiko Oberdiek +* Helder +* helmiriawan +* Henning Pohl +* Herbert Kruitbosch +* HHest +* Hubert Holin +* Ian Thomas +* Ida Hjorth +* Ildar Akhmetgaleev +* ilivni +* Ilya Flyamer +* ImportanceOfBeingErnest +* ImSoErgodic +* Isa Hassen +* Isaac Schwabacher +* Isaac Slavitt +* Ismo Toijala +* J Alammar +* J. Goutin +* Jaap Versteegh +* Jacob McDonald +* jacob-on-github +* Jae-Joon Lee +* Jake Vanderplas +* James A. Bednar +* Jamie Nunez +* Jan Koehler +* Jan Schlüter +* Jan Schulz +* Jarrod Millman +* Jason King +* Jason Neal +* Jason Zheng +* jbhopkins +* jdollichon +* Jeffrey Hokanson @ Loki +* JelsB +* Jens Hedegaard Nielsen +* Jerry Lui +* jerrylui803 +* jhelie +* jli +* Jody Klymak +* joelostblom +* Johannes Wienke +* John Hoffman +* John Vandenberg +* Johnny Gill +* JojoBoulix +* jonchar +* Joseph Albert +* Joseph Fox-Rabinovitz +* Joseph Jon Booker +* Joseph Martinot-Lagarde +* Jouni K. Seppänen +* Juan Nunez-Iglesias +* Julia Sprenger +* Julian Mehne +* Julian V. Modesto +* Julien Lhermitte +* Julien Schueller +* Jun Tan +* Justin Cai +* Jörg Dietrich +* Kacper Kowalik (Xarthisius) +* Kanchana Ranasinghe +* Katrin Leinweber +* Keerysanth Sribaskaran +* keithbriggs +* Kenneth Ma +* Kevin Davies +* Kevin Ji +* Kevin Keating +* Kevin Rose +* Kexuan Sun +* khyox +* Kieran Ramos +* Kjartan Myrdal +* Kjell Le +* Klara Gerlei +* klaus +* klonuo +* Kristen M. Thyng +* kshramt +* Kyle Bridgemohansingh +* Kyle Sunden +* Kyler Brown +* Laptop11_ASPP2016 +* lboogaard +* legitz7 +* Leo Singer +* Leon Yin +* Levi Kilcher +* Liam Brannigan +* Lionel Miller +* lspvic +* Luca Verginer +* Luis Pedro Coelho +* luz.paz +* lzkelley +* Maarten Baert +* Magnus Nord +* mamrehn +* Manish Devgan +* Manuel Jung +* Mark Harfouche +* Martin Fitzpatrick +* Martin Spacek +* Massimo Santini +* Matt Hancock +* Matt Newville +* Matthew Bell +* Matthew Brett +* Matthias Bussonnier +* Matthias Lüthi +* Matti Picus +* Maximilian Albert +* Maximilian Maahn +* Maximilian Nöthe +* mcquin +* Mher Kazandjian +* Michael Droettboom +* Michael Scott Cuthbert +* Michael Seifert +* Michiel de Hoon +* Mike Henninger +* Mike Jarvis +* MinRK +* Mitar +* mitch +* mlub +* mobando +* Molly Rossow +* Moritz Boehle +* muahah +* Mudit Surana +* myyc +* Naoya Kanai +* Nathan Goldbaum +* Nathan Musoke +* Nathaniel M. Beaver +* navdeep rana +* nbrunett +* Nelle Varoquaux +* nemanja +* neok-m4700 +* nepix32 +* Nick Forrington +* Nick Garvey +* Nick Papior +* Nico Schlömer +* Nicolas P. Rougier +* Nicolas Tessore +* Nik Quibin +* Nikita Kniazev +* Nils Werner +* Ninad Bhat +* nmartensen +* Norman Fomferra +* ob +* OceanWolf +* Olivier +* Orso Meneghini +* Osarumwense +* Pankaj Pandey +* Paramonov Andrey +* Pastafarianist +* Paul Ganssle +* Paul Hobson +* Paul Ivanov +* Paul Kirow +* Paul Romano +* Paul Seyfert +* Pavol Juhas +* pdubcali +* Pete Huang +* Pete Peterson +* Peter Mackenzie-Helnwein +* Peter Mortensen +* Peter Würtz +* Petr Danecek +* pharshalp +* Phil Elson +* Phil Ruffwind +* Pierre de Buyl +* Pierre Haessig +* Pranav Garg +* productivememberofsociety666 +* Przemysław Dąbek +* Qingpeng "Q.P." Zhang +* RAKOTOARISON Herilalaina +* Ramiro Gómez +* Randy Olson +* rebot +* Richard Gowers +* Rishikesh +* Rob Harrigan +* Robin Dunn +* Robin Neatherway +* Robin Wilson +* Ronald Hartley-Davies +* Roy Smith +* Rui Lopes +* ruin +* rvhbooth +* Ryan +* Ryan May +* Ryan Morshead +* RyanPan +* s0vereign +* Saket Choudhary +* Salganos +* Salil Vanvari +* Salinder Sidhu +* Sam Vaughan +* Samson +* Samuel St-Jean +* Sander +* scls19fr +* Scott Howard +* Scott Lasley +* scott-vsi +* Sean Farley +* Sebastian Raschka +* Sebastián Vanrell +* Seraphim Alvanides +* Sergey B Kirpichev +* serv-inc +* settheory +* shaunwbell +* Simon Gibbons +* simonpf +* sindunuragarp +* Sourav Singh +* Stefan Pfenninger +* Stephan Erb +* Sterling Smith +* Steven Silvester +* Steven Tilley +* stone +* stonebig +* Tadeo Corradi +* Taehoon Lee +* Tanuj +* Taras +* Taras Kuzyo +* TD22057 +* Ted Petrou +* terranjp +* Terrence J. Katzenbaer +* Terrence Katzenbaer +* The Gitter Badger +* Thomas A Caswell +* Thomas Hisch +* Thomas Levine +* Thomas Mansencal +* Thomas Robitaille +* Thomas Spura +* Thomas VINCENT +* Thorsten Liebig +* thuvejan +* Tian Xia +* Till Stensitzki +* Tim Hoffmann +* tmdavison +* Tobias Froehlich +* Tobias Megies +* Tom +* Tom Augspurger +* Tom Dupré la Tour +* tomoemon +* tonyyli +* Trish Gillett-Kawamoto +* Truong Pham +* Tuan Dung Tran +* u55 +* ultra-andy +* V. R +* vab9 +* Valentin Schmidt +* Vedant Nanda +* Vidur Satija +* vraelvrangr +* Víctor Zabalza +* WANG Aiyong +* Warren Weckesser +* watkinrt +* Wieland Hoffmann +* Will Silva +* William Granados +* William Mallard +* Xufeng Wang +* y1thof +* Yao-Yuan Mao +* Yuval Langer +* Zac Hatfield-Dodds +* Zbigniew Jędrzejewski-Szmek +* zhangeugenia +* ZhaoZhonglun1991 +* zhoubecky +* ZWL +* Élie Gouzien +* Андрей Парамонов + +GitHub issues and pull requests: + +Pull Requests (598): + +* :ghpull:`12145`: Doc final 3.0 docs +* :ghpull:`12143`: Backport PR #12142 on branch v3.0.x (Unbreak formlayout for image edits.) +* :ghpull:`12142`: Unbreak formlayout for image edits. +* :ghpull:`12135`: Backport PR #12131 on branch v3.0.x (Fixes currently release version of cartopy) +* :ghpull:`12131`: Fixes currently release version of cartopy +* :ghpull:`12129`: Backports for 3.0 +* :ghpull:`12132`: Backport PR #12130 on branch v3.0.x (Mention colorbar.minorticks_on/off in references) +* :ghpull:`12130`: Mention colorbar.minorticks_on/off in references +* :ghpull:`12099`: FIX: make sure all ticks show up for colorbar minor tick +* :ghpull:`11962`: Propagate changes to backend loading to setup/setupext. +* :ghpull:`12128`: Unbreak the Sphinx 1.8 build by renaming :math: to :mathmpl:. +* :ghpull:`12126`: Backport PR #12117 on branch v3.0.x (Fix Agg extent calculations for empty draws) +* :ghpull:`12113`: Backport PR #12112 on branch v3.0.x (Reword the LockDraw docstring.) +* :ghpull:`12112`: Reword the LockDraw docstring. +* :ghpull:`12110`: Backport PR #12109 on branch v3.0.x (Pin to sphinx<1.8; unremove sphinxext.mathmpl.) +* :ghpull:`12084`: DOC: link palettable +* :ghpull:`12096`: Backport PR #12092 on branch v3.0.x (Update backend_qt5agg to fix PySide2 mem issues) +* :ghpull:`12083`: Backport PR #12012 on branch v3.0.x (FIX: fallback text renderer to fig._cachedRenderer, if none found) +* :ghpull:`12081`: Backport PR #12037 on branch v3.0.x (Fix ArtistInspector.get_aliases.) +* :ghpull:`12080`: Backport PR #12053 on branch v3.0.x (Fix up some OSX backend issues) +* :ghpull:`12037`: Fix ArtistInspector.get_aliases. +* :ghpull:`12053`: Fix up some OSX backend issues +* :ghpull:`12064`: Backport PR #11971 on branch v3.0.x (FIX: use cached renderer on Legend.get_window_extent) +* :ghpull:`12063`: Backport PR #12036 on branch v3.0.x (Interactive tests update) +* :ghpull:`11928`: Update doc/conf.py to avoid warnings with (future) sphinx 1.8. +* :ghpull:`12048`: Backport PR #12047 on branch v3.0.x (Remove asserting about current backend at the end of mpl_test_settings.) +* :ghpull:`11971`: FIX: use cached renderer on Legend.get_window_extent +* :ghpull:`12036`: Interactive tests update +* :ghpull:`12029`: Backport PR #12022 on branch v3.0.x (Remove intent to deprecate rcParams["backend_fallback"].) +* :ghpull:`12047`: Remove asserting about current backend at the end of mpl_test_settings. +* :ghpull:`12020`: Backport PR #12019 on branch v3.0.x (typo: s/unmultipled/unmultiplied) +* :ghpull:`12022`: Remove intent to deprecate rcParams["backend_fallback"]. +* :ghpull:`12028`: Backport PR #12023 on branch v3.0.x (Fix deprecation check in wx Timer.) +* :ghpull:`12023`: Fix deprecation check in wx Timer. +* :ghpull:`12019`: typo: s/unmultipled/unmultiplied +* :ghpull:`12017`: Backport PR #12016 on branch v3.0.x (Fix AttributeError in GTK3Agg backend) +* :ghpull:`12016`: Fix AttributeError in GTK3Agg backend +* :ghpull:`11991`: Backport PR #11988 on branch v3.0.x +* :ghpull:`11978`: Backport PR #11973 on branch v3.0.x +* :ghpull:`11968`: Backport PR #11963 on branch v3.0.x +* :ghpull:`11967`: Backport PR #11961 on branch v3.0.x +* :ghpull:`11969`: Fix an invalid escape sequence. +* :ghpull:`11963`: Fix some lgtm convention alerts +* :ghpull:`11961`: Downgrade backend_version log to DEBUG level. +* :ghpull:`11953`: Backport PR #11896 on branch v3.0.x +* :ghpull:`11896`: Resolve backend in rcParams.__getitem__("backend"). +* :ghpull:`11950`: Backport PR #11934 on branch v3.0.x +* :ghpull:`11952`: Backport PR #11949 on branch v3.0.x +* :ghpull:`11949`: Remove test2.png from examples. +* :ghpull:`11934`: Suppress the "non-GUI backend" warning from the .. plot:: directive... +* :ghpull:`11918`: Backport PR #11917 on branch v3.0.x +* :ghpull:`11916`: Backport PR #11897 on branch v3.0.x +* :ghpull:`11915`: Backport PR #11591 on branch v3.0.x +* :ghpull:`11897`: HTMLWriter, put initialisation of frames in setup +* :ghpull:`11591`: BUG: correct the scaling in the floating-point slop test. +* :ghpull:`11910`: Backport PR #11907 on branch v3.0.x +* :ghpull:`11907`: Move TOC back to top in axes documentation +* :ghpull:`11904`: Backport PR #11900 on branch v3.0.x +* :ghpull:`11900`: Allow args to pass through _allow_super_init +* :ghpull:`11889`: Backport PR #11847 on branch v3.0.x +* :ghpull:`11890`: Backport PR #11850 on branch v3.0.x +* :ghpull:`11850`: FIX: macosx framework check +* :ghpull:`11883`: Backport PR #11862 on branch v3.0.x +* :ghpull:`11882`: Backport PR #11876 on branch v3.0.x +* :ghpull:`11876`: MAINT Better error message for number of colors versus number of data… +* :ghpull:`11862`: Fix NumPy FutureWarning for non-tuple indexing. +* :ghpull:`11845`: Use Format_ARGB32_Premultiplied instead of RGBA8888 for Qt backends. +* :ghpull:`11843`: Remove unnecessary use of nose. +* :ghpull:`11600`: backend switching -- don't create a public fallback API +* :ghpull:`11833`: adding show inheritance to autosummary template +* :ghpull:`11828`: changed warning in animation +* :ghpull:`11829`: func animation warning changes +* :ghpull:`11826`: DOC documented more of the gridspec options +* :ghpull:`11818`: Merge v2.2.x +* :ghpull:`11821`: DOC: remove multicolumns from examples +* :ghpull:`11819`: DOC: fix minor typo in figure example +* :ghpull:`11722`: Remove unnecessary hacks from setup.py. +* :ghpull:`11802`: gridspec tutorial edits +* :ghpull:`11801`: update annotations +* :ghpull:`11734`: Small cleanups to backend_agg. +* :ghpull:`11785`: Add missing API changes +* :ghpull:`11788`: Fix DeprecationWarning on LocatableAxes +* :ghpull:`11558`: Added xkcd Style for Markers (plot only) +* :ghpull:`11755`: Add description for metadata argument of savefig +* :ghpull:`11703`: FIX: make update-from also set the original face/edgecolor +* :ghpull:`11765`: DOC: reorder examples and fix top level heading +* :ghpull:`11724`: Fix cairo's image inversion and alpha misapplication. +* :ghpull:`11726`: Consolidate agg-buffer examples. +* :ghpull:`11754`: FIX: update spine positions before get extents +* :ghpull:`11779`: Remove unused attribute in tests. +* :ghpull:`11770`: Correct errors in documentation +* :ghpull:`11778`: Unpin pandas in the CI. +* :ghpull:`11772`: Clarifying an error message +* :ghpull:`11760`: Switch grid documentation to numpydoc style +* :ghpull:`11705`: Suppress/fix some test warnings. +* :ghpull:`11763`: Pin OSX CI to numpy<1.15 to unbreak the build. +* :ghpull:`11767`: Add tolerance to csd frequency test +* :ghpull:`11757`: PGF backend output text color even if black +* :ghpull:`11751`: Remove the unused 'verbose' option from setupext. +* :ghpull:`9084`: Require calling a _BoundMethodProxy to get the underlying callable. +* :ghpull:`11752`: Fix section level of Previous Whats New +* :ghpull:`10513`: Replace most uses of getfilesystemencoding by os.fs{en,de}code. +* :ghpull:`11739`: fix tight_layout bug #11737 +* :ghpull:`11744`: minor doc update on axes_grid1's inset_axes +* :ghpull:`11729`: Pass 'figure' as kwarg to FigureCanvasQt5Agg super __init__. +* :ghpull:`11736`: Remove unused needs_sphinx marker; move importorskip to toplevel. +* :ghpull:`11731`: Directly get the size of the renderer buffer from the renderer. +* :ghpull:`11717`: DOC: fix broken link in inset-locator example +* :ghpull:`11723`: Start work on making colormaps picklable. +* :ghpull:`11721`: Remove some references to colorConverter. +* :ghpull:`11713`: Don't assume cwd in test_ipynb. +* :ghpull:`11026`: ENH add an inset_axes to the axes class +* :ghpull:`11712`: Fix drawing on qt+retina. +* :ghpull:`11714`: docstring for Figure.tight_layout don't include renderer parameter +* :ghpull:`8951`: Let QPaintEvent tell us what region to repaint. +* :ghpull:`11234`: Add fig.add_artist method +* :ghpull:`11706`: Remove unused private method. +* :ghpull:`11637`: Split API changes into individual pages +* :ghpull:`10403`: Deprecate LocatableAxes from toolkits +* :ghpull:`11699`: Dedent overindented rst bullet lists. +* :ghpull:`11701`: Use skipif instead of xfail when test dependencies are missing. +* :ghpull:`11700`: Don't use pytest -rw now that pytest-warnings is builtin. +* :ghpull:`11696`: Don't force backend in toolmanager example. +* :ghpull:`11690`: Avoid using private APIs in examples. +* :ghpull:`11684`: Style +* :ghpull:`11666`: TESTS: Increase tolerance for aarch64 tests +* :ghpull:`11680`: Boring style fixes. +* :ghpull:`11678`: Use super() instead of manually fetching supermethods for parasite axes. +* :ghpull:`11679`: Remove pointless draw() at the end of static examples. +* :ghpull:`11676`: Remove unused C++ code. +* :ghpull:`11010`: ENH: Add gridspec method to figure, and subplotspecs +* :ghpull:`11672`: Add comment re: use of lru_cache in PsfontsMap. +* :ghpull:`11674`: Boring style fixes. +* :ghpull:`10954`: Cache various dviread constructs globally. +* :ghpull:`9150`: Don't update style-blacklisted rcparams in rc_* functions +* :ghpull:`10936`: Simplify tkagg C extension. +* :ghpull:`11378`: SVG Backend gouraud_triangle Correction +* :ghpull:`11383`: FIX: Improve *c* (color) kwarg checking in scatter and the related exceptions +* :ghpull:`11627`: FIX: CL avoid fully collapsed axes +* :ghpull:`11504`: Bump pgi requirement to 0.0.11.2. +* :ghpull:`11640`: Fix barplot color if none and alpha is set +* :ghpull:`11443`: changed paths in kwdocs +* :ghpull:`11626`: Minor docstring fixes +* :ghpull:`11631`: DOC: better tight_layout error handling +* :ghpull:`11651`: Remove unused imports in examples +* :ghpull:`11633`: Clean up next api_changes +* :ghpull:`11643`: Fix deprecation messages. +* :ghpull:`9223`: Set norm to log if bins=='log' in hexbin +* :ghpull:`11622`: FIX: be forgiving about the event for enterEvent not having a pos +* :ghpull:`11581`: backend switching. +* :ghpull:`11616`: Fix some doctest issues +* :ghpull:`10872`: Cleanup _plot_args_replacer logic +* :ghpull:`11617`: Clean up what's new +* :ghpull:`11610`: FIX: let colorbar extends work for PowerNorm +* :ghpull:`11615`: Revert glyph warnings +* :ghpull:`11614`: CI: don't run tox to test pytz +* :ghpull:`11603`: Doc merge up +* :ghpull:`11613`: Make flake8 exceptions explicit +* :ghpull:`11611`: Fix css for parameter types +* :ghpull:`10001`: MAINT/BUG: Don't use 5-sided quadrilaterals in Axes3D.plot_surface +* :ghpull:`10234`: PowerNorm: do not clip negative values +* :ghpull:`11398`: Simplify retrieval of cache and config directories +* :ghpull:`10682`: ENH have ax.get_tightbbox have a bbox around all artists attached to axes. +* :ghpull:`11590`: Don't associate Wx timers with the parent frame. +* :ghpull:`10245`: Cache paths of fonts shipped with mpl relative to the mpl data path. +* :ghpull:`11381`: Deprecate text.latex.unicode. +* :ghpull:`11601`: FIX: subplots don't mutate kwargs passed by user. +* :ghpull:`11609`: Remove _macosx.NavigationToolbar. +* :ghpull:`11608`: Remove some conditional branches in examples for wx<4. +* :ghpull:`11604`: TST: Place animation files in a temp dir. +* :ghpull:`11605`: Suppress a spurious missing-glyph warning with ft2font. +* :ghpull:`11360`: Pytzectomy +* :ghpull:`10885`: Move GTK3 setupext checks to within the process. +* :ghpull:`11081`: Help tool for Wx backends +* :ghpull:`10851`: Wx Toolbar for ToolManager +* :ghpull:`11247`: Remove mplDeprecation +* :ghpull:`9795`: Backend switching +* :ghpull:`9426`: Don't mark a patch transform as set if the parent transform is not set. +* :ghpull:`9175`: Warn on freetype missing glyphs. +* :ghpull:`11412`: Make contour and contourf color assignments consistent. +* :ghpull:`11477`: Enable flake8 and re-enable it everywhere +* :ghpull:`11165`: Fix figure window icon +* :ghpull:`11584`: ENH: fix colorbar bad minor ticks +* :ghpull:`11438`: ENH: add get_gridspec convenience method to subplots +* :ghpull:`11451`: Cleanup Matplotlib API docs +* :ghpull:`11579`: DOC update some examples to use constrained_layout=True +* :ghpull:`11594`: Some more docstring cleanups. +* :ghpull:`11593`: Skip wx interactive tests on OSX. +* :ghpull:`11592`: Remove some extra spaces in docstrings/comments. +* :ghpull:`11585`: Some doc cleanup of Triangulation +* :ghpull:`10474`: Use TemporaryDirectory instead of mkdtemp in a few places. +* :ghpull:`11240`: Deprecate the examples.directory rcParam. +* :ghpull:`11370`: Sorting drawn artists by their zorder when blitting using FuncAnimation +* :ghpull:`11576`: Add parameter doc to save_diff_image +* :ghpull:`11573`: Inline setup_external_compile into setupext. +* :ghpull:`11571`: Cleanup stix_fonts_demo example. +* :ghpull:`11563`: Use explicit signature in pyplot.close() +* :ghpull:`9801`: ENH: Change default Autodatelocator *interval_multiples* +* :ghpull:`11570`: More simplifications to FreeType setup on Windows. +* :ghpull:`11401`: Some py3fications. +* :ghpull:`11566`: Cleanups. +* :ghpull:`11520`: Add private API retrieving the current event loop and backend GUI info. +* :ghpull:`11544`: Restore axes sharedness when unpickling. +* :ghpull:`11568`: Figure.text changes +* :ghpull:`11248`: Simplify FreeType Windows build. +* :ghpull:`11556`: Fix colorbar bad ticks +* :ghpull:`11494`: Fix CI install of wxpython. +* :ghpull:`11564`: triinterpolate cleanups. +* :ghpull:`11548`: Use numpydoc-style parameter lists for choices +* :ghpull:`9583`: Add edgecolors kwarg to contourf +* :ghpull:`10275`: Update contour.py and widget.py +* :ghpull:`11547`: Fix example links +* :ghpull:`11555`: Fix spelling in title +* :ghpull:`11404`: FIX: don't include text at -inf in bbox +* :ghpull:`11455`: Fixing the issue where right column and top row generate wrong stream… +* :ghpull:`11297`: Prefer warn_deprecated instead of warnings.warn. +* :ghpull:`11495`: Update the documentation guidelines +* :ghpull:`11545`: Doc: fix x(filled) marker image +* :ghpull:`11287`: Maintain artist addition order in Axes.mouseover_set. +* :ghpull:`11530`: FIX: Ensuring both x and y attrs of LocationEvent are int +* :ghpull:`10336`: Use Integral and Real in typechecks rather than explicit types. +* :ghpull:`10298`: Apply gtk3 background. +* :ghpull:`10297`: Fix gtk3agg alpha channel. +* :ghpull:`9094`: axisbelow should just set zorder. +* :ghpull:`11542`: Documentation polar grids +* :ghpull:`11459`: Doc changes in add_subplot and add_axes +* :ghpull:`10908`: Make draggable callbacks check that artist has not been removed. +* :ghpull:`11522`: Small cleanups. +* :ghpull:`11539`: DOC: talk about sticky edges in Axes.margins +* :ghpull:`11540`: adding axes to module list +* :ghpull:`11537`: Fix invalid value warning when autoscaling with no data limits +* :ghpull:`11512`: Skip 3D rotation example in sphinx gallery +* :ghpull:`11538`: Re-enable pep8 on examples folder +* :ghpull:`11136`: Move remaining examples from api/ +* :ghpull:`11519`: Raise ImportError on failure to import backends. +* :ghpull:`11529`: add documentation for quality in savefig +* :ghpull:`11528`: Replace an unnecessary zip() in mplot3d by numpy ops. +* :ghpull:`11492`: add __repr__ to GridSpecBase +* :ghpull:`11521`: Add missing ``.`` to rcParam +* :ghpull:`11491`: Fixed the source path on windows in rcparam_role +* :ghpull:`11514`: Remove embedding_in_tk_canvas, which demonstrated a private API. +* :ghpull:`11507`: Fix embedding_in_tk_canvas example. +* :ghpull:`11513`: Changed docstrings in Text +* :ghpull:`11503`: Remove various mentions of the now removed GTK(2) backend. +* :ghpull:`11493`: Update a test to a figure-equality test. +* :ghpull:`11501`: Treat empty $MPLBACKEND as an unset value. +* :ghpull:`11395`: Various fixes to deprecated and warn_deprecated. +* :ghpull:`11408`: Figure equality-based tests. +* :ghpull:`11461`: Fixed bug in rendering font property kwargs list +* :ghpull:`11397`: Replace ACCEPTS by standard numpydoc params table. +* :ghpull:`11483`: Use pip requirements files for travis build +* :ghpull:`11481`: remove more pylab references +* :ghpull:`10940`: Run flake8 instead of pep8 on Python 3.6 +* :ghpull:`11476`: Remove pylab references +* :ghpull:`11448`: Link rcParams role to docs +* :ghpull:`11424`: DOC: point align-ylabel demo to new align-label functions +* :ghpull:`11454`: add subplots to axes documentation +* :ghpull:`11470`: Hyperlink DOIs against preferred resolver +* :ghpull:`11421`: DOC: make signature background grey +* :ghpull:`11457`: Search $CPATH for include directories +* :ghpull:`11456`: DOC: fix minor typo in figaspect +* :ghpull:`11293`: Lim parameter naming +* :ghpull:`11447`: Do not use class attributes as defaults for instance attributes +* :ghpull:`11449`: Slightly improve doc sidebar layout +* :ghpull:`11224`: Add deprecation messages for unused kwargs in FancyArrowPatch +* :ghpull:`11437`: Doc markersupdate +* :ghpull:`11417`: FIX: better default spine path (for logit) +* :ghpull:`11406`: Backport PR #11403 on branch v2.2.2-doc +* :ghpull:`11427`: FIX: pathlib in nbagg +* :ghpull:`11428`: Doc: Remove huge note box from examples. +* :ghpull:`11392`: Deprecate the ``verts`` kwarg to ``scatter``. +* :ghpull:`8834`: WIP: Contour log extension +* :ghpull:`11402`: Remove unnecessary str calls. +* :ghpull:`11399`: Autogenerate credits.rst +* :ghpull:`11382`: plt.subplots and plt.figure docstring changes +* :ghpull:`11388`: DOC: Constrained layout tutorial improvements +* :ghpull:`11400`: Correct docstring for axvspan() +* :ghpull:`11396`: Remove some (minor) comments regarding Py2. +* :ghpull:`11210`: FIX: don't pad axes for ticks if they aren't visible or axis off +* :ghpull:`11362`: Fix tox configuration +* :ghpull:`11366`: Improve docstring of Axes.spy +* :ghpull:`11289`: io.open and codecs.open are redundant with open on Py3. +* :ghpull:`11213`: MNT: deprecate patches.YAArrow +* :ghpull:`11352`: Catch a couple of test warnings +* :ghpull:`11292`: Simplify cleanup decorator implementation. +* :ghpull:`11349`: Remove non-existent files from MANIFEST.IN +* :ghpull:`8774`: Git issue #7216 - Add a "ruler" tool to the plot UI +* :ghpull:`11348`: Make OSX's blit() have a consistent signature with other backends. +* :ghpull:`11345`: Revert "Deprecate text.latex.unicode." +* :ghpull:`11250`: [WIP] Add tutorial for LogScale +* :ghpull:`11223`: Add an arrow tutorial +* :ghpull:`10212`: Categorical refactor +* :ghpull:`11339`: Convert Ellipse docstring to numpydoc +* :ghpull:`11255`: Deprecate text.latex.unicode. +* :ghpull:`11338`: Fix typos +* :ghpull:`11332`: Let plt.rc = matplotlib.rc, instead of being a trivial wrapper. +* :ghpull:`11331`: multiprocessing.set_start_method() --> mp.set_start_method() +* :ghpull:`9948`: Add ``ealpha`` option to ``errorbar`` +* :ghpull:`11329`: Minor docstring update of thumbnail +* :ghpull:`9551`: Refactor backend loading +* :ghpull:`11328`: Undeprecate Polygon.xy from #11299 +* :ghpull:`11318`: Improve docstring of imread() and imsave() +* :ghpull:`11311`: Simplify image.thumbnail. +* :ghpull:`11225`: Add stacklevel=2 to some more warnings.warn() calls +* :ghpull:`11313`: Add changelog entry for removal of proprietary sphinx directives. +* :ghpull:`11323`: Fix infinite loop for connectionstyle + add some tests +* :ghpull:`11314`: API changes: use the heading format defined in README.txt +* :ghpull:`11320`: Py3fy multiprocess example. +* :ghpull:`6254`: adds two new cyclic color schemes +* :ghpull:`11268`: DOC: Sanitize some internal documentation links +* :ghpull:`11300`: Start replacing ACCEPTS table by parsing numpydoc. +* :ghpull:`11298`: Automagically set the stacklevel on warnings. +* :ghpull:`11277`: Avoid using MacRoman encoding. +* :ghpull:`11295`: Use sphinx builtin only directive instead of custom one. +* :ghpull:`11305`: Reuse the noninteractivity warning from Figure.show in _Backend.show. +* :ghpull:`11307`: Avoid recursion for subclasses of str that are also "PathLike" in to_filehandle() +* :ghpull:`11304`: Re-remove six from INSTALL.rst. +* :ghpull:`11299`: Fix a bunch of doc/comment typos in patches.py. +* :ghpull:`11301`: Undefined name: cbook --> matplotlib.cbook +* :ghpull:`11254`: Update INSTALL.rst. +* :ghpull:`11267`: FIX: allow nan values in data for plt.hist +* :ghpull:`11271`: Better argspecs for Axes.stem +* :ghpull:`11272`: Remove commented-out code, unused imports +* :ghpull:`11280`: Trivial cleanups +* :ghpull:`10514`: Cleanup/update cairo + gtk compatibility matrix. +* :ghpull:`11282`: Reduce the use of C++ exceptions +* :ghpull:`11263`: Fail gracefully if can't decode font names +* :ghpull:`11278`: Remove conditional path for sphinx <1.3 in plot_directive. +* :ghpull:`11273`: Include template matplotlibrc in package_data. +* :ghpull:`11265`: Minor cleanups. +* :ghpull:`11249`: Simplify FreeType build. +* :ghpull:`11158`: Remove dependency on six - we're Py3 only now! +* :ghpull:`10050`: Update Legend draggable API +* :ghpull:`11206`: More cleanups +* :ghpull:`11001`: DOC: improve legend bbox_to_anchor description +* :ghpull:`11258`: Removed comment in AGG backend that is no longer applicable +* :ghpull:`11062`: FIX: call constrained_layout twice +* :ghpull:`11251`: Re-run boilerplate.py. +* :ghpull:`11228`: Don't bother checking luatex's version. +* :ghpull:`11207`: Update venv gui docs wrt availability of PySide2. +* :ghpull:`11236`: Minor cleanups to setupext. +* :ghpull:`11239`: Reword the timeout error message in cbook._lock_path. +* :ghpull:`11204`: Test that boilerplate.py is correctly run. +* :ghpull:`11172`: ENH add rcparam to legend_title +* :ghpull:`11229`: Simplify lookup of animation external commands. +* :ghpull:`9086`: Add SVG animation. +* :ghpull:`11212`: Fix CirclePolygon __str__ + adding tests +* :ghpull:`6737`: Ternary +* :ghpull:`11216`: Yet another set of simplifications. +* :ghpull:`11056`: Simplify travis setup a bit. +* :ghpull:`11211`: Revert explicit linestyle kwarg on step() +* :ghpull:`11205`: Minor cleanups to pyplot. +* :ghpull:`11174`: Replace numeric loc by position string +* :ghpull:`11208`: Don't crash qt figure options on unknown marker styles. +* :ghpull:`11195`: Some unrelated cleanups. +* :ghpull:`11192`: Don't use deprecated get_texcommand in backend_pgf. +* :ghpull:`11197`: Simplify demo_ribbon_box.py. +* :ghpull:`11137`: Convert ``**kwargs`` to named arguments for a clearer API +* :ghpull:`10982`: Improve docstring of Axes.imshow +* :ghpull:`11182`: Use GLib.MainLoop() instead of deprecated GObject.MainLoop() +* :ghpull:`11185`: Fix undefined name error in backend_pgf. +* :ghpull:`10321`: Ability to scale axis by a fixed factor +* :ghpull:`8787`: Faster path drawing for the cairo backend (cairocffi only) +* :ghpull:`4559`: tight_layout: Use a different default gridspec +* :ghpull:`11179`: Convert internal tk focus helper to a context manager +* :ghpull:`11176`: Allow creating empty closed paths +* :ghpull:`10339`: Pass explicit font paths to fontspec in backend_pgf. +* :ghpull:`9832`: Minor cleanup to Text class. +* :ghpull:`11141`: Remove mpl_examples symlink. +* :ghpull:`10715`: ENH: add title_fontsize to legend +* :ghpull:`11166`: Set stacklevel to 2 for backend_wx +* :ghpull:`10934`: Autogenerate (via boilerplate) more of pyplot. +* :ghpull:`9298`: Cleanup blocking_input. +* :ghpull:`6329`: Set _text to '' if Text.set_text argument is None +* :ghpull:`11157`: Fix contour return link +* :ghpull:`11146`: Explicit args and refactor Axes.margins +* :ghpull:`11145`: Use kwonlyargs instead of popping from kwargs +* :ghpull:`11119`: PGF: Get unitless positions from Text elements (fix #11116) +* :ghpull:`9078`: New anchored direction arrows +* :ghpull:`11144`: Remove toplevel unit/ directory. +* :ghpull:`11148`: remove use of subprocess compatibility shim +* :ghpull:`11143`: Use debug level for debugging messages +* :ghpull:`11142`: Finish removing future imports. +* :ghpull:`11130`: Don't include the postscript title if it is not latin-1 encodable. +* :ghpull:`11093`: DOC: Fixup to AnchoredArtist examples in the gallery +* :ghpull:`11132`: pillow-dependency update +* :ghpull:`10446`: implementation of the copy canvas tool +* :ghpull:`9131`: FIX: prevent the canvas from jump sizes due to DPI changes +* :ghpull:`9454`: Batch ghostscript converter. +* :ghpull:`10545`: Change manual kwargs popping to kwonly arguments. +* :ghpull:`10950`: Actually ignore invalid log-axis limit setting +* :ghpull:`11096`: Remove support for bar(left=...) (as opposed to bar(x=...)). +* :ghpull:`11106`: py3fy art3d. +* :ghpull:`11085`: Use GtkShortcutsWindow for Help tool. +* :ghpull:`11099`: Deprecate certain marker styles that have simpler synonyms. +* :ghpull:`11100`: Some more deprecations of old, old stuff. +* :ghpull:`11098`: Make Marker.get_snap_threshold() always return a scalar. +* :ghpull:`11097`: Schedule a removal date for passing normed (instead of density) to hist. +* :ghpull:`9706`: Masking invalid x and/or weights in hist +* :ghpull:`11080`: Py3fy backend_qt5 + other cleanups to the backend. +* :ghpull:`10967`: updated the pyplot fill_between example to elucidate the premise;maki… +* :ghpull:`11075`: Drop alpha channel when saving comparison failure diff image. +* :ghpull:`9022`: Help tool +* :ghpull:`11045`: Help tool. +* :ghpull:`11076`: Don't create texput.{aux,log} in rootdir everytime tests are run. +* :ghpull:`11073`: py3fication of some tests. +* :ghpull:`11074`: bytes % args is back since py3.5 +* :ghpull:`11066`: Use chained comparisons where reasonable. +* :ghpull:`11061`: Changed tight_layout doc strings +* :ghpull:`11064`: Minor docstring format cleanup +* :ghpull:`11055`: Remove setup_tests_only.py. +* :ghpull:`11057`: Update Ellipse position with ellipse.center +* :ghpull:`10435`: Pathlibify font_manager (only internally, doesn't change the API). +* :ghpull:`10442`: Make the filternorm prop of Images a boolean rather than a {0,1} scalar. +* :ghpull:`9855`: ENH: make ax.get_position apply aspect +* :ghpull:`9987`: MNT: hist2d now uses pcolormesh instead of pcolorfast +* :ghpull:`11014`: Merge v2.2.x into master +* :ghpull:`11000`: FIX: improve Text repr to not error if non-float x and y. +* :ghpull:`10910`: FIX: return proper legend window extent +* :ghpull:`10915`: FIX: tight_layout having negative width axes +* :ghpull:`10408`: Factor out common code in _process_unit_info +* :ghpull:`10960`: Added share_tickers parameter to axes._AxesBase.twinx/y +* :ghpull:`10971`: Skip pillow animation test if pillow not importable +* :ghpull:`10970`: Simplify/fix some manual manipulation of len(args). +* :ghpull:`10958`: Simplify the grouper implementation. +* :ghpull:`10508`: Deprecate FigureCanvasQT.keyAutoRepeat. +* :ghpull:`10607`: Move notify_axes_change to FigureManagerBase class. +* :ghpull:`10215`: Test timers and (a bit) key_press_event for interactive backends. +* :ghpull:`10955`: Py3fy cbook, compare_backend_driver_results +* :ghpull:`10680`: Rewrite the tk C blitting code +* :ghpull:`9498`: Move title up if x-axis is on the top of the figure +* :ghpull:`10942`: Make active param in CheckBottons optional, default false +* :ghpull:`10943`: Allow pie textprops to take alignment and rotation arguments +* :ghpull:`10780`: Fix scaling of RadioButtons +* :ghpull:`10938`: Fix two undefined names +* :ghpull:`10685`: fix plt.show doesn't warn if a non-GUI backend +* :ghpull:`10689`: Declare global variables that are created elsewhere +* :ghpull:`10845`: WIP: first draft at replacing linkcheker +* :ghpull:`10898`: Replace "matplotlibrc" by "rcParams" in the docs where applicable. +* :ghpull:`10926`: Some more removals of deprecated APIs. +* :ghpull:`9173`: dynamically generate pyplot functions +* :ghpull:`10918`: Use function signatures in boilerplate.py. +* :ghpull:`10914`: Changed pie charts default shape to circle and added tests +* :ghpull:`10864`: ENH: Stop mangling default figure file name if file exists +* :ghpull:`10562`: Remove deprecated code in image.py +* :ghpull:`10798`: FIX: axes limits reverting to automatic when sharing +* :ghpull:`10485`: Remove the 'hold' kwarg from codebase +* :ghpull:`10571`: Use np.full{,_like} where appropriate. [requires numpy>=1.12] +* :ghpull:`10913`: Rely a bit more on rc_context. +* :ghpull:`10299`: Invalidate texmanager cache when any text.latex.* rc changes. +* :ghpull:`10906`: Deprecate ImageComparisonTest. +* :ghpull:`10904`: Improve docstring of clabel() +* :ghpull:`10912`: remove unused matplotlib.testing import +* :ghpull:`10876`: [wip] Replace _remove_method by _on_remove list of callbacks +* :ghpull:`10692`: Update afm docs and internal data structures +* :ghpull:`10896`: Update INSTALL.rst. +* :ghpull:`10905`: Inline knownfailureif. +* :ghpull:`10907`: No need to mark (unicode) strings as u"foo" anymore. +* :ghpull:`10903`: Py3fy testing machinery. +* :ghpull:`10901`: Remove Py2/3 portable code guide. +* :ghpull:`10900`: Remove some APIs deprecated in mpl2.1. +* :ghpull:`10902`: Kill some Py2 docs. +* :ghpull:`10887`: Added feature (Make pie charts circular by default #10789) +* :ghpull:`10884`: Style fixes to setupext.py. +* :ghpull:`10879`: Deprecate two-args for cycler() and set_prop_cycle() +* :ghpull:`10865`: DOC: use OO-ish interface in image, contour, field examples +* :ghpull:`8479`: FIX markerfacecolor / mfc not in rcparams +* :ghpull:`10314`: setattr context manager. +* :ghpull:`10013`: Allow rasterization for 3D plots +* :ghpull:`10158`: Allow mplot3d rasterization; adjacent cleanups. +* :ghpull:`10871`: Rely on rglob support rather than os.walk. +* :ghpull:`10878`: Change hardcoded brackets for Toolbar message +* :ghpull:`10708`: Py3fy webagg/nbagg. +* :ghpull:`10862`: py3ify table.py and correct some docstrings +* :ghpull:`10810`: Fix for plt.plot() does not support structured arrays as data= kwarg +* :ghpull:`10861`: More python3 cleanup +* :ghpull:`9903`: ENH: adjustable colorbar ticks +* :ghpull:`10831`: Minor docstring updates on binning related plot functions +* :ghpull:`9571`: Remove LaTeX checking in setup.py. +* :ghpull:`10097`: Reset extents in RectangleSelector when not interactive on press. +* :ghpull:`10686`: fix BboxConnectorPatch does not show facecolor +* :ghpull:`10801`: Fix undefined name. Add animation tests. +* :ghpull:`10857`: FIX: ioerror font cache, second try +* :ghpull:`10796`: Added descriptions for line bars and markers examples +* :ghpull:`10846`: Unsixification +* :ghpull:`10852`: Update docs re: pygobject in venv. +* :ghpull:`10847`: Py3fy axis.py. +* :ghpull:`10834`: Minor docstring updates on spectral plot functions +* :ghpull:`10778`: wx_compat is no more. +* :ghpull:`10609`: More wx cleanup. +* :ghpull:`10826`: Py3fy dates.py. +* :ghpull:`10837`: Correctly display error when running setup.py test. +* :ghpull:`10838`: Don't use private attribute in tk example. Fix Toolbar class rename. +* :ghpull:`10835`: DOC: Make colorbar tutorial examples look like colorbars. +* :ghpull:`10823`: Add some basic smoketesting for webagg (and wx). +* :ghpull:`10828`: Add print_rgba to backend_cairo. +* :ghpull:`10830`: Make function signatures more explicit +* :ghpull:`10829`: Use long color names for default rcParams +* :ghpull:`9776`: WIP: Lockout new converters Part 2 +* :ghpull:`10799`: DOC: make legend docstring interpolated +* :ghpull:`10818`: Deprecate vestigial Annotation.arrow. +* :ghpull:`10817`: Add test to imread from url. +* :ghpull:`10696`: Simplify venv docs. +* :ghpull:`10724`: Py3fication of unicode. +* :ghpull:`10815`: API: shift deprecation of TempCache class to 3.0 +* :ghpull:`10725`: FIX/TST constrained_layout remove test8 duplication +* :ghpull:`10705`: FIX: enable extend kwargs with log scale colorbar +* :ghpull:`10400`: numpydoc-ify art3d docstrings +* :ghpull:`10723`: repr style fixes. +* :ghpull:`10592`: Rely on generalized * and ** unpackings where possible. +* :ghpull:`9475`: Declare property aliases in a single place +* :ghpull:`10793`: A hodgepodge of Py3 & style fixes. +* :ghpull:`10794`: fixed comment typo +* :ghpull:`10768`: Fix crash when imshow encounters longdouble data +* :ghpull:`10774`: Remove dead wx testing code. +* :ghpull:`10756`: Fixes png showing inconsistent inset_axes position +* :ghpull:`10773`: Consider alpha channel from RGBA color of text for SVG backend text opacity rendering +* :ghpull:`10772`: API: check locator and formatter args when passed +* :ghpull:`10713`: Implemented support for 'markevery' in prop_cycle +* :ghpull:`10751`: make centre_baseline legal for Text.set_verticalalignment +* :ghpull:`10771`: FIX/TST OS X builds +* :ghpull:`10742`: FIX: reorder linewidth setting before linestyle +* :ghpull:`10714`: sys.platform is normalized to "linux" on Py3. +* :ghpull:`10542`: Minor cleanup: PEP8, PEP257 +* :ghpull:`10636`: Remove some wx version checks. +* :ghpull:`9731`: Make legend title fontsize obey fontsize kwarg by default +* :ghpull:`10697`: Remove special-casing of _remove_method when pickling. +* :ghpull:`10701`: Autoadd removal version to deprecation message. +* :ghpull:`10699`: Remove incorrect warning in gca(). +* :ghpull:`10674`: Fix getting polar axes in plt.polar() +* :ghpull:`10564`: Nested classes and instancemethods are directly picklable on Py3.5+. +* :ghpull:`10107`: Fix stay_span to reset onclick in SpanSelector. +* :ghpull:`10693`: Make markerfacecolor work for 3d scatterplots +* :ghpull:`10596`: Switch to per-file locking. +* :ghpull:`10532`: Py3fy backend_pgf. +* :ghpull:`10618`: Fixes #10501. python3 support and pep8 in jpl_units +* :ghpull:`10652`: Some py3fication for matplotlib/__init__, setupext. +* :ghpull:`10522`: Py3fy font_manager. +* :ghpull:`10666`: More figure-related doc updates +* :ghpull:`10507`: Remove Python 2 code from C extensions +* :ghpull:`10679`: Small fixes to gtk3 examples. +* :ghpull:`10426`: Delete deprecated backends +* :ghpull:`10488`: Bug Fix - Polar plot rectangle patch not transformed correctly (#8521) +* :ghpull:`9814`: figure_enter_event uses now LocationEvent instead of Event. Fix issue #9812. +* :ghpull:`9918`: Remove old nose testing code +* :ghpull:`10672`: Deprecation fixes. +* :ghpull:`10608`: Remove most APIs deprecated in 2.1. +* :ghpull:`10653`: Mock is in stdlib in Py3. +* :ghpull:`10603`: Remove workarounds for numpy<1.10. +* :ghpull:`10660`: Work towards removing reuse-of-axes-on-collision. +* :ghpull:`10661`: Homebrew python is now python 3 +* :ghpull:`10656`: Minor fixes to event handling docs. +* :ghpull:`10635`: Simplify setupext by using globs. +* :ghpull:`10632`: Support markers from Paths that consist of one line segment +* :ghpull:`10558`: Remove if six.PY2 code paths from boilerplate.py +* :ghpull:`10640`: Fix extra and missing spaces in constrainedlayout warning. +* :ghpull:`10624`: Some trivial py3fications. +* :ghpull:`10548`: Implement PdfPages for backend pgf +* :ghpull:`10614`: Use np.stack instead of list(zip()) in colorbar.py. +* :ghpull:`10621`: Cleanup and py3fy backend_gtk3. +* :ghpull:`10615`: More style fixes. +* :ghpull:`10604`: Minor style fixes. +* :ghpull:`10565`: Strip python 2 code from subprocess.py +* :ghpull:`10605`: Bump a tolerance in test_axisartist_floating_axes. +* :ghpull:`7853`: Use exact types for Py_BuildValue. +* :ghpull:`10591`: Switch to @-matrix multiplication. +* :ghpull:`10570`: Fix check_shared in test_subplots. +* :ghpull:`10569`: Various style fixes. +* :ghpull:`10593`: Use 'yield from' where appropriate. +* :ghpull:`10577`: Minor simplification to Figure.__getstate__ logic. +* :ghpull:`10549`: Source typos +* :ghpull:`10525`: Convert six.moves.xrange() to range() for Python 3 +* :ghpull:`10541`: More argumentless (py3) super() +* :ghpull:`10539`: TST: Replace assert_equal with plain asserts. +* :ghpull:`10534`: Modernize cbook.get_realpath_and_stat. +* :ghpull:`10524`: Remove unused private _StringFuncParser. +* :ghpull:`10470`: Remove Python 2 code from setup +* :ghpull:`10528`: py3fy examples +* :ghpull:`10520`: Py3fy mathtext.py. +* :ghpull:`10527`: Switch to argumentless (py3) super(). +* :ghpull:`10523`: The current master branch is now python 3 only. +* :ghpull:`10515`: Use feature detection instead of version detection +* :ghpull:`10432`: Use some new Python3 types +* :ghpull:`10475`: Use HTTP Secure for matplotlib.org +* :ghpull:`10383`: Fix some C++ warnings +* :ghpull:`10498`: Tell the lgtm checker that the project is Python 3 only +* :ghpull:`10505`: Remove backport of which() +* :ghpull:`10483`: Remove backports.functools_lru_cache +* :ghpull:`10492`: Avoid UnboundLocalError in drag_pan. +* :ghpull:`10491`: Simplify Mac builds on Travis +* :ghpull:`10481`: Remove python 2 compatibility code from dviread +* :ghpull:`10447`: Remove Python 2 compatibility code from backend_pdf.py +* :ghpull:`10468`: Replace is_numlike by isinstance(..., numbers.Number). +* :ghpull:`10439`: mkdir is in the stdlib in Py3. +* :ghpull:`10392`: FIX: make set_text(None) keep string empty instead of "None" +* :ghpull:`10425`: API: only support python 3.5+ +* :ghpull:`10316`: TST FIX pyqt5 5.9 +* :ghpull:`4625`: hist2d() is now using pcolormesh instead of pcolorfast + +Issues (123): + +* :ghissue:`12133`: Streamplot does not work for 29x29 grid +* :ghissue:`4429`: Error calculating scaling for radiobutton widget. +* :ghissue:`3293`: markerfacecolor / mfc not in rcparams +* :ghissue:`8109`: Cannot set the markeredgecolor by default +* :ghissue:`7942`: Extend keyword doesn't work with log scale. +* :ghissue:`5571`: Finish reorganizing examples +* :ghissue:`8307`: Colorbar with imshow(logNorm) shows unexpected minor ticks +* :ghissue:`6992`: plt.hist fails when data contains nan values +* :ghissue:`6483`: Range determination for data with NaNs +* :ghissue:`8059`: BboxConnectorPatch does not show facecolor +* :ghissue:`12134`: tight_layout flips images when making plots without displaying them +* :ghissue:`6739`: Make matplotlib fail more gracefully in headless environments +* :ghissue:`3679`: Runtime detection for default backend +* :ghissue:`11966`: CartoPy code gives attribute error +* :ghissue:`11844`: Backend related issues with matplotlib 3.0.0rc1 +* :ghissue:`12095`: colorbar minorticks (possibly release critical for 3.0) +* :ghissue:`12108`: Broken doc build with sphinx 1.8 +* :ghissue:`7366`: handle repaint requests better it qtAgg +* :ghissue:`11985`: Single shot timer not working correctly with MacOSX backend +* :ghissue:`10948`: OSX backend raises deprecation warning for enter_notify_event +* :ghissue:`11970`: Legend.get_window_extent now requires a renderer +* :ghissue:`8293`: investigate whether using a single instance of ghostscript for ps->png conversion can speed up the Windows build +* :ghissue:`7707`: Replace pep8 by pycodestyle for style checking +* :ghissue:`9135`: rcdefaults, rc_file_defaults, rc_file should not update backend if it has already been selected +* :ghissue:`12015`: AttributeError with GTK3Agg backend +* :ghissue:`11913`: plt.contour levels parameter don't work as intended if receive a single int +* :ghissue:`11846`: macosx backend won't load +* :ghissue:`11792`: Newer versions of ImageMagickWriter not found on windows +* :ghissue:`11858`: Adding "pie of pie" and "bar of pie" functionality +* :ghissue:`11852`: get_backend() backward compatibility +* :ghissue:`11629`: Importing qt_compat when no Qt binding is installed fails with NameError instead of ImportError +* :ghissue:`11842`: Failed nose import in test_annotation_update +* :ghissue:`11252`: Some API removals not documented +* :ghissue:`9404`: Drop support for python 2 +* :ghissue:`2625`: Markers in XKCD style +* :ghissue:`11749`: metadata kwarg to savefig is not documented +* :ghissue:`11702`: Setting alpha on legend handle changes patch color +* :ghissue:`8798`: gtk3cairo draw_image does not respect origin and mishandles alpha +* :ghissue:`11737`: Bug in tight_layout +* :ghissue:`11373`: Passing an incorrectly sized colour list to scatter should raise a relevant error +* :ghissue:`11756`: pgf backend doesn't set color of text when the color is black +* :ghissue:`11766`: test_axes.py::test_csd_freqs failing with numpy 1.15.0 on macOS +* :ghissue:`11750`: previous whats new is overindented on "what's new in mpl3.0 page" +* :ghissue:`11728`: Qt5 Segfaults on window resize +* :ghissue:`11709`: Repaint region is wrong on Retina display with Qt5 +* :ghissue:`11578`: wx segfaulting on OSX travis tests +* :ghissue:`11628`: edgecolor argument not working in matplotlib.pyplot.bar +* :ghissue:`11625`: plt.tight_layout() does not work with plt.subplot2grid +* :ghissue:`4993`: Version ~/.cache/matplotlib +* :ghissue:`7842`: If hexbin has logarithmic bins, use log formatter for colorbar +* :ghissue:`11607`: AttributeError: 'QEvent' object has no attribute 'pos' +* :ghissue:`11486`: Colorbar does not render with PowerNorm and min extend when using imshow +* :ghissue:`11582`: wx segfault +* :ghissue:`11515`: using 'sharex' once in 'subplots' function can affect subsequent calles to 'subplots' +* :ghissue:`10269`: input() blocks any rendering and event handling +* :ghissue:`10345`: Python 3.4 with Matplotlib 1.5 vs Python 3.6 with Matplotlib 2.1 +* :ghissue:`10443`: Drop use of pytz dependency in next major release +* :ghissue:`10572`: contour and contourf treat levels differently +* :ghissue:`11123`: Crash when interactively adding a number of subplots +* :ghissue:`11550`: Undefined names: 'obj_type' and 'cbook' +* :ghissue:`11138`: Only the first figure window has mpl icon, all other figures have default tk icon. +* :ghissue:`11510`: extra minor-ticks on the colorbar when used with the extend option +* :ghissue:`11369`: zorder of Artists not being respected when blitting with FuncAnimation +* :ghissue:`11452`: Streamplot ignores rightmost column and topmost row of velocity data +* :ghissue:`11284`: imshow of multiple images produces old pixel values printed in status bar +* :ghissue:`11496`: MouseEvent.x and .y have different types +* :ghissue:`11534`: Cross-reference margins and sticky edges +* :ghissue:`8556`: Add images of markers to the list of markers +* :ghissue:`11386`: Logit scale doesn't position x/ylabel correctly first draw +* :ghissue:`11384`: Undefined name 'Path' in backend_nbagg.py +* :ghissue:`11426`: nbagg broken on master. 'Path' is not defined... +* :ghissue:`11390`: Internal use of deprecated code +* :ghissue:`11203`: tight_layout reserves tick space even if disabled +* :ghissue:`11361`: Tox.ini does not work out of the box +* :ghissue:`11253`: Problem while changing current figure size in Jupyter notebook +* :ghissue:`11219`: Write an arrow tutorial +* :ghissue:`11322`: Really deprecate Patches.xy? +* :ghissue:`11294`: ConnectionStyle Angle3 hangs with specific parameters +* :ghissue:`9518`: Some ConnectionStyle not working +* :ghissue:`11306`: savefig and path.py +* :ghissue:`11077`: Font "DejaVu Sans" can only be used through fallback +* :ghissue:`10717`: Failure to find matplotlibrc when testing installed distribution +* :ghissue:`9912`: Cleaning up variable argument signatures +* :ghissue:`3701`: unit tests should compare pyplot.py with output from boilerplate.py +* :ghissue:`11183`: Undefined name 'system_fonts' in backend_pgf.py +* :ghissue:`11101`: Crash on empty patches +* :ghissue:`11124`: [Bug] savefig cannot save file with a Unicode name +* :ghissue:`7733`: Trying to set_ylim(bottom=0) on a log scaled axis changes plot +* :ghissue:`10319`: TST: pyqt 5.10 breaks pyqt5 interactive tests +* :ghissue:`10676`: Add source code to documentation +* :ghissue:`9207`: axes has no method to return new position after box is adjusted due to aspect ratio... +* :ghissue:`4615`: hist2d with log xy axis +* :ghissue:`10996`: Plotting text with datetime axis causes warning +* :ghissue:`7582`: Report date and time of cursor position on a plot_date plot +* :ghissue:`10114`: Remove mlab from examples +* :ghissue:`10342`: imshow longdouble not truly supported +* :ghissue:`8062`: tight_layout + lots of subplots + long ylabels inverts yaxis +* :ghissue:`4413`: Long axis title alters xaxis length and direction with ``plt.tight_layout()`` +* :ghissue:`1415`: Plot title should be shifted up when xticks are set to the top of the plot +* :ghissue:`10789`: Make pie charts circular by default +* :ghissue:`10941`: Cannot set text alignment in pie chart +* :ghissue:`7908`: plt.show doesn't warn if a non-GUI backend is being used +* :ghissue:`10502`: 'FigureManager' is an undefined name in backend_wx.py +* :ghissue:`10062`: axes limits revert to automatic on sharing axes? +* :ghissue:`9246`: ENH: make default colorbar ticks adjust as nicely as axes ticks +* :ghissue:`8818`: plt.plot() does not support structured arrays as data= kwarg +* :ghissue:`10533`: Recognize pandas Timestamp objects for DateConverter? +* :ghissue:`8358`: Minor ticks on log-scale colorbar are not cleared +* :ghissue:`10075`: RectangleSelector does not work if start and end points are identical +* :ghissue:`8576`: support 'markevery' in prop_cycle +* :ghissue:`8874`: Crash in python setup.py test +* :ghissue:`3871`: replace use of _tkcanvas with get_tk_widget() +* :ghissue:`10550`: Use long color names for rc defaultParams +* :ghissue:`10722`: Duplicated test name in test_constrainedlayout +* :ghissue:`10419`: svg backend does not respect alpha channel of text *when passed as rgba* +* :ghissue:`10769`: DOC: set_major_locator could check that its getting a Locator (was EngFormatter broken?) +* :ghissue:`10719`: Need better type error checking for linewidth in ax.grid +* :ghissue:`7776`: tex cache lockfile retries should be configurable +* :ghissue:`10556`: Special conversions of xrange() +* :ghissue:`10501`: cmp() is an undefined name in Python 3 +* :ghissue:`9812`: figure_enter_event generates base Event and not LocationEvent +* :ghissue:`10602`: Random image failures with test_curvelinear4 +* :ghissue:`7795`: Incorrect uses of is_numlike diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.0.1.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.0.1.rst new file mode 100644 index 0000000000000000000000000000000000000000..95e899d1a9de7bbf43ed2fa6fd1c8c1a69703d61 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.0.1.rst @@ -0,0 +1,203 @@ +.. _github-stats-3-0-1: + +GitHub statistics for 3.0.1 (Oct 25, 2018) +========================================== + +GitHub statistics for 2018/09/18 (tag: v3.0.0) - 2018/10/25 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 31 issues and merged 127 pull requests. +The full list can be seen `on GitHub `__ + +The following 23 authors contributed 227 commits. + +* Abhinuv Nitin Pitale +* Antony Lee +* Anubhav Shrimal +* Ben Root +* Colin +* Daniele Nicolodi +* David Haberthür +* David Stansby +* Elan Ernest +* Elliott Sales de Andrade +* Eric Firing +* ImportanceOfBeingErnest +* Jody Klymak +* Kai Muehlbauer +* Kevin Rose +* Marcel Martin +* MeeseeksMachine +* Nelle Varoquaux +* Nikita Kniazev +* Ryan May +* teresy +* Thomas A Caswell +* Tim Hoffmann + +GitHub issues and pull requests: + +Pull Requests (127): + +* :ghpull:`12595`: Backport PR #12569 on branch v3.0.x (Don't confuse uintptr_t and Py_ssize_t.) +* :ghpull:`12623`: Backport PR #12285 on branch v3.0.x (FIX: Don't apply tight_layout if axes collapse) +* :ghpull:`12285`: FIX: Don't apply tight_layout if axes collapse +* :ghpull:`12622`: FIX: flake8errors 3.0.x mergeup +* :ghpull:`12619`: Backport PR #12548 on branch v3.0.x (undef _XOPEN_SOURCE breaks the build in AIX) +* :ghpull:`12621`: Backport PR #12607 on branch v3.0.x (STY: fix whitespace and escaping) +* :ghpull:`12616`: Backport PR #12615 on branch v3.0.x (Fix travis OSX build) +* :ghpull:`12594`: Backport PR #12572 on branch v3.0.x (Fix singleton hist labels) +* :ghpull:`12615`: Fix travis OSX build +* :ghpull:`12607`: STY: fix whitespace and escaping +* :ghpull:`12605`: Backport PR #12603 on branch v3.0.x (FIX: don't import macosx to check if eventloop running) +* :ghpull:`12604`: FIX: over-ride 'copy' on RcParams +* :ghpull:`12603`: FIX: don't import macosx to check if eventloop running +* :ghpull:`12602`: Backport PR #12599 on branch v3.0.x (Fix formatting of docstring) +* :ghpull:`12599`: Fix formatting of docstring +* :ghpull:`12593`: Backport PR #12581 on branch v3.0.x (Fix hist() error message) +* :ghpull:`12569`: Don't confuse uintptr_t and Py_ssize_t. +* :ghpull:`12572`: Fix singleton hist labels +* :ghpull:`12581`: Fix hist() error message +* :ghpull:`12575`: Backport PR #12573 on branch v3.0.x (BUG: mplot3d: Don't crash if azim or elev are non-integral) +* :ghpull:`12558`: Backport PR #12555 on branch v3.0.x (Clarify horizontalalignment and verticalalignment in suptitle) +* :ghpull:`12544`: Backport PR #12159 on branch v3.0.x (FIX: colorbar re-check norm before draw for autolabels) +* :ghpull:`12159`: FIX: colorbar re-check norm before draw for autolabels +* :ghpull:`12540`: Backport PR #12501 on branch v3.0.x (Rectified plot error) +* :ghpull:`12531`: Backport PR #12431 on branch v3.0.x (FIX: allow single-string color for scatter) +* :ghpull:`12431`: FIX: allow single-string color for scatter +* :ghpull:`12529`: Backport PR #12216 on branch v3.0.x (Doc: Fix search for sphinx >=1.8) +* :ghpull:`12527`: Backport PR #12461 on branch v3.0.x (FIX: make add_lines work with new colorbar) +* :ghpull:`12461`: FIX: make add_lines work with new colorbar +* :ghpull:`12522`: Backport PR #12241 on branch v3.0.x (FIX: make unused spines invisible) +* :ghpull:`12241`: FIX: make unused spines invisible +* :ghpull:`12519`: Backport PR #12504 on branch v3.0.x (DOC: clarify min supported version wording) +* :ghpull:`12517`: Backport PR #12507 on branch v3.0.x (FIX: make minor ticks formatted with science formatter as well) +* :ghpull:`12507`: FIX: make minor ticks formatted with science formatter as well +* :ghpull:`12512`: Backport PR #12363 on branch v3.0.x +* :ghpull:`12511`: Backport PR #12366 on branch v2.2.x (TST: Update test images for new Ghostscript.) +* :ghpull:`12509`: Backport PR #12478 on branch v3.0.x (MAINT: numpy deprecates asscalar in 1.16) +* :ghpull:`12363`: FIX: errors in get_position changes +* :ghpull:`12497`: Backport PR #12495 on branch v3.0.x (Fix duplicate condition in pathpatch3d example) +* :ghpull:`12490`: Backport PR #12489 on branch v3.0.x (Fix typo in documentation of ylim) +* :ghpull:`12485`: Fix font_manager.OSXInstalledFonts() +* :ghpull:`12484`: Backport PR #12448 on branch v3.0.x (Don't error if some font directories are not readable.) +* :ghpull:`12421`: Backport PR #12360 on branch v3.0.x (Replace axes_grid by axes_grid1 in test) +* :ghpull:`12448`: Don't error if some font directories are not readable. +* :ghpull:`12471`: Backport PR #12468 on branch v3.0.x (Fix ``set_ylim`` unit handling) +* :ghpull:`12475`: Backport PR #12469 on branch v3.0.x (Clarify documentation of offsetbox.AnchoredText's prop kw argument) +* :ghpull:`12468`: Fix ``set_ylim`` unit handling +* :ghpull:`12464`: Backport PR #12457 on branch v3.0.x (Fix tutorial typos.) +* :ghpull:`12432`: Backport PR #12277: FIX: datetime64 now recognized if in a list +* :ghpull:`12277`: FIX: datetime64 now recognized if in a list +* :ghpull:`12426`: Backport PR #12293 on branch v3.0.x (Make pyplot more tolerant wrt. 3rd-party subclasses.) +* :ghpull:`12293`: Make pyplot more tolerant wrt. 3rd-party subclasses. +* :ghpull:`12360`: Replace axes_grid by axes_grid1 in test +* :ghpull:`12412`: Backport PR #12394 on branch v3.0.x (DOC: fix CL tutorial to give same output from saved file and example) +* :ghpull:`12410`: Backport PR #12408 on branch v3.0.x (Don't crash on invalid registry font entries on Windows.) +* :ghpull:`12411`: Backport PR #12366 on branch v3.0.0-doc (TST: Update test images for new Ghostscript.) +* :ghpull:`12408`: Don't crash on invalid registry font entries on Windows. +* :ghpull:`12403`: Backport PR #12149 on branch v3.0.x (Mathtext tutorial fixes) +* :ghpull:`12400`: Backport PR #12257 on branch v3.0.x (Document standard backends in matplotlib.use()) +* :ghpull:`12257`: Document standard backends in matplotlib.use() +* :ghpull:`12399`: Backport PR #12383 on branch v3.0.x (Revert change of parameter name in annotate()) +* :ghpull:`12383`: Revert change of parameter name in annotate() +* :ghpull:`12390`: Backport PR #12385 on branch v3.0.x (CI: Added Appveyor Python 3.7 build) +* :ghpull:`12385`: CI: Added Appveyor Python 3.7 build +* :ghpull:`12381`: Backport PR #12353 on branch v3.0.x (Doc: clarify default parameters in scatter docs) +* :ghpull:`12378`: Backport PR #12366 on branch v3.0.x (TST: Update test images for new Ghostscript.) +* :ghpull:`12375`: Backport PR #11648 on branch v3.0.x (FIX: colorbar placement in constrained layout) +* :ghpull:`11648`: FIX: colorbar placement in constrained layout +* :ghpull:`12350`: Backport PR #12214 on branch v3.0.x +* :ghpull:`12348`: Backport PR #12347 on branch v3.0.x (DOC: add_child_axes to axes_api.rst) +* :ghpull:`12214`: Improve docstring of Annotation +* :ghpull:`12344`: Backport PR #12321 on branch v3.0.x (maint: setupext.py for freetype had a Catch case for missing ft2build.h) +* :ghpull:`12342`: Backport PR #12334 on branch v3.0.x (Improve selection of inset indicator connectors.) +* :ghpull:`12334`: Improve selection of inset indicator connectors. +* :ghpull:`12339`: Backport PR #12297 on branch v3.0.x (Remove some pytest parameterising warnings) +* :ghpull:`12338`: Backport PR #12268 on branch v3.0.x (FIX: remove unnecessary ``self`` in ``super_``-calls, fixes #12265) +* :ghpull:`12336`: Backport PR #12212 on branch v3.0.x (font_manager: Fixed problems with Path(...).suffix) +* :ghpull:`12268`: FIX: remove unnecessary ``self`` in ``super_``-calls, fixes #12265 +* :ghpull:`12212`: font_manager: Fixed problems with Path(...).suffix +* :ghpull:`12331`: Backport PR #12322 on branch v3.0.x (Fix the docs build.) +* :ghpull:`12327`: Backport PR #12326 on branch v3.0.x (fixed minor spelling error in docstring) +* :ghpull:`12320`: Backport PR #12319 on branch v3.0.x (Fix Travis 3.6 builds) +* :ghpull:`12315`: Backport PR #12313 on branch v3.0.x (BUG: Fix typo in view_limits() for MultipleLocator) +* :ghpull:`12313`: BUG: Fix typo in view_limits() for MultipleLocator +* :ghpull:`12305`: Backport PR #12274 on branch v3.0.x (MNT: put back ``_hold`` as read-only attribute on AxesBase) +* :ghpull:`12274`: MNT: put back ``_hold`` as read-only attribute on AxesBase +* :ghpull:`12303`: Backport PR #12163 on branch v3.0.x (TST: Defer loading Qt framework until test is run.) +* :ghpull:`12299`: Backport PR #12294 on branch v3.0.x (Fix expand_dims warnings in triinterpolate) +* :ghpull:`12163`: TST: Defer loading Qt framework until test is run. +* :ghpull:`12301`: Ghostscript 9.0 requirement revisited +* :ghpull:`12294`: Fix expand_dims warnings in triinterpolate +* :ghpull:`12297`: Remove some pytest parameterising warnings +* :ghpull:`12295`: Backport PR #12261 on branch v3.0.x (FIX: parasite axis2 demo) +* :ghpull:`12289`: Backport PR #12278 on branch v3.0.x (Document inheriting docstrings) +* :ghpull:`12287`: Backport PR #12262 on branch v3.0.x (Simplify empty-rasterized pdf test.) +* :ghpull:`12280`: Backport PR #12269 on branch v3.0.x (Add some param docs to BlockingInput methods) +* :ghpull:`12266`: Backport PR #12254 on branch v3.0.x (Improve docstrings of Animations) +* :ghpull:`12262`: Simplify empty-rasterized pdf test. +* :ghpull:`12254`: Improve docstrings of Animations +* :ghpull:`12263`: Backport PR #12258 on branch v3.0.x (Fix CSS for module-level data) +* :ghpull:`12250`: Backport PR #12209 on branch v3.0.x (Doc: Sort named colors example by palette) +* :ghpull:`12248`: Backport PR #12237 on branch v3.0.x (Use (float, float) as parameter type for 2D positions in docstrings) +* :ghpull:`12240`: Backport PR #12236 on branch v3.0.x +* :ghpull:`12237`: Use (float, float) as parameter type for 2D positions in docstrings +* :ghpull:`12242`: Backport PR #12238 on branch v3.0.x (Typo in docs) +* :ghpull:`12236`: Make boilerplate-generated pyplot.py flake8 compliant +* :ghpull:`12234`: Backport PR #12228 on branch v3.0.x (Fix trivial typo in docs.) +* :ghpull:`12230`: Backport PR #12213 on branch v3.0.x (Change win32InstalledFonts return value) +* :ghpull:`12213`: Change win32InstalledFonts return value +* :ghpull:`12223`: Backport PR #11688 on branch v3.0.x (Don't draw axis (spines, ticks, labels) twice when using parasite axes.) +* :ghpull:`12224`: Backport PR #12207 on branch v3.0.x (FIX: dont' check for interactive framework if none required) +* :ghpull:`12207`: FIX: don't check for interactive framework if none required +* :ghpull:`11688`: Don't draw axis (spines, ticks, labels) twice when using parasite axes. +* :ghpull:`12205`: Backport PR #12186 on branch v3.0.x (DOC: fix API note about get_tightbbox) +* :ghpull:`12204`: Backport PR #12203 on branch v3.0.x (Document legend best slowness) +* :ghpull:`12203`: Document legend's slowness when "best" location is used +* :ghpull:`12194`: Backport PR #12164 on branch v3.0.x (Fix Annotation.contains.) +* :ghpull:`12193`: Backport PR #12177 on branch v3.0.x (FIX: remove cwd from mac font path search) +* :ghpull:`12164`: Fix Annotation.contains. +* :ghpull:`12177`: FIX: remove cwd from mac font path search +* :ghpull:`12185`: Backport PR #12183 on branch v3.0.x (Doc: Don't use Sphinx 1.8) +* :ghpull:`12183`: Doc: Don't use Sphinx 1.8 +* :ghpull:`12172`: Backport PR #12157 on branch v3.0.x (Properly declare the interactive framework for the qt4foo backends.) +* :ghpull:`12167`: Backport PR #12166 on branch v3.0.x (Document preference order for backend auto selection) +* :ghpull:`12166`: Document preference order for backend auto selection +* :ghpull:`12157`: Properly declare the interactive framework for the qt4foo backends. +* :ghpull:`12153`: Backport PR #12148 on branch v3.0.x (BLD: pragmatic fix for building basic_unit example on py37) + +Issues (31): + +* :ghissue:`12626`: AttributeError: module 'matplotlib' has no attribute 'artist' +* :ghissue:`12613`: transiently linked interactivity of unshared pair of axes generated with make_axes_locatable +* :ghissue:`12601`: Can't import matplotlib +* :ghissue:`12580`: Incorrect hist error message with bad color size +* :ghissue:`12567`: Calling pyplot.show() with TkAgg backend on x86 machine raises OverflowError. +* :ghissue:`12556`: Matplotlib 3.0.0 import hangs in clean environment +* :ghissue:`12550`: colorbar resizes in animation +* :ghissue:`12155`: Incorrect placement of Colorbar ticks using LogNorm +* :ghissue:`12438`: Scatter doesn't accept a list of strings as color spec. +* :ghissue:`12429`: scatter() does not accept gray strings anymore +* :ghissue:`12458`: add_lines misses lines for matplotlib.colorbar.ColorbarBase +* :ghissue:`12239`: 3d axes are collapsed by tight_layout +* :ghissue:`12488`: inconsistent colorbar tick labels for LogNorm +* :ghissue:`12515`: pyplot.step broken in 3.0.0? +* :ghissue:`12355`: Error for bbox_inches='tight' in savefig with make_axes_locatable +* :ghissue:`12505`: ImageGrid in 3.0 +* :ghissue:`12291`: Importing pyplot crashes on macOS due to missing fontlist-v300.json and then Permission denied: '/opt/local/share/fonts' +* :ghissue:`12288`: New function signatures in pyplot break Cartopy +* :ghissue:`12445`: Error on colorbar +* :ghissue:`12446`: Polar Contour - float() argument must be a string or a number, not 'AxesParasiteParasiteAuxTrans' +* :ghissue:`12271`: error with errorbar with datetime64 +* :ghissue:`12405`: plt.stackplot() does not work with 3.0.0 +* :ghissue:`12406`: Bug with font finding, and here is my fix as well. +* :ghissue:`12325`: Annotation change from "s" to "text" in 3.0- documentation +* :ghissue:`11641`: constrained_layout and colorbar for a subset of axes +* :ghissue:`12352`: TeX rendering broken on master with windows +* :ghissue:`12354`: Too many levels of symbolic links +* :ghissue:`12265`: ParasiteAxesAuxTrans pcolor/pcolormesh and contour/contourf broken +* :ghissue:`12173`: Cannot import pyplot +* :ghissue:`12120`: Default legend behavior (loc='best') very slow for large amounts of data. +* :ghissue:`12176`: import pyplot on MacOS without font cache will search entire subtree of current dir diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.0.2.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.0.2.rst new file mode 100644 index 0000000000000000000000000000000000000000..c5caed404b62ccdfc566476715c00516ab14e53d --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.0.2.rst @@ -0,0 +1,465 @@ +.. _github-stats-3-0-2: + +GitHub statistics for 3.0.2 (Nov 10, 2018) +========================================== + +GitHub statistics for 2018/09/18 (tag: v3.0.0) - 2018/11/10 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 170 issues and merged 224 pull requests. +The full list can be seen `on GitHub `__ + +The following 49 authors contributed 460 commits. + +* Abhinuv Nitin Pitale +* Alon Hershenhorn +* Andras Deak +* Ankur Dedania +* Antony Lee +* Anubhav Shrimal +* Ayappan P +* azure-pipelines[bot] +* Ben Root +* Colin +* Colin Carroll +* Daniele Nicolodi +* David Haberthür +* David Stansby +* Dmitry Mottl +* Elan Ernest +* Elliott Sales de Andrade +* Eric Wieser +* esvhd +* Galen Lynch +* hannah +* Ildar Akhmetgaleev +* ImportanceOfBeingErnest +* Jody Klymak +* Joel Wanner +* Kai Muehlbauer +* Kevin Rose +* Kyle Sunden +* Marcel Martin +* Matthias Bussonnier +* MeeseeksMachine +* Michael Jancsy +* Nelle Varoquaux +* Nick Papior +* Nikita Kniazev +* Paul Hobson +* pharshalp +* Rasmus Diederichsen +* Ryan May +* saksmito +* Takafumi Arakaki +* teresy +* Thomas A Caswell +* thoo +* Tim Hoffmann +* Tobias Megies +* Tyler Makaro +* Will Handley +* Yuxin Wu + +GitHub issues and pull requests: + +Pull Requests (224): + +* :ghpull:`12785`: Use level kwargs in irregular contour example +* :ghpull:`12767`: Make colorbars constructible with dataless ScalarMappables. +* :ghpull:`12775`: Add note to errorbar function about sign of errors +* :ghpull:`12776`: Fix typo in example (on-borad -> on-board). +* :ghpull:`12771`: Do not rely on external stack frame to exist +* :ghpull:`12526`: Rename jquery files +* :ghpull:`12552`: Update docs for writing image comparison tests. +* :ghpull:`12746`: Use skipif, not xfail, for uncomparable image formats. +* :ghpull:`12747`: Prefer log.warning("%s", ...) to log.warning("%s" % ...). +* :ghpull:`11753`: FIX: Apply aspect before drawing starts +* :ghpull:`12749`: Move toolmanager warning from logging to warning. +* :ghpull:`12708`: Run flake8 in a separate travis environment +* :ghpull:`12737`: Improve docstring of Arc +* :ghpull:`12598`: Support Cn colors with n>=10. +* :ghpull:`12670`: FIX: add setter for hold to un-break basemap +* :ghpull:`12693`: Workaround Text3D breaking tight_layout() +* :ghpull:`12727`: Reorder API docs: separate file per module +* :ghpull:`12738`: Add unobtrusive depreaction note to the first line of the docstring. +* :ghpull:`12740`: DOC: constrained layout guide (fix: Spacing with colorbars) +* :ghpull:`11663`: Refactor color parsing of Axes.scatter +* :ghpull:`12736`: Move deprecation note to end of docstring +* :ghpull:`12704`: Rename tkinter import from Tk to tk. +* :ghpull:`12730`: MNT: merge ignore lines in .flake8 +* :ghpull:`12707`: Fix tk error when closing first pyplot figure +* :ghpull:`12715`: Cleanup dviread. +* :ghpull:`12717`: Delete some ``if __name__ == "__main__"`` clauses. +* :ghpull:`12726`: Fix test_non_gui_warning for Azure (and mplcairo). +* :ghpull:`12720`: Improve docs on Axes scales +* :ghpull:`12537`: Improve error message on failing test_pyplot_up_to_date +* :ghpull:`12721`: Make get_scale_docs() internal +* :ghpull:`12617`: Set up CI with Azure Pipelines +* :ghpull:`12673`: Fix for _axes.scatter() array index out of bound error +* :ghpull:`12676`: Doc: document textpath module +* :ghpull:`12705`: Improve docs on Axes limits and direction +* :ghpull:`12706`: Extend sphinx Makefile to cleanup completely +* :ghpull:`12481`: Warn if plot_surface Z values contain NaN +* :ghpull:`12709`: Correctly remove nans when drawing paths with pycairo. +* :ghpull:`12685`: Make ticks in demo_axes_rgb.py visible +* :ghpull:`12691`: DOC: Link to "How to make a PR" tutorials as badge and in contributing +* :ghpull:`12684`: Change ipython block to code-block +* :ghpull:`11974`: Make code match comment in sankey. +* :ghpull:`12440`: Make arguments to @deprecated/warn_deprecated keyword-only. +* :ghpull:`12683`: TST: mark test_constrainedlayout.py::test_colorbar_location as flaky +* :ghpull:`12686`: Remove deprecation warnings in tests +* :ghpull:`12470`: Update AutoDateFormatter with locator +* :ghpull:`12656`: FIX: fix error in colorbar.get_ticks not having valid data +* :ghpull:`12586`: Improve linestyles example +* :ghpull:`12006`: Added stacklevel=2 to all warnings.warn calls (issue 10643) +* :ghpull:`12651`: FIX: ignore non-finite bbox +* :ghpull:`12653`: Don't warn when accessing deprecated properties from the class. +* :ghpull:`12608`: ENH: allow matplotlib.use after getbackend +* :ghpull:`12658`: Do not warn-depreacted when iterating over rcParams +* :ghpull:`12635`: FIX: allow non bbox_extra_artists calls +* :ghpull:`12659`: Add note that developer discussions are private +* :ghpull:`12543`: Make rcsetup.py flak8 compliant +* :ghpull:`12642`: Don't silence TypeErrors in fmt_{x,y}data. +* :ghpull:`11667`: DOC: update doc requirement +* :ghpull:`12442`: Deprecate passing drawstyle with linestyle as single string. +* :ghpull:`12625`: Shorten some docstrings. +* :ghpull:`12627`: Be a bit more stringent on invalid inputs. +* :ghpull:`12561`: Properly css-style exceptions in the documentation +* :ghpull:`12629`: Fix issue with PyPy on macOS +* :ghpull:`10933`: Remove "experimental" fontconfig font_manager backend. +* :ghpull:`12630`: Fix RcParams.__len__ +* :ghpull:`12285`: FIX: Don't apply tight_layout if axes collapse +* :ghpull:`12548`: undef _XOPEN_SOURCE breaks the build in AIX +* :ghpull:`12615`: Fix travis OSX build +* :ghpull:`12600`: Minor style fixes. +* :ghpull:`12607`: STY: fix whitespace and escaping +* :ghpull:`12603`: FIX: don't import macosx to check if eventloop running +* :ghpull:`12599`: Fix formatting of docstring +* :ghpull:`12569`: Don't confuse uintptr_t and Py_ssize_t. +* :ghpull:`12572`: Fix singleton hist labels +* :ghpull:`12581`: Fix hist() error message +* :ghpull:`12570`: Fix mathtext tutorial for build with Sphinx 1.8. +* :ghpull:`12487`: Update docs/tests for the deprecation of aname and label1On/label2On/etc. +* :ghpull:`12521`: Improve docstring of draw_idle() +* :ghpull:`12573`: BUG: mplot3d: Don't crash if azim or elev are non-integral +* :ghpull:`12574`: Remove some unused imports +* :ghpull:`12568`: Add note regarding builds of old Matplotlibs. +* :ghpull:`12555`: Clarify horizontalalignment and verticalalignment in suptitle +* :ghpull:`12547`: Disable sticky edge accumulation if no autoscaling. +* :ghpull:`12546`: Avoid quadratic behavior when accumulating stickies. +* :ghpull:`12159`: FIX: colorbar re-check norm before draw for autolabels +* :ghpull:`12501`: Rectified plot error +* :ghpull:`11789`: endless looping GIFs with PillowWriter +* :ghpull:`12525`: Fix some flake8 issues +* :ghpull:`12431`: FIX: allow single-string color for scatter +* :ghpull:`12216`: Doc: Fix search for sphinx >=1.8 +* :ghpull:`12461`: FIX: make add_lines work with new colorbar +* :ghpull:`12241`: FIX: make unused spines invisible +* :ghpull:`12516`: Don't handle impossible values for ``align`` in hist() +* :ghpull:`12504`: DOC: clarify min supported version wording +* :ghpull:`12507`: FIX: make minor ticks formatted with science formatter as well +* :ghpull:`12500`: Adjust the widths of the messages during the build. +* :ghpull:`12492`: Simplify radar_chart example. +* :ghpull:`12478`: MAINT: NumPy deprecates asscalar in 1.16 +* :ghpull:`12363`: FIX: errors in get_position changes +* :ghpull:`12495`: Fix duplicate condition in pathpatch3d example +* :ghpull:`11984`: Strip out pkg-config machinery for agg and libqhull. +* :ghpull:`12463`: Document Artist.cursor_data() parameter +* :ghpull:`12489`: Fix typo in documentation of ylim +* :ghpull:`12482`: Test slider orientation +* :ghpull:`12317`: Always install mpl_toolkits. +* :ghpull:`12246`: Be less tolerant of broken installs. +* :ghpull:`12477`: Use \N{MICRO SIGN} instead of \N{GREEK SMALL LETTER MU} in EngFormatter. +* :ghpull:`12483`: Kill FontManager.update_fonts. +* :ghpull:`12448`: Don't error if some font directories are not readable. +* :ghpull:`12474`: Throw ValueError when irregularly gridded data is passed to streamplot. +* :ghpull:`12469`: Clarify documentation of offsetbox.AnchoredText's prop kw argument +* :ghpull:`12468`: Fix ``set_ylim`` unit handling +* :ghpull:`12466`: np.fromstring -> np.frombuffer. +* :ghpull:`12369`: Improved exception handling on animation failure +* :ghpull:`12460`: Deprecate RendererBase.strip_math. +* :ghpull:`12457`: Fix tutorial typos. +* :ghpull:`12453`: Rollback erroneous commit to whats_new.rst from #10746 +* :ghpull:`12452`: Minor updates to the FAQ. +* :ghpull:`10746`: Adjusted matplotlib.widgets.Slider to have optional vertical orientatation +* :ghpull:`12441`: Get rid of a signed-compare warning. +* :ghpull:`12430`: Deprecate Axes3D.plot_surface(shade=None) +* :ghpull:`12435`: Fix numpydoc parameter formatting +* :ghpull:`12434`: Clarify documentation for textprops keyword parameter of TextArea +* :ghpull:`12427`: Document Artist.get_cursor_data +* :ghpull:`12277`: FIX: datetime64 now recognized if in a list +* :ghpull:`10322`: Use np.hypot wherever possible. +* :ghpull:`12423`: Minor simplifications to backend_svg. +* :ghpull:`12293`: Make pyplot more tolerant wrt. 3rd-party subclasses. +* :ghpull:`12360`: Replace axes_grid by axes_grid1 in test +* :ghpull:`10356`: fix detecting which artist(s) the mouse is over +* :ghpull:`12416`: Move font cache rebuild out of exception handler +* :ghpull:`11891`: Group some print()s in backend_ps. +* :ghpull:`12165`: Remove deprecated mlab code +* :ghpull:`12394`: DOC: fix CL tutorial to give same output from saved file and example +* :ghpull:`12387`: Update HTML animation as slider is dragged +* :ghpull:`12408`: Don't crash on invalid registry font entries on Windows. +* :ghpull:`10088`: Deprecate Tick.{gridOn,tick1On,label1On,...} in favor of set_visible. +* :ghpull:`12149`: Mathtext tutorial fixes +* :ghpull:`12393`: Deprecate to-days converters in matplotlib dates +* :ghpull:`12257`: Document standard backends in matplotlib.use() +* :ghpull:`12383`: Revert change of parameter name in annotate() +* :ghpull:`12385`: CI: Added Appveyor Python 3.7 build +* :ghpull:`12247`: Machinery for deprecating properties. +* :ghpull:`12371`: Move check for ImageMagick Windows path to bin_path(). +* :ghpull:`12384`: Cleanup axislines style. +* :ghpull:`12353`: Doc: clarify default parameters in scatter docs +* :ghpull:`12366`: TST: Update test images for new Ghostscript. +* :ghpull:`11648`: FIX: colorbar placement in constrained layout +* :ghpull:`12368`: Don't use stdlib private API in animation.py. +* :ghpull:`12351`: dviread: find_tex_file: Ensure the encoding on windows +* :ghpull:`12244`: Merge barchart examples. +* :ghpull:`12372`: Remove two examples. +* :ghpull:`12214`: Improve docstring of Annotation +* :ghpull:`12347`: DOC: add_child_axes to axes_api.rst +* :ghpull:`12304`: TST: Merge Qt tests into one file. +* :ghpull:`12321`: maint: setupext.py for freetype had a Catch case for missing ft2build.h +* :ghpull:`12340`: Catch test deprecation warnings for mlab.demean +* :ghpull:`12334`: Improve selection of inset indicator connectors. +* :ghpull:`12316`: Fix some warnings from Travis +* :ghpull:`12268`: FIX: remove unnecessary ``self`` in ``super_``-calls, fixes #12265 +* :ghpull:`12212`: font_manager: Fixed problems with Path(...).suffix +* :ghpull:`12326`: fixed minor spelling error in docstring +* :ghpull:`12296`: Make FooConverter inherit from ConversionInterface in examples +* :ghpull:`12322`: Fix the docs build. +* :ghpull:`12319`: Fix Travis 3.6 builds +* :ghpull:`12309`: Deduplicate implementations of FooNorm.autoscale{,_None} +* :ghpull:`12314`: Deprecate ``axis('normal')`` in favor of ``axis('auto')``. +* :ghpull:`12313`: BUG: Fix typo in view_limits() for MultipleLocator +* :ghpull:`12307`: Clarify missing-property error message. +* :ghpull:`12274`: MNT: put back ``_hold`` as read-only attribute on AxesBase +* :ghpull:`12260`: Fix docs : change from issue #12191, remove "if 1:" blocks in examples +* :ghpull:`12163`: TST: Defer loading Qt framework until test is run. +* :ghpull:`12253`: Handle utf-8 output by kpathsea on Windows. +* :ghpull:`12301`: Ghostscript 9.0 requirement revisited +* :ghpull:`12294`: Fix expand_dims warnings in triinterpolate +* :ghpull:`12292`: TST: Modify the bar3d test to show three more angles +* :ghpull:`12297`: Remove some pytest parameterising warnings +* :ghpull:`12261`: FIX: parasite axis2 demo +* :ghpull:`12278`: Document inheriting docstrings +* :ghpull:`12262`: Simplify empty-rasterized pdf test. +* :ghpull:`12269`: Add some param docs to BlockingInput methods +* :ghpull:`12272`: Fix ``contrained`` to ``constrained`` +* :ghpull:`12255`: Deduplicate inherited docstrings. +* :ghpull:`12254`: Improve docstrings of Animations +* :ghpull:`12258`: Fix CSS for module-level data +* :ghpull:`12222`: Remove extraneous if 1 statements in demo_axisline_style.py +* :ghpull:`12137`: MAINT: Vectorize bar3d +* :ghpull:`12219`: Merge OSXInstalledFonts into findSystemFonts. +* :ghpull:`12229`: Less ACCEPTS, more numpydoc. +* :ghpull:`12209`: Doc: Sort named colors example by palette +* :ghpull:`12237`: Use (float, float) as parameter type for 2D positions in docstrings +* :ghpull:`12238`: Typo in docs +* :ghpull:`12236`: Make boilerplate-generated pyplot.py flake8 compliant +* :ghpull:`12231`: CI: Speed up Appveyor repository cloning +* :ghpull:`12228`: Fix trivial typo in docs. +* :ghpull:`12227`: Use (float, float) as parameter type for 2D positions +* :ghpull:`12199`: Allow disabling specific mouse actions in blocking_input +* :ghpull:`12213`: Change win32InstalledFonts return value +* :ghpull:`12207`: FIX: dont' check for interactive framework if none required +* :ghpull:`11688`: Don't draw axis (spines, ticks, labels) twice when using parasite axes. +* :ghpull:`12210`: Axes.tick_params() argument checking +* :ghpull:`12211`: Fix typo +* :ghpull:`12200`: Slightly clarify some invalid shape exceptions for image data. +* :ghpull:`12151`: Don't pretend @deprecated applies to classmethods. +* :ghpull:`12190`: Remove some unused variables and imports +* :ghpull:`12186`: DOC: fix API note about get_tightbbox +* :ghpull:`12203`: Document legend's slowness when "best" location is used +* :ghpull:`12192`: Exclude examples from lgtm analysis +* :ghpull:`12196`: Give Carreau the ability to mention the backport bot. +* :ghpull:`12187`: DOC: Update INSTALL.rst +* :ghpull:`12164`: Fix Annotation.contains. +* :ghpull:`12177`: FIX: remove cwd from mac font path search +* :ghpull:`12182`: Fix Flash of Unstyled Content by removing remaining Flipcause integration +* :ghpull:`12184`: DOC: update "Previous What's New" for 2.2 with reference to cividis paper +* :ghpull:`12183`: Doc: Don't use Sphinx 1.8 +* :ghpull:`12171`: Remove internal warning due to zsort deprecation +* :ghpull:`12166`: Document preference order for backend auto selection +* :ghpull:`12154`: Avoid triggering deprecation warnings with pytest 3.8. +* :ghpull:`12030`: Speed up canvas redraw for GTK3Agg backend. +* :ghpull:`12157`: Properly declare the interactive framework for the qt4foo backends. +* :ghpull:`12156`: Cleanup the GridSpec demos. +* :ghpull:`12144`: Add explicit getters and setters for Annotation.anncoords. +* :ghpull:`12152`: Use _warn_external for deprecations warnings. +* :ghpull:`12148`: BLD: pragmatic fix for building basic_unit example on py37 +* :ghpull:`12147`: DOC: update the gh_stats code + +Issues (170): + +* :ghissue:`12699`: Annotations get cropped out of figures saved with bbox_inches='tight' +* :ghissue:`9217`: Weirdness with inline figure DPI settings in Jupyter Notebook +* :ghissue:`4853`: %matplotlib notebook creates much bigger figures than %matplotlib inline +* :ghissue:`12780`: Vague/misleading exception message in scatter() +* :ghissue:`10239`: Weird interaction with Tkinter +* :ghissue:`10045`: subplots_adjust() breaks layout of tick labels +* :ghissue:`12765`: Matplotlib draws incorrect color +* :ghissue:`11800`: Gridspec tutorial +* :ghissue:`12757`: up the figure +* :ghissue:`12724`: Importing pyplot steals focus on macOS +* :ghissue:`12669`: fixing _hold on cartopy broke basemap +* :ghissue:`12687`: Plotting text on 3d axes before tight_layout() breaks tight_layout() +* :ghissue:`12734`: Wishlist: functionally linked twin axes +* :ghissue:`12576`: RcParams is fundamentally broken +* :ghissue:`12641`: ``_axes.py.scatter()`` array index out of bound / calling from ``seaborn`` +* :ghissue:`12703`: Error when closing first of several pyplot figures in TkAgg +* :ghissue:`12728`: Deprecation Warnings +* :ghissue:`4124`: Provide canonical examples of mpl in web frameworks +* :ghissue:`10574`: Default color after setting alptha to Patch in legened +* :ghissue:`12702`: couldn't find or load Qt platform plugin "windows" in "". +* :ghissue:`11139`: "make clean" doesn't remove all the build doc files +* :ghissue:`12701`: semilogy with NaN prevents display of Title (cairo backend) +* :ghissue:`12696`: Process finished with exit code -1 due to matplotlib configuration +* :ghissue:`12692`: matplotlib.plot.show always blocks the execution of python script +* :ghissue:`12433`: Travis error is MacOS image tolerance of 0.005 for ``test_constrained_layout.py::test_colorbar_location`` +* :ghissue:`10017`: unicode_literals considered harmful +* :ghissue:`12682`: using AxesImage.set_clim() shrinks the colorbar +* :ghissue:`12620`: Overlapping 3D objects +* :ghissue:`12680`: matplotlib ui in thread still blocked +* :ghissue:`11908`: Improve linestyle documentation +* :ghissue:`12650`: Deprecation warnings when calling help(matplotlib) +* :ghissue:`10643`: Most warnings calls do not set the stacklevel +* :ghissue:`12671`: make_axes_locatable breaks with matplotlib 3.0 +* :ghissue:`12664`: plt.scatter crashes because overwrites the colors to an empty list +* :ghissue:`12188`: matplotlib 3 pyplot on MacOS bounces rocket icon in dock +* :ghissue:`12648`: Regression when calling annotate with nan values for the position +* :ghissue:`12362`: In 3.0.0 backend cannot be set if 'get_backend()' is run first +* :ghissue:`12649`: Over-verbose deprecation warning about examples.directory +* :ghissue:`12661`: In version 3.0.0 make_axes_locatable + colorbar does not produce expected result +* :ghissue:`12634`: axes_grid1 axes have no keyword argument 'bbox_extra_artists' +* :ghissue:`12654`: Broken 'Developer Discussions' link +* :ghissue:`12657`: With v3.0.0 mpl_toolkits.axes_grid1.make_axes_locatable().append_axes breaks in Jupyter +* :ghissue:`12645`: Markers are offset when 'facecolor' or 'edgecolor' are set to 'none' when plotting data +* :ghissue:`12644`: Memory leak with plt.plot in Jupyter Notebooks? +* :ghissue:`12632`: Do we need input hooks macosx? +* :ghissue:`12535`: AIX Support - Do not undef _XOPEN_SOURCE +* :ghissue:`12626`: AttributeError: module 'matplotlib' has no attribute 'artist' +* :ghissue:`11034`: Doc Typo: matplotlib.axes.Axes.get_yticklabels / Axis.get_ticklabels +* :ghissue:`12624`: make_axes_locatable : Colorbar in the middle instead of bottom while saving a pdf, png. +* :ghissue:`11094`: cannot use GUI backends inside django request handlers +* :ghissue:`12613`: transiently linked interactivity of unshared pair of axes generated with make_axes_locatable +* :ghissue:`12578`: macOS builds are broken +* :ghissue:`12612`: gui backends do not work inside of flask request handlers +* :ghissue:`12611`: Matplotlib 3.0.0 Likely bug TypeError: stackplot() got multiple values for argument 'x' +* :ghissue:`12610`: matplotlibrc causes import to fail 3.0.0 (didn't crash 2.y.z series) +* :ghissue:`12601`: Can't import matplotlib +* :ghissue:`12597`: Please soon add Chinese language support!! It's to difficult for new people handle character +* :ghissue:`12590`: Matplotlib pypi distribution lacks packages for Python 2.7 +* :ghissue:`3869`: Numeric labels do not work with plt.hist +* :ghissue:`12580`: Incorrect hist error message with bad color size +* :ghissue:`12100`: document where to get nightly wheels +* :ghissue:`7205`: Converting docstrings to numpydoc +* :ghissue:`12564`: Saving plot as PNG file prunes tick labels +* :ghissue:`12161`: Problems of using sharex options with lines plots and colormesh with colorbar +* :ghissue:`12256`: tight_layout for plot with non-clipped screen-unit items causes issues on zoom +* :ghissue:`12545`: Program quit unormally without reporting error +* :ghissue:`12532`: Incorrect rendering of math symbols +* :ghissue:`12567`: Calling pyplot.show() with TkAgg backend on x86 machine raises OverflowError. +* :ghissue:`12571`: cannot install because Fatal Python error: initfsencoding: Unable to get the locale encoding +* :ghissue:`12566`: Problem installing Version 1.3.1 -> missing pkg-config freetype and libagg +* :ghissue:`12556`: Matplotlib 3.0.0 import hangs in clean environment +* :ghissue:`12197`: Weird behaviour of suptitle() when horizontalalignment is not 'center' +* :ghissue:`12550`: colorbar resizes in animation +* :ghissue:`12155`: Incorrect placement of Colorbar ticks using LogNorm +* :ghissue:`11787`: Looping gifs with PillowWriter +* :ghissue:`12533`: Plotting with alpha=0 with rasterized=True causes ValueError on saving to pdf +* :ghissue:`12438`: Scatter doesn't accept a list of strings as color spec. +* :ghissue:`12429`: scatter() does not accept gray strings anymore +* :ghissue:`12499`: run my code failed after i Import pylab failed, python version is 3.6.6 +* :ghissue:`12458`: add_lines misses lines for matplotlib.colorbar.ColorbarBase +* :ghissue:`12239`: 3d axes are collapsed by tight_layout +* :ghissue:`12414`: Function to draw angle between two lines +* :ghissue:`12488`: inconsistent colorbar tick labels for LogNorm +* :ghissue:`12515`: pyplot.step broken in 3.0.0? +* :ghissue:`12355`: Error for bbox_inches='tight' in savefig with make_axes_locatable +* :ghissue:`12505`: ImageGrid in 3.0 +* :ghissue:`12502`: How can I put the ticks of logarithmic coordinate in the axes? +* :ghissue:`12496`: Maplotlib Can't Plot a Dataset +* :ghissue:`12486`: rotate label of legend ? +* :ghissue:`12291`: Importing pyplot crashes on macOS due to missing fontlist-v300.json and then Permission denied: '/opt/local/share/fonts' +* :ghissue:`12480`: "close_event" for nbagg/notebook backend +* :ghissue:`12467`: Documentation of AnchoredText's prop keyword argument is misleading +* :ghissue:`12288`: New function signatures in pyplot break Cartopy +* :ghissue:`12445`: Error on colorbar +* :ghissue:`8760`: Traceback from animation.MovieWriter.saving method is confusing because it provides no useful information +* :ghissue:`9205`: after the animation encoder (e.g. ffmpeg) fails, the animation framework itself fails internally in various ways while trying to report the error +* :ghissue:`12357`: Unclear error when saving Animation using FFMpeg +* :ghissue:`12454`: Formatting numerical legend +* :ghissue:`9636`: matplotlib crashes upon window resize +* :ghissue:`11473`: Continuous plotting cause memory leak 20-50kb/sec +* :ghissue:`12018`: No image pop-up or display for plt.imshow() and plt.show() +* :ghissue:`11583`: How to draw parallelepiped with real size scaling? +* :ghissue:`12446`: Polar Contour - float() argument must be a string or a number, not 'AxesParasiteParasiteAuxTrans' +* :ghissue:`12444`: Issues with gridspec/tight_layout in matplotlib version 2.2.3 +* :ghissue:`11154`: Unexpected behavior for Axes3D.plot_surface(shade=None) +* :ghissue:`12409`: Calling savefig() multiple times causes crash of Spyder IDE / IPython Kernel dying. +* :ghissue:`9799`: FigureCanvasTkAgg - "buffer is of wrong type" error during blit +* :ghissue:`12439`: FileNotFoundError for font_manager +* :ghissue:`12437`: matplotlib-mac +* :ghissue:`12121`: Documentation of TextArea's fontprops keyword argument is misleading +* :ghissue:`12279`: Axes.format_cursor_data lacks documentation and seems unused +* :ghissue:`12428`: Simple plot spacing bug: ylabel gets wrongfully removed from plot +* :ghissue:`11190`: Images in the docs are too large. +* :ghissue:`12271`: error with errorbar with datetime64 +* :ghissue:`12405`: plt.stackplot() does not work with 3.0.0 +* :ghissue:`12282`: ``Axes.imshow`` tooltip does not get updated when another call to ``Axes.imshow`` is made +* :ghissue:`12420`: How to remove Rectangle Selector from figure? +* :ghissue:`12391`: Constrained Layout tutorial needs some cleanup.... +* :ghissue:`12406`: Bug with font finding, and here is my fix as well. +* :ghissue:`9051`: ParasiteAxes over plotting +* :ghissue:`12325`: Annotation change from "s" to "text" in 3.0- documentation +* :ghissue:`12397`: plt.show( ) not working (can't get figures to display in external window) when using jupyter QTconsole +* :ghissue:`12396`: Defining arrowprops in draggable annotation disables the pick_event +* :ghissue:`12389`: Setting row edge color of matplotlib table +* :ghissue:`12376`: The output figure file is strange: there is a lot of blank area on the output figure. +* :ghissue:`11641`: constrained_layout and colorbar for a subset of axes +* :ghissue:`12373`: Unexpected outcome with matplotlib.pyplot.pcolor() +* :ghissue:`12370`: ImageGrid bug when using inline backend +* :ghissue:`12364`: pdf image generated by matplotlib with semi transparent lines missing in Word on Windows. +* :ghissue:`12352`: TeX rendering broken on master with windows +* :ghissue:`12354`: Too many levels of symbolic links +* :ghissue:`12323`: indicate_inset_zoom sometimes draws incorrect connector lines +* :ghissue:`12341`: Figures not rendering in docker +* :ghissue:`12335`: Matplotlib plt.Rectangle Incoherent Results +* :ghissue:`12265`: ParasiteAxesAuxTrans pcolor/pcolormesh and contour/contourf broken +* :ghissue:`12337`: AttributeError: module 'matplotlib.pyplot' has no attribute 'hold' +* :ghissue:`11673`: Inconsistent font settings when changing style context +* :ghissue:`11693`: The rcParams setting for figure.figsize does not change when run from another notebook +* :ghissue:`11725`: New mode between non-interactive and interactive? +* :ghissue:`12134`: tight_layout flips images when making plots without displaying them +* :ghissue:`12310`: plot fails with datetime64[ns] timezone aware objects (for example datetime64[ns, UTC+00:00] ) +* :ghissue:`12191`: "if 1:" blocks in examples +* :ghissue:`11288`: FR: Figure.subplots add optional SubplotSpec parameter +* :ghissue:`12298`: c and cmap for plot +* :ghissue:`12286`: Sample code given in Matplotlib's site does not work. +* :ghissue:`11955`: UnicodeDecodeError on importing pyplot in python2 +* :ghissue:`12208`: parasite axis2 demo now crashes with log x-axis +* :ghissue:`8871`: Error when using quantities when plotting errorbars +* :ghissue:`6658`: literature reference for 'viridis' colormap +* :ghissue:`6789`: Tutorial pyplot_scales.py crashes when used with plt.tight_layout() +* :ghissue:`6922`: imshow does not immediately update shared axes +* :ghissue:`11879`: Unable to change filename when saving from figure window +* :ghissue:`12225`: In histogram, bars whose count is larger than 2**31 sometimes become negative +* :ghissue:`1461`: DOC: keyword arguments to plt.axes, plt.subpot, and fig.add_subplot +* :ghissue:`12173`: Cannot import pyplot +* :ghissue:`12217`: Python will suddenly not plot anymore +* :ghissue:`12120`: Default legend behavior (loc='best') very slow for large amounts of data. +* :ghissue:`12176`: import pyplot on MacOS without font cache will search entire subtree of current dir +* :ghissue:`12146`: fix pdf docs +* :ghissue:`12160`: MacOS: Cannot import name 'format_exc' +* :ghissue:`12169`: Cannot install 3.0.0 "python setup.py egg_info" failed (freetype & png) +* :ghissue:`12168`: pip install v3.0.0 'failed with exit status 1181' +* :ghissue:`12107`: warnings re: deprecated pytest API with pytest 3.8 +* :ghissue:`12162`: https://matplotlib.org/users/beginner.html is outdated +* :ghissue:`12010`: Popover over plot is very slow +* :ghissue:`6739`: Make matplotlib fail more gracefully in headless environments +* :ghissue:`3679`: Runtime detection for default backend +* :ghissue:`11340`: matplotlib fails to install from source with intel compiler +* :ghissue:`11838`: docs do not build on py3.7 due to small change in python handling of -m +* :ghissue:`12115`: Plot in JS Animation has larger margin than "normal" PNG plot diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.0.3.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.0.3.rst new file mode 100644 index 0000000000000000000000000000000000000000..5c1271e52e4f3839821c392f3883e41f4c1325af --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.0.3.rst @@ -0,0 +1,147 @@ +.. _github-stats-3-0-3: + +GitHub statistics for 3.0.3 (Feb 28, 2019) +========================================== + +GitHub statistics for 2018/11/10 (tag: v3.0.2) - 2019/02/28 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 14 issues and merged 92 pull requests. +The full list can be seen `on GitHub `__ + +The following 19 authors contributed 157 commits. + +* Antony Lee +* Christer Jensen +* Christoph Gohlke +* David Stansby +* Elan Ernest +* Elliott Sales de Andrade +* ImportanceOfBeingErnest +* James Adams +* Jody Klymak +* Johannes H. Jensen +* Matthias Geier +* MeeseeksMachine +* Molly Rossow +* Nelle Varoquaux +* Paul Ivanov +* Pierre Thibault +* Thomas A Caswell +* Tim Hoffmann +* Tobia De Koninck + +GitHub issues and pull requests: + +Pull Requests (92): + +* :ghpull:`13493`: V3.0.3 prep +* :ghpull:`13491`: V3.0.x pi +* :ghpull:`13460`: Backport PR #13455 on branch v3.0.x (BLD: only try to get freetype src if src does not exist) +* :ghpull:`13461`: Backport PR #13426 on branch v3.0.x (FIX: bbox_inches='tight' with only non-finite bounding boxes) +* :ghpull:`13426`: FIX: bbox_inches='tight' with only non-finite bounding boxes +* :ghpull:`13453`: Backport PR #13451 on branch v3.0.x (MNT: fix logic error where we never try the second freetype URL) +* :ghpull:`13451`: MNT: fix logic error where we never try the second freetype URL +* :ghpull:`13446`: Merge pull request #11246 from anntzer/download-jquery +* :ghpull:`13437`: Backport PR #13436 on branch v3.0.x (Add get/set_in_layout to artist API docs.) +* :ghpull:`13436`: Add get/set_in_layout to artist API docs. +* :ghpull:`13432`: Really fix ArtistInspector.get_aliases +* :ghpull:`13416`: Backport PR #13405 on branch v3.0.x (Fix imshow()ing PIL-opened images.) +* :ghpull:`13418`: Backport PR #13412 and #13337 on branch v3.0.x +* :ghpull:`13412`: CI: add additional qt5 deb package on travis +* :ghpull:`13370`: Backport PR #13367 on branch v3.0.x (DOC: fix note of what version hold was deprecated in (2.0 not 2.1)) +* :ghpull:`13366`: Backport PR #13365 on branch v3.0.x (Fix gcc warning) +* :ghpull:`13365`: Fix gcc warning +* :ghpull:`13347`: Backport PR #13289 on branch v3.0.x (Fix unhandled C++ exception) +* :ghpull:`13349`: Backport PR #13234 on branch v3.0.x +* :ghpull:`13281`: MAINT install of pinned vers for travis +* :ghpull:`13289`: Fix unhandled C++ exception +* :ghpull:`13345`: Backport PR #13333 on branch v3.0.x (Fix possible leak of return of PySequence_GetItem.) +* :ghpull:`13333`: Fix possible leak of return of PySequence_GetItem. +* :ghpull:`13337`: Bump to flake8 3.7. +* :ghpull:`13340`: Backport PR #12398 on branch v3.0.x (CI: Don't run AppVeyor/Travis for doc backport branches.) +* :ghpull:`13317`: Backport PR #13316 on branch v3.0.x (Put correct version in constrained layout tutorial) +* :ghpull:`13308`: Backport PR #12678 on branch v3.0.x +* :ghpull:`12678`: FIX: properly set tz for YearLocator +* :ghpull:`13291`: Backport PR #13287 on branch v3.0.x (Fix unsafe use of NULL pointer) +* :ghpull:`13290`: Backport PR #13288 on branch v3.0.x (Fix potential memory leak) +* :ghpull:`13287`: Fix unsafe use of NULL pointer +* :ghpull:`13288`: Fix potential memory leak +* :ghpull:`13273`: Backport PR #13272 on branch v3.0.x (DOC Better description of inset locator and colorbar) +* :ghpull:`12812`: Backport PR #12809 on branch v3.0.x (Fix TypeError when calculating tick_values) +* :ghpull:`13245`: Backport PR #13244 on branch v3.0.x (Fix typo) +* :ghpull:`13176`: Backport PR #13047 on branch v3.0.x (Improve docs on contourf extend) +* :ghpull:`13215`: Backport PR #13212 on branch v3.0.x (Updated the docstring for pyplot.figure to list floats as the type for figsize argument) +* :ghpull:`13158`: Backport PR #13150 on branch v3.0.x (Remove unused add_dicts from example.) +* :ghpull:`13157`: Backport PR #13152 on branch v3.0.x (DOC: Add explanatory comment for colorbar with axes divider example) +* :ghpull:`13221`: Backport PR #13194 on branch v3.0.x (TST: Fix incorrect call to pytest.raises.) +* :ghpull:`13230`: Backport PR #13226 on branch v3.0.x (Avoid triggering warnings in mandelbrot example.) +* :ghpull:`13216`: Backport #13205 on branch v3.0.x (Add xvfb service to travis) +* :ghpull:`13194`: TST: Fix incorrect call to pytest.raises. +* :ghpull:`13212`: Updated the docstring for pyplot.figure to list floats as the type for figsize argument +* :ghpull:`13205`: Add xvfb service to travis +* :ghpull:`13204`: Add xvfb service to travis +* :ghpull:`13175`: Backport PR #13015 on branch v3.0.x (Enable local doc building without git installation) +* :ghpull:`13047`: Improve docs on contourf extend +* :ghpull:`13015`: Enable local doc building without git installation +* :ghpull:`13159`: Revert "Pin pytest to <3.8 (for 3.0.x)" +* :ghpull:`13150`: Remove unused add_dicts from example. +* :ghpull:`13152`: DOC: Add explanatory comment for colorbar with axes divider example +* :ghpull:`13085`: Backport PR #13081 on branch v3.0.x (DOC: forbid a buggy version of pillow for building docs) +* :ghpull:`13082`: Backport PR #13080 on branch v3.0.x (Pin pillow to < 5.4 to fix doc build) +* :ghpull:`13054`: Backport PR #13052 on branch v3.0.x (Small bug fix in image_slices_viewer) +* :ghpull:`13052`: Small bug fix in image_slices_viewer +* :ghpull:`13036`: Backport PR #12949 on branch v3.0.x (Update docstring of Axes3d.scatter) +* :ghpull:`12949`: Update docstring of Axes3d.scatter +* :ghpull:`13004`: Backport PR #13001: Update windows build instructions +* :ghpull:`13011`: Backport PR #13006 on branch v3.0.x (Add category module to docs) +* :ghpull:`13009`: Fix dependencies for travis build with python 3.5 +* :ghpull:`13006`: Add category module to docs +* :ghpull:`13001`: Update windows build instructions +* :ghpull:`12996`: Fix return type in 3D scatter docs +* :ghpull:`12972`: Backport PR #12929 on branch v3.0.x (FIX: skip gtk backend if gobject but not pygtk is installed) +* :ghpull:`12596`: Use sudo:true for nightly builds. +* :ghpull:`12929`: FIX: skip gtk backend if gobject but not pygtk is installed +* :ghpull:`12965`: Backport PR #12960 on branch v3.0.x (Remove animated=True from animation docs) +* :ghpull:`12964`: Backport PR #12938 on branch v3.0.x (Fix xtick.minor.visible only acting on the xaxis) +* :ghpull:`12938`: Fix xtick.minor.visible only acting on the xaxis +* :ghpull:`12937`: Backport PR #12914 on branch 3.0.x: Fix numpydoc formatting +* :ghpull:`12914`: Fix numpydoc formatting +* :ghpull:`12923`: Backport PR #12921 on branch v3.0.x (Fix documentation of vert parameter of Axes.bxp) +* :ghpull:`12921`: Fix documentation of vert parameter of Axes.bxp +* :ghpull:`12912`: Backport PR #12878 on branch v3.0.2-doc (Pin pytest to <3.8 (for 3.0.x)) +* :ghpull:`12906`: Backport PR #12774 on branch v3.0.x +* :ghpull:`12774`: Cairo backend: Fix alpha render of collections +* :ghpull:`12854`: Backport PR #12835 on branch v3.0.x (Don't fail tests if cairo dependency is not installed.) +* :ghpull:`12896`: Backport PR #12848 on branch v3.0.x (Fix spelling of the name Randall Munroe) +* :ghpull:`12894`: Backport PR #12890 on branch v3.0.x (Restrict postscript title to ascii.) +* :ghpull:`12838`: Backport PR #12795 on branch v3.0.x (Fix Bezier degree elevation formula in backend_cairo.) +* :ghpull:`12843`: Backport PR #12824 on branch v3.0.x +* :ghpull:`12890`: Restrict postscript title to ascii. +* :ghpull:`12878`: Pin pytest to <3.8 (for 3.0.x) +* :ghpull:`12870`: Backport PR #12869 on branch v3.0.x (Fix latin-1-ization of Title in eps.) +* :ghpull:`12869`: Fix latin-1-ization of Title in eps. +* :ghpull:`12835`: Don't fail tests if cairo dependency is not installed. +* :ghpull:`12848`: Fix spelling of the name Randall Munroe +* :ghpull:`12795`: Fix Bezier degree elevation formula in backend_cairo. +* :ghpull:`12824`: Add missing datestr2num to docs +* :ghpull:`12791`: Backport PR #12790 on branch v3.0.x (Remove ticks and titles from tight bbox tests.) +* :ghpull:`12790`: Remove ticks and titles from tight bbox tests. + +Issues (14): + +* :ghissue:`10360`: creating PathCollection proxy artist with %matplotlib inline raises ValueError: cannot convert float NaN to integer +* :ghissue:`13276`: calling annotate with nan values for the position still gives error after 3.0.2 +* :ghissue:`13450`: Issues with jquery download caching +* :ghissue:`13223`: label1On set to true when axis.tick_params(axis='both', which='major', length=5) +* :ghissue:`13311`: docs unclear on status of constraint layout +* :ghissue:`12675`: Off-by-one bug in annual axis labels when localized time crosses year boundary +* :ghissue:`13208`: Wrong argument type for figsize in documentation for figure +* :ghissue:`13201`: test_backend_qt tests failing +* :ghissue:`13013`: v3.0.2 local html docs "git describe" error +* :ghissue:`13051`: Missing self in image_slices_viewer +* :ghissue:`12920`: Incorrect return type in mplot3d documentation +* :ghissue:`12907`: Tiny typo in documentation of matplotlib.figure.Figure.colorbar +* :ghissue:`12892`: GTK3Cairo Backend Legend TypeError +* :ghissue:`12815`: DOC: matplotlib.dates datestr2num function documentation is missing diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.1.0.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.1.0.rst new file mode 100644 index 0000000000000000000000000000000000000000..97bee1af56b8c3a86718977d66886a556d29bf27 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.1.0.rst @@ -0,0 +1,1251 @@ +.. _github-stats-3-1-0: + +GitHub statistics for 3.1.0 (May 18, 2019) +========================================== + +GitHub statistics for 2018/09/18 (tag: v3.0.0) - 2019/05/18 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 161 issues and merged 918 pull requests. +The full list can be seen `on GitHub `__ + +The following 150 authors contributed 3426 commits. + +* Abhinuv Nitin Pitale +* Adam J. Stewart +* Alistair Muldal +* Alon Hershenhorn +* Andras Deak +* Ankur Dedania +* Antony Lee +* Anubhav Shrimal +* Ao Liu (frankliuao) +* Ayappan P +* azure-pipelines[bot] +* Bas van Schaik +* Ben Root +* Benjamin Bengfort +* Benjamin Congdon +* Bharat123rox +* Brigitta Sipocz +* btang02 +* Carsten +* Carsten Schelp +* Cho Yin Yong +* Chris Zimmerman +* Christer Jensen +* Christoph Gohlke +* Christoph Reiter +* Christopher Bradshaw +* Colin +* Colin Carroll +* dabana +* Dana-Farber +* Daniele Nicolodi +* DanielMatu +* David Haberthür +* David Stansby +* Dietmar Schwertberger +* Dmitry Mottl +* E\. G\. Patrick Bos +* Elan Ernest +* Elliott Sales de Andrade +* Eric Firing +* Eric Larson +* Eric Wieser +* esvhd +* fredrik-1 +* fuzzythecat +* Galen Lynch +* Gazing +* gwin-zegal +* hannah +* Harshal Prakash Patankar +* hershen +* Ildar Akhmetgaleev +* ImportanceOfBeingErnest +* Isa Hassen +* Jae-Joon Lee +* James A. Bednar +* James Adams +* Jan S. (Milania1) +* Jarrod Millman +* Jessica B. Hamrick +* Jody Klymak +* Joel T. Frederico +* Joel Wanner +* Johannes H. Jensen +* Joseph Albert +* Joshua Klein +* Jouni K. Seppänen +* Jun Tan +* Kai Muehlbauer +* Katrin Leinweber +* Kayla Ngan +* Kevin Rose +* Kjell Le +* KonradAdamczyk +* ksunden +* Kyle Sunden +* Leon Loopik +* Levi Kilcher +* LevN0 +* luftek +* Maik Riechert +* Marcel Martin +* Mark Harfouche +* Marko Baštovanović +* Matthias Bussonnier +* Matthias Geier +* Matti Picus +* MeeseeksMachine +* Michael Droettboom +* Michael Jancsy +* Mike Frysinger +* Molly Rossow +* MortenSHUTE +* mromanie +* nathan78906 +* Nelle Varoquaux +* Nick Papior +* Nicolas Courtemanche +* Nikita Kniazev +* njwhite +* Oliver Natt +* Paul +* Paul Hobson +* Paul Ivanov +* Paul J. Koprowski +* pharshalp +* Phil Elson +* Pierre Thibault +* QiCuiHub +* Rasmus Diederichsen +* Ratin_Kumar +* Rob Harrigan +* Roman Yurchak +* Ryan May +* Ryan Morshead +* Saket Choudhary +* saksmito +* SBCV +* Sebastian Bullinger +* Sebastian Hegler +* Seunghoon Park +* simon-kraeusel +* smheidrich +* Stephane Raynaud +* Stephen-Chilcote +* sxntxn +* Taehoon Lee +* Takafumi Arakaki +* Taras +* Taras Kuzyo +* teresy +* Thein Oo +* Thomas A Caswell +* Thomas Hisch +* Thomas Robitaille +* thoo +* Tim Hoffmann +* Tobia De Koninck +* Tobias Megies +* Tyler Makaro +* V\. Armando Solé +* Viraj Mohile +* Will Handley +* woclass +* Yasaman-Mah +* yeo +* Yuxin Wu +* Yuya +* Zhili (Jerry) Pan +* zhoubecky + +GitHub issues and pull requests: + +Pull Requests (918): + +* :ghpull:`14209`: Backport PR #14197 on branch v3.1.x (Minor cleanup of acorr/xcoor docs) +* :ghpull:`14210`: Make intro tutorial less jargony. +* :ghpull:`14197`: Minor cleanup of acorr/xcoor docs +* :ghpull:`14203`: Backport PR #14202 on branch v3.1.x (Fix docstring of Line2D.set_data.) +* :ghpull:`14202`: Fix docstring of Line2D.set_data. +* :ghpull:`14196`: Backport PR #14188 on branch v3.1.x (Clarify scope of MouseEvent attributes) +* :ghpull:`14188`: Clarify scope of MouseEvent attributes +* :ghpull:`14194`: Backport PR #14167 on branch v3.1.x (Fix backend_pgf header.) +* :ghpull:`14193`: Backport PR #14153 on branch v3.1.x (Update qt_compat.py test for already imported binding.) +* :ghpull:`14167`: Fix backend_pgf header. +* :ghpull:`14153`: Update qt_compat.py test for already imported binding. +* :ghpull:`14190`: Backport PR #14176 on branch v3.1.x (Merge doc/api/api_overview and doc/api/index.) +* :ghpull:`14192`: Unbreak testsuite for pytest 4.5. +* :ghpull:`14189`: Backport PR #14186 on branch v3.1.x (Update FancyBboxPatch docs to numpydoc style) +* :ghpull:`14176`: Merge doc/api/api_overview and doc/api/index. +* :ghpull:`14186`: Update FancyBboxPatch docs to numpydoc style +* :ghpull:`14187`: Backport PR #13169 on branch v3.1.x (Add example code for current logo) +* :ghpull:`14165`: Backport PR #14156 on branch v3.1.x (Fix glyph loading in textpath.) +* :ghpull:`14156`: Fix glyph loading in textpath. +* :ghpull:`14162`: Backport PR #14150 on branch v3.1.x (Fix deprecation of withdash for figtext().) +* :ghpull:`14150`: Fix deprecation of withdash for figtext(). +* :ghpull:`14136`: Backport PR #14109 on branch v3.1.x +* :ghpull:`14109`: Some simple pyplot doc improvements +* :ghpull:`14129`: Backport PR #14117 on branch v3.1.x (Simplify ribbon_box example.) +* :ghpull:`14128`: Backport PR #14057 on branch v3.1.x (Improve Gradient bar example) +* :ghpull:`14127`: Backport PR #14125 on branch v3.1.x (Remove extra keyword from pytest.skip call.) +* :ghpull:`14117`: Simplify ribbon_box example. +* :ghpull:`14057`: Improve Gradient bar example +* :ghpull:`14125`: Remove extra keyword from pytest.skip call. +* :ghpull:`14123`: Backport PR #14119 on branch v3.1.x (Add ridge_map to third party packages documentation) +* :ghpull:`14119`: Add ridge_map to third party packages documentation +* :ghpull:`14103`: Backport PR #14088 on branch v3.1.x (Cleanup major_minor_demo.) +* :ghpull:`14102`: Backport PR #14100 on branch v3.1.x (Improve docstring of axes_zoom_effect example.) +* :ghpull:`14099`: Backport PR #14090 on branch v3.1.x (Pep8ify some variable names in examples.) +* :ghpull:`14100`: Improve docstring of axes_zoom_effect example. +* :ghpull:`14088`: Cleanup major_minor_demo. +* :ghpull:`14090`: Pep8ify some variable names in examples. +* :ghpull:`14097`: Backport PR #14079 on branch v3.1.x (Consistently use axs.flat instead of axs.flatten()) +* :ghpull:`14095`: Backport PR #14087 on branch v3.1.x (Cleanup date example.) +* :ghpull:`14094`: Backport PR #14029 on branch v3.1.x (Fix doc building with numpydoc 0.9) +* :ghpull:`14093`: Backport PR #14052 on branch v3.1.x (Check axes identity in image.contains.) +* :ghpull:`14092`: Backport PR #14056 on branch v3.1.x (FIX: do not try to manage the visibility of un-drawn ticks) +* :ghpull:`14091`: Backport PR #14078 on branch v3.1.x (Minor fix in multiple subplots example) +* :ghpull:`14079`: Consistently use axs.flat instead of axs.flatten() +* :ghpull:`14087`: Cleanup date example. +* :ghpull:`14029`: Fix doc building with numpydoc 0.9 +* :ghpull:`14052`: Check axes identity in image.contains. +* :ghpull:`14056`: FIX: do not try to manage the visibility of un-drawn ticks +* :ghpull:`14078`: Minor fix in multiple subplots example +* :ghpull:`14080`: Backport PR #14069 on branch v3.1.x (Don't try to use the colorbar formatter to format RGBA data.) +* :ghpull:`14069`: Don't try to use the colorbar formatter to format RGBA data. +* :ghpull:`14074`: Backport PR #14019 on branch v3.1.x (Update docstring of locator_params()) +* :ghpull:`14019`: Update docstring of locator_params() +* :ghpull:`14066`: Backport PR #14053 on branch v3.1.x (Improve fill() example) +* :ghpull:`14065`: Backport PR #14059 on branch v3.1.x (Improve Scatter hist example) +* :ghpull:`14067`: Backport PR #14062 on branch v3.1.x (Improve advanced quiver example) +* :ghpull:`14062`: Improve advanced quiver example +* :ghpull:`14053`: Improve fill() example +* :ghpull:`14059`: Improve Scatter hist example +* :ghpull:`14064`: Backport PR #14043 on branch v3.1.x (Ensure errorbars are always drawn on top of bars in ax.bar) +* :ghpull:`14043`: Ensure errorbars are always drawn on top of bars in ax.bar +* :ghpull:`14061`: Backport PR #14051 on branch v3.1.x (Add Yellowbrick to third party packages) +* :ghpull:`14051`: Add Yellowbrick to third party packages +* :ghpull:`14050`: Backport PR #14048 on branch v3.1.x (Fix Animation.save) +* :ghpull:`14049`: Backport PR #14047 on branch v3.1.x (Remove references to "Draws" in matplotlib.patches) +* :ghpull:`14048`: Fix Animation.save +* :ghpull:`14047`: Remove references to "Draws" in matplotlib.patches +* :ghpull:`14037`: Backport PR #14033 on branch v3.1.x (Reword add_subplot docstring.) +* :ghpull:`14036`: Backport PR #14001 on branch v3.1.x ([BUG] DOC: Remove broken references to vischeck) +* :ghpull:`14033`: Reword add_subplot docstring. +* :ghpull:`14032`: Backport PR #14030 on branch v3.1.x (Update colorcet link) +* :ghpull:`14030`: Update colorcet link +* :ghpull:`14027`: Backport PR #14026 on branch v3.1.x (Fix bug in plot_directive that caused links to plots in different formats to be missing) +* :ghpull:`14026`: Fix bug in plot_directive that caused links to plots in different formats to be missing +* :ghpull:`14012`: Backport PR #14008 on branch v3.1.x (Don't install tests by default.) +* :ghpull:`14017`: Backport PR #14015 on branch v3.1.x (Fix docstring of pyplot.clim()) +* :ghpull:`14015`: Fix docstring of pyplot.clim() +* :ghpull:`14008`: Don't install tests by default. +* :ghpull:`14006`: Backport PR #13998 on branch v3.1.x (Fix patch contains logic for patches that don't have any codes) +* :ghpull:`14005`: Backport PR #14004 on branch v3.1.x (DOC: pin numpydoc to less than 0.9) +* :ghpull:`13998`: Fix patch contains logic for patches that don't have any codes +* :ghpull:`13999`: Backport PR #13992 on branch v3.1.x (FIX: undeprecate MaxNLocator default_params) +* :ghpull:`13997`: Backport PR #13995 on branch v3.1.x (DOC: explain zorder for gridlines in grid docstring) +* :ghpull:`13992`: FIX: undeprecate MaxNLocator default_params +* :ghpull:`13995`: DOC: explain zorder for gridlines in grid docstring +* :ghpull:`13990`: Backport PR #13989 on branch v3.1.x (FIX: update not replace hist_kwargs when density is passed) +* :ghpull:`13989`: FIX: update not replace hist_kwargs when density is passed +* :ghpull:`13975`: Backport PR #13966 on branch v3.1.x (Fix colorbar setting without artist) +* :ghpull:`13976`: Backport PR #13973 on branch v3.1.x (BUG: Ensure docstrings are not accessed with -OO) +* :ghpull:`13856`: What's new page for 3.1 +* :ghpull:`13966`: Fix colorbar setting without artist +* :ghpull:`13973`: BUG: Ensure docstrings are not accessed with -OO +* :ghpull:`13969`: Backport PR #13950 on branch v3.1.x (confidence_ellipse_markup) +* :ghpull:`13950`: confidence_ellipse_markup +* :ghpull:`13965`: Backport PR #13962 on branch v3.1.x (Fix typo in code example in docstring.) +* :ghpull:`13964`: Backport PR #13870 on branch v3.1.x (3.1.0 API changes page) +* :ghpull:`13962`: Fix typo in code example in docstring. +* :ghpull:`13870`: 3.1.0 API changes page +* :ghpull:`13961`: Backport PR #13914 on branch v3.1.x (Improve Rainbow text example) +* :ghpull:`13960`: Backport PR #13958 on branch v3.1.x (Remove transparent fancy legend example) +* :ghpull:`13914`: Improve Rainbow text example +* :ghpull:`13958`: Remove transparent fancy legend example +* :ghpull:`13956`: Backport PR #13908 on branch v3.1.x (Enh control tick deconflict2) +* :ghpull:`13955`: Backport PR #13941 on branch v3.1.x (Add project_urls to setup) +* :ghpull:`13908`: Enh control tick deconflict2 +* :ghpull:`13954`: Backport PR #13949 on branch v3.1.x (DOC: Add documentation to Text.set_fontfamily) +* :ghpull:`13941`: Add project_urls to setup +* :ghpull:`13949`: DOC: Add documentation to Text.set_fontfamily +* :ghpull:`13951`: Backport PR #13939 on branch v3.1.x (Bunch of docstring cleanups.) +* :ghpull:`13939`: Bunch of docstring cleanups. +* :ghpull:`13947`: Backport PR #13897 on branch v3.1.x (numpydocification.) +* :ghpull:`13897`: numpydocification. +* :ghpull:`13946`: Backport PR #13924 on branch v3.1.x (Followup to deprecation of usetex parameter in get_text_path.) +* :ghpull:`13924`: Followup to deprecation of usetex parameter in get_text_path. +* :ghpull:`13916`: Backport PR #13850 on branch v3.1.x (Cleanup STIX Font Demo) +* :ghpull:`13915`: Backport PR #13835 on branch v3.1.x (Improve Conectionstyle Demo) +* :ghpull:`13850`: Cleanup STIX Font Demo +* :ghpull:`13835`: Improve Conectionstyle Demo +* :ghpull:`13846`: Backport PR #13836 on branch v3.1.x (MNT: account for cpython deprecations) +* :ghpull:`13898`: Backport PR #13896 on branch v3.1.x (Fix cbook.boxplot_stats docstring) +* :ghpull:`13896`: Fix cbook.boxplot_stats docstring +* :ghpull:`13893`: Backport PR #13890 on branch v3.1.x (rst seealso -> numpydoc "See Also".) +* :ghpull:`13890`: rst seealso -> numpydoc "See Also". +* :ghpull:`13888`: Backport PR #13862 on branch v3.1.x (Move 3.x API changes to prev_api_changes) +* :ghpull:`13862`: Move 3.x API changes to prev_api_changes +* :ghpull:`13882`: Backport PR #13867 on branch v3.1.x (Rename "docs" to "contents" in navigation bar) +* :ghpull:`13867`: Rename "docs" to "contents" in navigation bar +* :ghpull:`13881`: Backport PR #13874 on branch v3.1.x (Remove redundant call to Formatter.set_locs() before .format_ticks().) +* :ghpull:`13874`: Remove redundant call to Formatter.set_locs() before .format_ticks(). +* :ghpull:`13871`: Backport PR #13868 on branch v3.1.x (Correctly handle fallout of defining PY_SSIZE_T_CLEAN on Windows.) +* :ghpull:`13869`: Backport PR #13861 on branch v3.1.x (Fix remaining links in docs) +* :ghpull:`13868`: Correctly handle fallout of defining PY_SSIZE_T_CLEAN on Windows. +* :ghpull:`13861`: Fix remaining links in docs +* :ghpull:`13849`: Backport PR #13845 on branch v3.1.x (Fix some broken documentation links) +* :ghpull:`13845`: Fix some broken documentation links +* :ghpull:`13836`: MNT: account for cpython deprecations +* :ghpull:`13841`: Backport PR #12928 on branch v3.1.x (textpath encoding) +* :ghpull:`13842`: Backport PR #13827 on branch v3.1.x (Better MovieWriter init error message) +* :ghpull:`13838`: Backport PR #13570 on branch v3.1.x (Add new example for plotting a confidence_ellipse) +* :ghpull:`13827`: Better MovieWriter init error message +* :ghpull:`13839`: Backport PR #13815 on branch v3.1.x (Numpydocify FontManager.findfont()) +* :ghpull:`13837`: Backport PR #8638 on branch v3.1.x (FIX: if bins input to hist is str, treat like no bins) +* :ghpull:`12928`: textpath encoding +* :ghpull:`13815`: Numpydocify FontManager.findfont() +* :ghpull:`13570`: Add new example for plotting a confidence_ellipse +* :ghpull:`8638`: FIX: if bins input to hist is str, treat like no bins +* :ghpull:`13831`: Backport PR #13780 on branch v3.1.x (numpydoc ListedColormap parameters) +* :ghpull:`13780`: numpydoc ListedColormap parameters +* :ghpull:`13830`: Backport PR #13829 on branch v3.1.x (numpydoc IndexFormatter) +* :ghpull:`13829`: numpydoc IndexFormatter +* :ghpull:`13828`: Backport PR #13821 on branch v3.1.x (Remove \mathcircled from mathtext docs following its deprecation.) +* :ghpull:`13821`: Remove \mathcircled from mathtext docs following its deprecation. +* :ghpull:`13822`: Backport PR #13817 on branch v3.1.x (Remove borders from barcode example) +* :ghpull:`13820`: Backport PR #13816 on branch v3.1.x (Correct windows env variable format) +* :ghpull:`13816`: Correct windows env variable format +* :ghpull:`13817`: Remove borders from barcode example +* :ghpull:`13814`: Merge pull request #13805 from timhoffm/pin-sphinx-1.x +* :ghpull:`13813`: Backport PR #13764 on branch v3.1.x (Deprecate \mathcircled.) +* :ghpull:`13764`: Deprecate \mathcircled. +* :ghpull:`13805`: Pin Sphinx to 1.x +* :ghpull:`13807`: Backport PR #13800 on branch v3.1.x (Doc typos.) +* :ghpull:`13800`: Doc typos. +* :ghpull:`13806`: Backport PR #13771 on branch v3.1.x (patches.Arc docstring update #13759) +* :ghpull:`13804`: Backport PR #13766 on branch v3.1.x (Search for fonts in XDG directory as well.) +* :ghpull:`13771`: patches.Arc docstring update #13759 +* :ghpull:`13766`: Search for fonts in XDG directory as well. +* :ghpull:`13794`: Backport PR #13695 on branch v3.1.x (numpydocify transform_angles.) +* :ghpull:`13793`: Backport PR #13762 on branch v3.1.x (Cleanup marker_reference example.) +* :ghpull:`13792`: Backport PR #13789 on branch v3.1.x (BUG: Fix function signature mismatch for set_clim) +* :ghpull:`13791`: Backport PR #13787 on branch v3.1.x (Fix failure to import matplotlib.animation on Windows.) +* :ghpull:`13695`: numpydocify transform_angles. +* :ghpull:`13762`: Cleanup marker_reference example. +* :ghpull:`13789`: BUG: Fix function signature mismatch for set_clim +* :ghpull:`13787`: Fix failure to import matplotlib.animation on Windows. +* :ghpull:`13781`: Backport PR #13777 on branch v3.1.x (Use class-based directive for mathmpl sphinxext.) +* :ghpull:`13790`: Backport PR #13564 on branch v3.1.x (Add an option to log progress while saving animations) +* :ghpull:`13564`: Add an option to log progress while saving animations +* :ghpull:`13777`: Use class-based directive for mathmpl sphinxext. +* :ghpull:`13765`: Backport PR #13761 on branch v3.1.x (Deprecate verbose-related rcParams.) +* :ghpull:`13761`: Deprecate verbose-related rcParams. +* :ghpull:`13760`: Backport PR #13719 on branch v3.1.x (Doc: Update timeline example) +* :ghpull:`13704`: Backport PR #13021 on branch v3.1.x (Undesirable behaviour of MixedModeRenderer) +* :ghpull:`13758`: Backport PR #13674 on branch v3.1.x (Preserve whitespace in svg output.) +* :ghpull:`13719`: Doc: Update timeline example +* :ghpull:`13674`: Preserve whitespace in svg output. +* :ghpull:`13755`: Backport PR #13741 on branch v3.1.x (FIX: make title move above ticklabels) +* :ghpull:`13754`: Backport PR #13712 on branch v3.1.x (Deprecate NavigationToolbar2QT.adj_window (unused and always None).) +* :ghpull:`13741`: FIX: make title move above ticklabels +* :ghpull:`13712`: Deprecate NavigationToolbar2QT.adj_window (unused and always None). +* :ghpull:`13752`: Backport PR #13732 on branch v3.1.x (Fix doc markup.) +* :ghpull:`13753`: Backport PR #13751 on branch v3.1.x (DOC/FIX: try merging comments) +* :ghpull:`13751`: DOC/FIX: try merging comments +* :ghpull:`13732`: Fix doc markup. +* :ghpull:`13750`: Backport PR #13743 on branch v3.1.x (Fix doc warning) +* :ghpull:`13743`: Fix doc warning +* :ghpull:`13747`: Backport PR #13745 on branch v3.1.x (Fix stem(use_line_collection)) +* :ghpull:`13748`: Backport PR #13716 on branch v3.1.x (Kill attributes that are never used/updated.) +* :ghpull:`13716`: Kill attributes that are never used/updated. +* :ghpull:`13745`: Fix stem(use_line_collection) +* :ghpull:`13710`: TST: only test agg_filter extensions with baseline images +* :ghpull:`13709`: Backport PR #8690 on branch v3.1.x +* :ghpull:`13707`: Backport PR #12760 on branch v3.1.x (Deduplicate implementation of per-backend Tools.) +* :ghpull:`13706`: Backport PR #13689 on branch v3.1.x (BUG: fix scaling of quiverkey when quiver scale_units='xy') +* :ghpull:`13705`: Backport PR #12419 on branch v3.1.x (Add DivergingNorm (again, again, again)) +* :ghpull:`13703`: Backport PR #12170 on branch v3.1.x (Deprecate considering \*args, \*\*kwargs in Timer.remove_callback.) +* :ghpull:`12760`: Deduplicate implementation of per-backend Tools. +* :ghpull:`13689`: BUG: fix scaling of quiverkey when quiver scale_units='xy' +* :ghpull:`12419`: Add DivergingNorm (again, again, again) +* :ghpull:`8690`: Adds support for rgba and rgb images to pcolorfast +* :ghpull:`13021`: Undesirable behaviour of MixedModeRenderer +* :ghpull:`12170`: Deprecate considering \*args, \*\*kwargs in Timer.remove_callback. +* :ghpull:`13700`: Backport PR #13588 on branch v3.1.x (FIX: fallback to viewlims if no data) +* :ghpull:`13694`: Backport PR #13677 on branch v3.1.x (Log all failures to extract font properties.) +* :ghpull:`13588`: FIX: fallback to viewlims if no data +* :ghpull:`13692`: Backport PR #13677 on branch v3.0.x (Log all failures to extract font properties.) +* :ghpull:`13677`: Log all failures to extract font properties. +* :ghpull:`13691`: Backport PR #13687 on branch v3.1.x (Update stem example) +* :ghpull:`13687`: Update stem example +* :ghpull:`13688`: Backport PR #13684 on branch v3.1.x (Use format_data_short to format image cursor data.) +* :ghpull:`13684`: Use format_data_short to format image cursor data. +* :ghpull:`13686`: Backport PR #13363 on branch v3.1.x (Inline iter_ticks into _update_ticks, and use that in mplot3d.) +* :ghpull:`13363`: Inline iter_ticks into _update_ticks, and use that in mplot3d. +* :ghpull:`13681`: Backport PR #13678 on branch v3.1.x (Fix font deduplication logic in createFontList.) +* :ghpull:`13678`: Fix font deduplication logic in createFontList. +* :ghpull:`13669`: Backport PR #13667 on branch v3.1.x (Fix incorrect signature in axis() doc.) +* :ghpull:`13667`: Fix incorrect signature in axis() doc. +* :ghpull:`13664`: Backport PR #12637 on branch v3.1.x (Tell IPython the correct GUI event loop to use for all backends.) +* :ghpull:`13665`: Backport PR #13601 on branch v3.1.x (Add a make-parameter-keyword-only-with-deprecation decorator.) +* :ghpull:`13601`: Add a make-parameter-keyword-only-with-deprecation decorator. +* :ghpull:`12637`: Tell IPython the correct GUI event loop to use for all backends. +* :ghpull:`13662`: Backport PR #13064 on branch v3.1.x (Don't explicitly add default include paths to Extensions) +* :ghpull:`13064`: Don't explicitly add default include paths to Extensions +* :ghpull:`13658`: Backport PR #13652 on branch v3.1.x (Fix empty FancyArrow crash) +* :ghpull:`13652`: Fix empty FancyArrow crash +* :ghpull:`13655`: Backport PR #11692 on branch v3.1.x (Deprecate frameon kwarg and rcParam to savefig.) +* :ghpull:`13654`: Backport PR #13614 on branch v3.1.x (Fix polar get window extent) +* :ghpull:`11692`: Deprecate frameon kwarg and rcParam to savefig. +* :ghpull:`13614`: Fix polar get window extent +* :ghpull:`13646`: Backport PR #13645 on branch v3.1.x (widgets.py fix examples connect -> mpl_connect) +* :ghpull:`13645`: widgets.py fix examples connect -> mpl_connect +* :ghpull:`13644`: Backport PR #13612 on branch v3.1.x (Improve Demo Text Rotation Mode) +* :ghpull:`13612`: Improve Demo Text Rotation Mode +* :ghpull:`13636`: Backport PR #13621 on branch v3.1.x (Remove ``asfileobj=False`` from a bunch of examples loading sample_data.) +* :ghpull:`13635`: Backport PR #13632 on branch v3.1.x (Clarify tick collision API change doc.) +* :ghpull:`13634`: Backport PR #13631 on branch v3.1.x (Switch deprecation of Tick.label to pending.) +* :ghpull:`13621`: Remove ``asfileobj=False`` from a bunch of examples loading sample_data. +* :ghpull:`13632`: Clarify tick collision API change doc. +* :ghpull:`13631`: Switch deprecation of Tick.label to pending. +* :ghpull:`13628`: Backport PR #13603 on branch v3.1.x +* :ghpull:`13603`: FIX: continue to bail tight layout if rect supplied +* :ghpull:`13627`: Backport PR #13622 on branch v3.1.x (Change title of named colors example) +* :ghpull:`13626`: Backport PR #13549 on branch v3.1.x (Simplify some annotation() calls in examples.) +* :ghpull:`13624`: Backport PR #13610 on branch v3.1.x (Update centered ticklabels example) +* :ghpull:`13625`: Backport PR #13611 on branch v3.1.x (Fix text position in Fancytextbox demo) +* :ghpull:`13622`: Change title of named colors example +* :ghpull:`13610`: Update centered ticklabels example +* :ghpull:`13611`: Fix text position in Fancytextbox demo +* :ghpull:`13607`: Backport PR #13605 on branch v3.1.x (Warn on attempts at semi-transparent outputs in ps backend.) +* :ghpull:`13608`: Backport PR #13602 on branch v3.1.x (Deprecate cbook.is_hashable.) +* :ghpull:`13602`: Deprecate cbook.is_hashable. +* :ghpull:`13605`: Warn on attempts at semi-transparent outputs in ps backend. +* :ghpull:`13599`: Backport PR #13590 on branch v3.1.x (Doc event loop requirements for Figure.show) +* :ghpull:`13590`: Doc event loop requirements for Figure.show +* :ghpull:`13597`: Backport PR #12359 on branch v3.1.x (ENH: Add boolean support for axis()) +* :ghpull:`13594`: Backport PR #13592 on branch v3.1.x (DOC: Make canonical URLs point to versioned path.) +* :ghpull:`13592`: DOC: Make canonical URLs point to versioned path. +* :ghpull:`12359`: ENH: Add boolean support for axis() +* :ghpull:`13587`: Backport PR #13573 on branch v3.1.x (Fix mplot3d transparency) +* :ghpull:`13573`: Fix mplot3d transparency +* :ghpull:`13585`: Backport PR #13578 on branch v3.1.x (Revert invalid change in Centered Ticklabels example) +* :ghpull:`13584`: Backport PR #13582 on branch v3.1.x (Cleanup two font-related examples.) +* :ghpull:`13578`: Revert invalid change in Centered Ticklabels example +* :ghpull:`13582`: Cleanup two font-related examples. +* :ghpull:`13579`: Backport PR #13477 on branch v3.1.x (FIX: make EngFormatter respect axes.unicode_minus rcParam) +* :ghpull:`13577`: Backport PR #12832 on branch v3.1.x (Deprecate redundant log-scale transform classes.) +* :ghpull:`13477`: FIX: make EngFormatter respect axes.unicode_minus rcParam +* :ghpull:`12832`: Deprecate redundant log-scale transform classes. +* :ghpull:`13574`: Backport PR #12856 on branch v3.1.x (added property usemathtext to EngFormatter) +* :ghpull:`12856`: added property usemathtext to EngFormatter +* :ghpull:`13572`: Backport PR #12899 on branch v3.1.x (Small cleanups.) +* :ghpull:`13571`: Backport PR #11553 on branch v3.1.x (Improved Code for Segments Intersect) +* :ghpull:`12899`: Small cleanups. +* :ghpull:`11553`: Improved Code for Segments Intersect +* :ghpull:`13568`: Backport PR #13563 on branch v3.1.x (FIX: inverted colorbar ticks) +* :ghpull:`13563`: FIX: inverted colorbar ticks +* :ghpull:`13530`: BUG: keep the ticks when the colorbar axis is inverted +* :ghpull:`13565`: Backport PR #13550 on branch v3.1.x (Strip out Py2-compat in setupext.) +* :ghpull:`13550`: Strip out Py2-compat in setupext. +* :ghpull:`13562`: Backport PR #13560 on branch v3.1.x (Improve GridSpec doc) +* :ghpull:`13560`: Improve GridSpec doc +* :ghpull:`13558`: Backport PR #13546 on branch v3.1.x ( Modified docstring of the set_ylabel and set_xlabel) +* :ghpull:`13559`: Backport PR #12062 on branch v3.1.x (Separate alpha and rbg interpolation then recombine to fix issue11316) +* :ghpull:`13557`: Backport PR #13548 on branch v3.1.x (Deprecate TextWithDash.) +* :ghpull:`12062`: Separate alpha and rbg interpolation then recombine to fix issue11316 +* :ghpull:`13546`: Modified docstring of the set_ylabel and set_xlabel +* :ghpull:`13548`: Deprecate TextWithDash. +* :ghpull:`13549`: Simplify some annotation() calls in examples. +* :ghpull:`13552`: Backport PR #11241 on branch v3.1.x (Deprecate the MATPLOTLIBDATA environment variable.) +* :ghpull:`11241`: Deprecate the MATPLOTLIBDATA environment variable. +* :ghpull:`13547`: Backport PR #9314 on branch v3.1.x (Simplify units.Registry.get_converter.) +* :ghpull:`13545`: Backport PR #13541 on branch v3.1.x (DOC: Remove mention of 'complex' mode in specgram docstring) +* :ghpull:`9314`: Simplify units.Registry.get_converter. +* :ghpull:`13541`: DOC: Remove mention of 'complex' mode in specgram docstring +* :ghpull:`13539`: Backport PR #12950 on branch v3.1.x (Inline or simplify FooFormatter.pprint_val.) +* :ghpull:`13538`: Backport PR #12748 on branch v3.1.x (Use the builtin GTK3 FileChooser rather than our custom subclass.) +* :ghpull:`13537`: Backport PR #12781 on branch v3.1.x (Lazy import of private modules) +* :ghpull:`12950`: Inline or simplify FooFormatter.pprint_val. +* :ghpull:`12748`: Use the builtin GTK3 FileChooser rather than our custom subclass. +* :ghpull:`12781`: Lazy import of private modules +* :ghpull:`11218`: fix pkg-config handling to make cross-compiling work +* :ghpull:`13531`: Backport PR #11964 on branch v3.1.x (Simplify extension setup.) +* :ghpull:`11964`: Simplify extension setup. +* :ghpull:`13529`: Backport PR #13525 on branch v3.1.x (Move some links in rst out of running text.) +* :ghpull:`13528`: Backport PR #13526 on branch v3.1.x (DOC: fix Subplot calls) +* :ghpull:`13525`: Move some links in rst out of running text. +* :ghpull:`13526`: DOC: fix Subplot calls +* :ghpull:`13523`: Backport PR #13521 on branch v3.1.x (Small cleanup to headings of 3d examples.) +* :ghpull:`13521`: Small cleanup to headings of 3d examples. +* :ghpull:`13519`: Backport PR #12716 on branch v3.1.x (FIX: return the actual ax.get_window_extent) +* :ghpull:`13518`: Backport PR #12839 on branch v3.1.x (BUG: Prevent Tick params calls from overwriting visibility without being told to) +* :ghpull:`12716`: FIX: return the actual ax.get_window_extent +* :ghpull:`12839`: BUG: Prevent Tick params calls from overwriting visibility without being told to +* :ghpull:`13517`: Fix heading hierarchy in annotation tutorial. +* :ghpull:`13516`: Backport PR #13514 on branch v3.1.x (Add missing show() at end of example.) +* :ghpull:`13514`: Add missing show() at end of example. +* :ghpull:`13512`: Backport PR #13511 on branch v3.1.x (Add missing plt.show() at end of example.) +* :ghpull:`13511`: Add missing plt.show() at end of example. +* :ghpull:`13508`: Backport PR #13413 on branch v3.1.x (Simplify decade up- and down-rounding, and symmetrize expansion of degenerate log scales.) +* :ghpull:`13509`: Backport PR #13492 on branch v3.1.x (Doc more release updates) +* :ghpull:`13492`: Doc more release updates +* :ghpull:`13413`: Simplify decade up- and down-rounding, and symmetrize expansion of degenerate log scales. +* :ghpull:`13507`: Backport PR #13488 on branch v3.1.x (Animation: interactive zoom/pan with blitting does not work) +* :ghpull:`13488`: Animation: interactive zoom/pan with blitting does not work +* :ghpull:`13505`: Backport PR #13459 on branch v3.1.x (Document histogramming pre-binned data.) +* :ghpull:`13503`: Backport PR #10776 on branch v3.1.x (fix FancyArrowPatch picker fails depending on arrowstyle) +* :ghpull:`13504`: Backport PR #13123 on branch v3.1.x (Add shading to Axes3D.voxels, and enable it by default) +* :ghpull:`13502`: Backport PR #13180 on branch v3.1.x (Various TextPath cleanups.) +* :ghpull:`13459`: Document histogramming pre-binned data. +* :ghpull:`13501`: Backport PR #13209 on branch v3.1.x (Deprecate support for (n, 1)-shaped error arrays in errorbar().) +* :ghpull:`13500`: Backport PR #12763 on branch v3.1.x (Remove deprecated rcParams.) +* :ghpull:`13123`: Add shading to Axes3D.voxels, and enable it by default +* :ghpull:`13499`: Backport PR #13303 on branch v3.1.x (Unify checking of executable info.) +* :ghpull:`10776`: fix FancyArrowPatch picker fails depending on arrowstyle +* :ghpull:`13180`: Various TextPath cleanups. +* :ghpull:`13498`: Backport PR #13314 on branch v3.1.x (Move major/minor tick overstrike logic to Axis.) +* :ghpull:`13209`: Deprecate support for (n, 1)-shaped error arrays in errorbar(). +* :ghpull:`12763`: Remove deprecated rcParams. +* :ghpull:`13303`: Unify checking of executable info. +* :ghpull:`13497`: Backport PR #13057 on branch v3.1.x (Simplify callable(self._contains) checks) +* :ghpull:`13314`: Move major/minor tick overstrike logic to Axis. +* :ghpull:`13057`: Simplify callable(self._contains) checks +* :ghpull:`13496`: Backport PR #13465 on branch v3.1.x (FIX: polar set_rlim allow bottom-only call) +* :ghpull:`13465`: FIX: polar set_rlim allow bottom-only call +* :ghpull:`13495`: Backport PR #12232 on branch v3.1.x (Add helper function to check that an argument is in a list of strings.) +* :ghpull:`12232`: Add helper function to check that an argument is in a list of strings. +* :ghpull:`11708`: Revert "Skip wx interactive tests on OSX." +* :ghpull:`13062`: Update FAQ re: batch/webserver use. +* :ghpull:`12904`: Support forward/backward mouse buttons +* :ghpull:`12150`: Deprecate \stackrel. +* :ghpull:`13449`: Let boxplot() defer rcParams application to bxp() +* :ghpull:`13425`: API: un-deprecate keyword only args to set_xlim, set_ylim +* :ghpull:`13447`: Update axes_grid docs +* :ghpull:`13473`: Deprecate backend_wx.IDLE_DELAY. +* :ghpull:`13476`: Add font to pyplot.xkcd() +* :ghpull:`13475`: Cleanup titles of embedding examples. +* :ghpull:`13468`: Suppress chaining of cache lookup failure in color conversion. +* :ghpull:`13467`: Add "c" shorthand for "color" for the Text class. +* :ghpull:`13398`: FIX: let pandas IndexInt64 work for boxplot +* :ghpull:`13375`: Improve Axes selection in Qt figure options. +* :ghpull:`13421`: DOC: update release guide +* :ghpull:`13275`: Simple logging interface. +* :ghpull:`13427`: Simplify check for tight-bbox finiteness. +* :ghpull:`13444`: Allow constructing boxplots over multiple calls. +* :ghpull:`13385`: Remove/rework uses of np.where where possible. +* :ghpull:`13441`: Make AFM parser both more compliant and less strict. +* :ghpull:`13384`: Replace np.compress by boolean indexing. +* :ghpull:`13422`: Clarify IndexError for out-of-bounds indexing of gridspec. +* :ghpull:`13443`: Remove some outdated comments from rcsetup.py. +* :ghpull:`13357`: Inherit some docstrings in backend code. +* :ghpull:`12380`: Stem speedup2 +* :ghpull:`13368`: FIX: Fix shape of hist output when input is multidimensional empty list +* :ghpull:`5590`: [mpl_toolkits] Fix picking for things drawn on parasite axes +* :ghpull:`13323`: Move the call to Formatter.set_locs into Formatter.format_ticks. +* :ghpull:`13424`: Deprecate Quiver.color in favor of Quiver.get_facecolor(). +* :ghpull:`13434`: More smoketesting of pcolorfast. +* :ghpull:`13395`: Cleanup demo_curvelinear_grid. +* :ghpull:`13411`: Deemphasize numeric locations for legend() in docs. +* :ghpull:`13419`: FIX: secondary_axis resize +* :ghpull:`13020`: Deprecate proj3d.mod. +* :ghpull:`13030`: Deprecate internal functions exposed in the public API of mplot3d +* :ghpull:`13408`: test_figure style fixes. +* :ghpull:`11127`: Legend for Scatter +* :ghpull:`11855`: Adding the possible to add full command line in animation +* :ghpull:`13409`: Add nonsingular to the locator base class, and use it in set_*lim too. +* :ghpull:`11859`: ENH: add secondary x/y axis +* :ghpull:`13235`: Vectorize mplot3d.art3d.zalpha. +* :ghpull:`10411`: New "accepts units" decorator +* :ghpull:`13403`: FIX: remove idle_event +* :ghpull:`13069`: 5 minor divisions when major ticks are 2.5 units apart +* :ghpull:`13402`: Fix empty reshape2d +* :ghpull:`11683`: Reuse axes_grid1's AxisDict in axisartist, instead of duplicating it. +* :ghpull:`12141`: Let digits toggle axes nav only if they correspond to an existing axes. +* :ghpull:`9845`: Add inaxes method to FigureCanvas to check whether point is in an axes. +* :ghpull:`13396`: mpl_toolkits style fixes. +* :ghpull:`11497`: Make CI fail if interactive toolkits can't be tested +* :ghpull:`11595`: test doc rendering +* :ghpull:`13393`: Deprecate Spine.is_frame_like. +* :ghpull:`13391`: Remove colour specification from some examples +* :ghpull:`13386`: Replace use of np. by operators () silently doing nothing. +* :ghpull:`13166`: Simplify Text.get_usetex. +* :ghpull:`13188`: Remove an outdated doc point regarding backend selection. +* :ghpull:`13107`: Cleanup BboxBase docstrings. +* :ghpull:`13108`: Capitalize some docstrings. +* :ghpull:`13115`: Check for sphinx_copybutton when building the docs +* :ghpull:`13151`: Update RadioButtons docs numpydoc style +* :ghpull:`13178`: Remove :func: markup from mlab docstrings. +* :ghpull:`7461`: [WIP] add matrix checking function for quiver input +* :ghpull:`13089`: Ensure that arguments to quiver() are not matrices. +* :ghpull:`13179`: Avoid calling a deprecated API in axis_artist. +* :ghpull:`13170`: Don't try to find TeX-only fonts when layouting TeX text. +* :ghpull:`12957`: Search also for user fonts on Windows (#12954) +* :ghpull:`12951`: Make Text._get_layout simpler to follow. +* :ghpull:`11385`: Add a get_zaxis method for 3d axes. +* :ghpull:`13172`: Hyperlink DOIs to preferred resolver +* :ghpull:`13171`: Document how to make colorbars "without" a ScalarMappable. +* :ghpull:`12903`: FIX: (broken)bar(h) math before units +* :ghpull:`13167`: Typos on subplot comments and example +* :ghpull:`13005`: Improve error messages for unit conversion +* :ghpull:`13147`: Extend joinstyle example +* :ghpull:`13165`: Change doc string for Axes.arrow() +* :ghpull:`13155`: Let ffmpeg report errors. +* :ghpull:`13149`: Update errorbar limits example +* :ghpull:`13074`: Move _windowing extension into _tkagg. +* :ghpull:`13146`: Remove an outdated comment in backend_wx. +* :ghpull:`13126`: FIX: minor log ticks overwrite +* :ghpull:`13148`: Update example Step Demo +* :ghpull:`13138`: API: Use class-based directive in sphinxext +* :ghpull:`11894`: add ``cache_frame_data`` kwarg into ``FuncAnimation``. fixes #8528. +* :ghpull:`13136`: Small cleanups. +* :ghpull:`13140`: Remove an "cannot show figure in agg" warning in test suite. +* :ghpull:`13134`: Simplify color conversion backcompat shim. +* :ghpull:`13141`: Unpin pytest (pytest-cov's latest release is compatible with it). +* :ghpull:`13133`: Simplify the polys3d example. +* :ghpull:`12158`: MNT: simplify valid tick logic +* :ghpull:`9867`: Factor out common code between pdf and ps backends. +* :ghpull:`10111`: Add set_data_3d and get_data_3d to Line3d +* :ghpull:`12245`: Remove (some) features deprecated in mpl2.2 +* :ghpull:`13119`: Deprecate TextToPath.glyph_to_path. +* :ghpull:`13122`: Pin pytest<4.1 to unbreak CI tests +* :ghpull:`13100`: Restore the font cache on Travis. +* :ghpull:`12792`: BUG: Ensure that distinct polygon collections are shaded identically +* :ghpull:`13070`: cairo backend: default to pycairo +* :ghpull:`13114`: BUG: calculate colorbar boundaries correctly from values +* :ghpull:`13111`: Delete an unused private method. +* :ghpull:`10841`: ENH: new date formatter +* :ghpull:`13093`: Remove unused fontconfig conf file. +* :ghpull:`13063`: Use default colour cycle in more examples +* :ghpull:`13103`: Remove tight_bbox_test example. +* :ghpull:`13097`: Replace 1-tuples by scalars where possible. +* :ghpull:`13027`: Qt5 reset signals after non-interactive plotting +* :ghpull:`9787`: Support (first font of) TTC files. +* :ghpull:`11780`: ENH: Allow arbitrary coordinates for ConnectionPatch +* :ghpull:`12943`: Update the font_table example. +* :ghpull:`13091`: Improve MouseEvent str(). +* :ghpull:`13095`: Remove a duplicate attribute setting. +* :ghpull:`13090`: Cleanup unused non-public imports. +* :ghpull:`13060`: Move doc-requirements from root folder +* :ghpull:`13078`: Convert streamplot to numpydoc +* :ghpull:`13088`: Don't use deprecated np.random.random_integers. +* :ghpull:`13073`: Drop pytest version check in setupext.py. +* :ghpull:`12933`: Deprecate backend_pgf.LatexManagerFactory. +* :ghpull:`12969`: Clarify the implementation of _process_plot_var_args. +* :ghpull:`12472`: Make FontManager.defaultFont a property, to avoid hardcoding the prefix. +* :ghpull:`11806`: Allow to not draw the labels on pie chart +* :ghpull:`11983`: Simplify version checks for freetype and libpng. +* :ghpull:`13050`: FIX: always eraseRect in Qt widget +* :ghpull:`13065`: FIX: print out the correct ip address when starting webagg +* :ghpull:`13061`: Make examples that load msft.csv robust against locale changes. +* :ghpull:`13042`: cairo: remove the append_path() fast path +* :ghpull:`13058`: pathlibify/cleanup triage_tests.py. +* :ghpull:`12995`: Don't split creation of deprecation message and choice of warning class. +* :ghpull:`12998`: Init MaxNLocator params only once +* :ghpull:`11691`: Make Figure.frameon a thin wrapper for the patch visibility. +* :ghpull:`11735`: Change {FigureCanvasAgg,RendererAgg}.buffer_rgba to return a memoryview. +* :ghpull:`12831`: Reuse scale from sharing axis when calling cla(). +* :ghpull:`12962`: Deprecate setting the same property under two different aliases. +* :ghpull:`12973`: Fix item check for pandas Series +* :ghpull:`13049`: Add boxplot.flierprops.markeredgewidth rcParam +* :ghpull:`13048`: Fix section names for numpydoc +* :ghpull:`10928`: Simplify (quite a bit...) _preprocess_data +* :ghpull:`13039`: Speed up Path.iter_segments() +* :ghpull:`12992`: Adding rcParams[‘scatter.edgecolors’] defaulting to ‘face’ +* :ghpull:`13014`: Drop pgi support for the GTK3 backend +* :ghpull:`12215`: Cleanup initialization in text() +* :ghpull:`13029`: Fix vertical alignment of text +* :ghpull:`12968`: Simpler and stricter process_plot_format. +* :ghpull:`12989`: Avoid spamming tests with warnings re: deprecation of pprint_val. +* :ghpull:`13032`: fix typo in docstring in ``axis_artist.py`` +* :ghpull:`13025`: MNT: add one more alias for tacaswell to mailmap +* :ghpull:`13010`: Fix a format error in documenting_mpl.rst +* :ghpull:`12997`: Add sphinx-copybutton to docs +* :ghpull:`12422`: Scatter color: moving #10809 forward +* :ghpull:`12999`: Format MaxNLocator with numpydoc +* :ghpull:`12991`: Canonicalize weights extracted for AFM fonts. +* :ghpull:`12955`: Cleanup cursor_demo. +* :ghpull:`12984`: Cleanup GTK examples. +* :ghpull:`12986`: Minor cleanup to double_pendulum example. +* :ghpull:`12959`: Update the documentation of Cursor +* :ghpull:`12945`: Correctly get weight & style hints from certain newer Microsoft fonts +* :ghpull:`12976`: ENH: replace deprecated numpy header +* :ghpull:`12975`: Fail-fast when trying to run tests with too-old pytest. +* :ghpull:`12970`: Minor simplifications. +* :ghpull:`12974`: Remove some checks for Py<3.6 in the test suite. +* :ghpull:`12779`: Include scatter plots in Qt figure options editor. +* :ghpull:`12459`: Improve formatting of imshow() cursor data when a colorbar exists. +* :ghpull:`12927`: MAINT: Correctly handle empty lists in zip unpacking in mplot3d.art3d +* :ghpull:`12919`: Suppress deprecation warning when testing drawstyle conflict +* :ghpull:`12956`: Misc. cleanups. +* :ghpull:`12924`: Deprecate public use of Formatter.pprint_val. +* :ghpull:`12947`: Support ~ as nonbreaking space in mathtext. +* :ghpull:`12944`: Fix the title of testing_api +* :ghpull:`12136`: MAINT: Unify calculation of normal vectors from polygons +* :ghpull:`12880`: More table documentation +* :ghpull:`12940`: Avoid pyplot in showcase examples. +* :ghpull:`12935`: os.PathLike exists on all supported Pythons now. +* :ghpull:`12936`: Minor updates following bump to Py3.6+. +* :ghpull:`12932`: Simplify argument checking in Table.__getitem__. +* :ghpull:`12930`: Shorten an argument check. +* :ghpull:`12538`: MNT: drop 3.5 testing for 3.1 branch +* :ghpull:`12868`: Simplify use of Path._fast_from_codes_and_verts. +* :ghpull:`12300`: API: Polar: allow flipped y/rlims.... +* :ghpull:`12861`: Don't use deprecated wx.NewId(). +* :ghpull:`12908`: Allow all valid hist.bins strings to be set in the rcparams +* :ghpull:`12902`: Kill dead code in textpath. +* :ghpull:`12885`: Improve margins in formlayout +* :ghpull:`12877`: fooImage -> foo_image in testing/compare.py +* :ghpull:`12845`: Deprecate silent dropping of unknown arguments to TextPath(). +* :ghpull:`12852`: Cleanup collections docs. +* :ghpull:`12888`: Properly enable forward/backward buttons on GTK3 +* :ghpull:`12865`: Avoid 1-tick or 0-tick log-scaled axis. +* :ghpull:`12844`: Remove unused, private _process_text_args. +* :ghpull:`12881`: Fix string comparison +* :ghpull:`12863`: FIX: translate timedeltas in _to_ordinalf +* :ghpull:`12640`: Introduce MouseButton enum for MouseEvent. +* :ghpull:`12897`: Reword a bit the contour docs. +* :ghpull:`12898`: Validate rcParams["image.origin"]. +* :ghpull:`12882`: Write error messages to logger instead of stderr +* :ghpull:`12889`: Deprecate public access to the vendored formlayout module. +* :ghpull:`12891`: Add Azure Pipelines build badge +* :ghpull:`12883`: MAINT Use list comprehension +* :ghpull:`12886`: Properly enable forward/backward buttons on Qt +* :ghpull:`12858`: Bump oldest supported numpy to 1.11. +* :ghpull:`12876`: Fix a typo +* :ghpull:`12739`: make Axes._parse_scatter_color_args static +* :ghpull:`12846`: Deprecate Path.has_nonfinite. +* :ghpull:`12829`: Remove unused variables +* :ghpull:`12872`: Inline references to RendererPS in backend_ps. +* :ghpull:`12800`: documenting dtype of hist counts +* :ghpull:`12842`: Fix message in nbagg connection_info() +* :ghpull:`12855`: Cleanup axes/_base.py. +* :ghpull:`12826`: Minor code cleanup +* :ghpull:`12866`: Simplify stride calculations in loglocator. +* :ghpull:`12867`: Drop compat code for outdated MSVC. +* :ghpull:`12218`: Improve table docs +* :ghpull:`12847`: correctly format ticklabels when EngFormatter is used with usetex = True +* :ghpull:`12851`: Keep Collections and Patches property aliases in sync. +* :ghpull:`12849`: Update docstrings in path.py, and small cleanups. +* :ghpull:`12805`: Don't insert spurious newlines by joining tex.preamble. +* :ghpull:`12827`: Remove unused imports +* :ghpull:`12560`: Add matplotlib.testing to the documentation +* :ghpull:`12821`: MNT: remove debug from update_title_pos +* :ghpull:`12764`: Cleanup Renderer/GraphicsContext docs. +* :ghpull:`12759`: Warn on FreeType missing glyphs. +* :ghpull:`12799`: Reword some colorbar docs. +* :ghpull:`12633`: Added support for MacOSX backend for PyPy +* :ghpull:`12798`: Replace assignments to array.shape by calls to reshape(). +* :ghpull:`11851`: Simpler check for whether a Framework Python build is being used. +* :ghpull:`12259`: BUG: Fix face orientations of bar3d +* :ghpull:`12565`: Make FontManager.score_weight less lenient. +* :ghpull:`12674`: Allow "real" LaTeX code for pgf.preamble in matplotlibrc +* :ghpull:`12770`: Simplify implementation of FontProperties.copy(). +* :ghpull:`12753`: MNT: remove _hold shims to support basemap + cartopy +* :ghpull:`12450`: Attach a FigureCanvasBase by default to Figures. +* :ghpull:`12643`: Allow unit input to FancyArrowPatch +* :ghpull:`12767`: Make colorbars constructible with dataless ScalarMappables. +* :ghpull:`12526`: Rename jquery files +* :ghpull:`12552`: Update docs for writing image comparison tests. +* :ghpull:`12746`: Use skipif, not xfail, for uncomparable image formats. +* :ghpull:`12747`: Prefer log.warning("%s", ...) to log.warning("%s" % ...). +* :ghpull:`11753`: FIX: Apply aspect before drawing starts +* :ghpull:`12749`: Move toolmanager warning from logging to warning. +* :ghpull:`12598`: Support Cn colors with n>=10. +* :ghpull:`12727`: Reorder API docs: separate file per module +* :ghpull:`12738`: Add unobtrusive depreaction note to the first line of the docstring. +* :ghpull:`11663`: Refactor color parsing of Axes.scatter +* :ghpull:`12736`: Move deprecation note to end of docstring +* :ghpull:`12704`: Rename tkinter import from Tk to tk. +* :ghpull:`12715`: Cleanup dviread. +* :ghpull:`12717`: Delete some ``if __name__ == "__main__"`` clauses. +* :ghpull:`10575`: FIX patch.update_from to also copy _original_edge/facecolor +* :ghpull:`12537`: Improve error message on failing test_pyplot_up_to_date +* :ghpull:`12721`: Make get_scale_docs() internal +* :ghpull:`12706`: Extend sphinx Makefile to cleanup completely +* :ghpull:`12481`: Warn if plot_surface Z values contain NaN +* :ghpull:`12685`: Make ticks in demo_axes_rgb.py visible +* :ghpull:`12523`: Run flake8 before pytest on travis +* :ghpull:`12691`: DOC: Link to "How to make a PR" tutorials as badge and in contributing +* :ghpull:`11974`: Make code match comment in sankey. +* :ghpull:`12440`: Make arguments to @deprecated/warn_deprecated keyword-only. +* :ghpull:`12470`: Update AutoDateFormatter with locator +* :ghpull:`12586`: Improve linestyles example +* :ghpull:`12006`: Replace warnings.warn with cbook._warn_external or logging.warning +* :ghpull:`12659`: Add note that developer discussions are private +* :ghpull:`12543`: Make rcsetup.py flak8 compliant +* :ghpull:`12642`: Don't silence TypeErrors in fmt_{x,y}data. +* :ghpull:`12442`: Deprecate passing drawstyle with linestyle as single string. +* :ghpull:`12625`: Shorten some docstrings. +* :ghpull:`12627`: Be a bit more stringent on invalid inputs. +* :ghpull:`12629`: Fix issue with PyPy on macOS +* :ghpull:`10933`: Remove "experimental" fontconfig font_manager backend. +* :ghpull:`12600`: Minor style fixes. +* :ghpull:`12570`: Fix mathtext tutorial for build with Sphinx 1.8. +* :ghpull:`12487`: Update docs/tests for the deprecation of aname and label1On/label2On/etc. +* :ghpull:`12521`: Improve docstring of draw_idle() +* :ghpull:`12574`: Remove some unused imports +* :ghpull:`12568`: Add note regarding builds of old Matplotlibs. +* :ghpull:`12547`: Disable sticky edge accumulation if no autoscaling. +* :ghpull:`12546`: Avoid quadratic behavior when accumulating stickies. +* :ghpull:`11789`: endless looping GIFs with PillowWriter +* :ghpull:`12525`: Fix some flake8 issues +* :ghpull:`12516`: Don't handle impossible values for ``align`` in hist() +* :ghpull:`12500`: Adjust the widths of the messages during the build. +* :ghpull:`12492`: Simplify radar_chart example. +* :ghpull:`11984`: Strip out pkg-config machinery for agg and libqhull. +* :ghpull:`12463`: Document Artist.cursor_data() parameter +* :ghpull:`12482`: Test slider orientation +* :ghpull:`12317`: Always install mpl_toolkits. +* :ghpull:`12246`: Be less tolerant of broken installs. +* :ghpull:`12477`: Use \N{MICRO SIGN} instead of \N{GREEK SMALL LETTER MU} in EngFormatter. +* :ghpull:`12483`: Kill FontManager.update_fonts. +* :ghpull:`12474`: Throw ValueError when irregularly gridded data is passed to streamplot. +* :ghpull:`12466`: np.fromstring -> np.frombuffer. +* :ghpull:`12369`: Improved exception handling on animation failure +* :ghpull:`12460`: Deprecate RendererBase.strip_math. +* :ghpull:`12453`: Rollback erroneous commit to whats_new.rst from #10746 +* :ghpull:`12452`: Minor updates to the FAQ. +* :ghpull:`10746`: Adjusted matplotlib.widgets.Slider to have optional vertical orientatation +* :ghpull:`12441`: Get rid of a signed-compare warning. +* :ghpull:`12430`: Deprecate Axes3D.plot_surface(shade=None) +* :ghpull:`12435`: Fix numpydoc parameter formatting +* :ghpull:`12434`: Clarify documentation for textprops keyword parameter of TextArea +* :ghpull:`12427`: Document Artist.get_cursor_data +* :ghpull:`10322`: Use np.hypot wherever possible. +* :ghpull:`10809`: Fix for scatter not showing points with valid x/y but invalid color +* :ghpull:`12423`: Minor simplifications to backend_svg. +* :ghpull:`10356`: fix detecting which artist(s) the mouse is over +* :ghpull:`10268`: Dvi caching +* :ghpull:`10238`: Call kpsewhich with more arguments at one time +* :ghpull:`10236`: Cache kpsewhich results persistently +* :ghpull:`4675`: Deprecate color keyword argument in scatter +* :ghpull:`5054`: Diverging norm +* :ghpull:`12416`: Move font cache rebuild out of exception handler +* :ghpull:`4762`: Traitlets +* :ghpull:`5414`: WIP: New FreeType wrappers +* :ghpull:`3875`: ENH: passing colors (and other optional keyword arguments) to violinplot() +* :ghpull:`1959`: PS backend optionally jpeg-compresses the embedded images +* :ghpull:`11891`: Group some print()s in backend_ps. +* :ghpull:`12165`: Remove deprecated mlab code +* :ghpull:`12387`: Update HTML animation as slider is dragged +* :ghpull:`12333`: ENH: add colorbar method to axes +* :ghpull:`10088`: Deprecate Tick.{gridOn,tick1On,label1On,...} in favor of set_visible. +* :ghpull:`12393`: Deprecate to-days converters in matplotlib dates +* :ghpull:`11232`: FIX: fix figure.set_dpi when pixel ratio not 1 +* :ghpull:`12247`: Machinery for deprecating properties. +* :ghpull:`12371`: Move check for ImageMagick Windows path to bin_path(). +* :ghpull:`12384`: Cleanup axislines style. +* :ghpull:`9565`: Stem performance boost +* :ghpull:`12368`: Don't use stdlib private API in animation.py. +* :ghpull:`12351`: dviread: find_tex_file: Ensure the encoding on windows +* :ghpull:`12372`: Remove two examples. +* :ghpull:`12356`: Fix stripping of CRLF on Windows. +* :ghpull:`12283`: FIX: errorbar xywhere should return ndarray +* :ghpull:`12304`: TST: Merge Qt tests into one file. +* :ghpull:`12340`: Catch test deprecation warnings for mlab.demean +* :ghpull:`12296`: Make FooConverter inherit from ConversionInterface in examples +* :ghpull:`12309`: Deduplicate implementations of FooNorm.autoscale{,_None} +* :ghpull:`7716`: [NF] Add 'truncate' and 'join' methods to colormaps. +* :ghpull:`12314`: Deprecate ``axis('normal')`` in favor of ``axis('auto')``. +* :ghpull:`12307`: Clarify missing-property error message. +* :ghpull:`12260`: Fix docs : change from issue #12191, remove "if 1:" blocks in examples +* :ghpull:`12253`: Handle utf-8 output by kpathsea on Windows. +* :ghpull:`12292`: TST: Modify the bar3d test to show three more angles +* :ghpull:`12284`: Don't try to autoscale if no data present to autoscale to +* :ghpull:`12255`: Deduplicate inherited docstrings. +* :ghpull:`12222`: Remove extraneous if 1 statements in demo_axisline_style.py +* :ghpull:`12137`: MAINT: Vectorize bar3d +* :ghpull:`12219`: Merge OSXInstalledFonts into findSystemFonts. +* :ghpull:`12229`: Less ACCEPTS, more numpydoc. +* :ghpull:`11621`: TST: make E402 a universal flake8 ignore +* :ghpull:`12231`: CI: Speed up Appveyor repository cloning +* :ghpull:`11661`: Update blocking_input.py +* :ghpull:`12199`: Allow disabling specific mouse actions in blocking_input +* :ghpull:`12210`: Axes.tick_params() argument checking +* :ghpull:`12211`: Fix typo +* :ghpull:`12200`: Slightly clarify some invalid shape exceptions for image data. +* :ghpull:`12151`: Don't pretend @deprecated applies to classmethods. +* :ghpull:`12190`: Remove some unused variables and imports +* :ghpull:`12192`: Exclude examples from lgtm analysis +* :ghpull:`12196`: Give Carreau the ability to mention the backport bot. +* :ghpull:`12171`: Remove internal warning due to zsort deprecation +* :ghpull:`12030`: Speed up canvas redraw for GTK3Agg backend. +* :ghpull:`12156`: Cleanup the GridSpec demos. +* :ghpull:`12144`: Add explicit getters and setters for Annotation.anncoords. +* :ghpull:`12152`: Use _warn_external for deprecations warnings. +* :ghpull:`12147`: DOC: update the gh_stats code +* :ghpull:`12139`: Unbreak build re: mplot3d style. +* :ghpull:`11367`: Raise TypeError on unsupported kwargs of spy() +* :ghpull:`9990`: Fix and document lightsource argument in mplot3d +* :ghpull:`12124`: Correctly infer units from empty arrays +* :ghpull:`11994`: Cleanup unused variables and imports +* :ghpull:`12122`: MNT: re-add cbook import art3d +* :ghpull:`12086`: FIX: make MaxNLocator only follow visible ticks for order of magnitude +* :ghpull:`12032`: Remove unused imports +* :ghpull:`12093`: Correct the removal of -Wstrict-prototypes from compiler flags. +* :ghpull:`12069`: Style fixes for mplot3d. +* :ghpull:`11997`: Cleanup some axes_grid1 examples +* :ghpull:`12098`: Improve layout of HTML animation +* :ghpull:`12094`: Fine-tune logging notes in contributing.rst. +* :ghpull:`12079`: Clarifications to **im_show()** doc regarding *interpolation='none'*. +* :ghpull:`12068`: More style fixes. +* :ghpull:`11499`: FIX: layout for mixed descent multiline text objects +* :ghpull:`11921`: FIX: allow reshape 2-D to return a bare 1-d list +* :ghpull:`12070`: Avoid some uses of np.isscalar. +* :ghpull:`12067`: DOC: make Line2D docstring definition easier to find +* :ghpull:`12054`: More style fixes. +* :ghpull:`12066`: fix indentation in docstring interpolation for spy. +* :ghpull:`11931`: Remove separate autosummary_inher template. +* :ghpull:`12049`: Make Poly3DCollection.set_zsort less lenient. +* :ghpull:`12050`: Various cleanups. +* :ghpull:`12038`: Modernize ArtistInspector a bit... +* :ghpull:`12033`: DOC: formatting fixes to mplot3d +* :ghpull:`12051`: Is bool +* :ghpull:`12045`: Fix 999.9... edge case in ticker.EngFormatter for negative numbers +* :ghpull:`12044`: Update doc on the *progressive* and *optimize* keywords in savefig +* :ghpull:`12061`: Small refactor/simplification. +* :ghpull:`12060`: INSTALL.rst fixes +* :ghpull:`12055`: Fix invalid escape in docstring. +* :ghpull:`12026`: whitespace(-mostly) style cleanup. +* :ghpull:`12043`: Deprecate get_py2exe_datafiles. +* :ghpull:`12046`: Make HTMLWriter constructor a bit more strict. +* :ghpull:`12034`: Doc markup fixes. +* :ghpull:`11972`: FIX: close mem leak for repeated draw +* :ghpull:`12024`: Fix typos +* :ghpull:`11996`: Minor javascript cleanup +* :ghpull:`11989`: Remove support for ghostscript 8.60. +* :ghpull:`12004`: Update acorr and xcorr docs to match numpy docs +* :ghpull:`11998`: No clf() needed after creating a figure +* :ghpull:`12001`: Do not use an explicit figum in plt.figure(1, ...) in simple cases +* :ghpull:`11999`: Do not use an explicit fignum plt.figure(1) in simple cases +* :ghpull:`11995`: Don't use bare except statements +* :ghpull:`11993`: DOC: fixed typos +* :ghpull:`11992`: Use pytest.warns instead of home-baked warnings capture. +* :ghpull:`11975`: Derive plt.figlegend.__doc__ from Figure.legend.__doc__. +* :ghpull:`11980`: Remove __version__numpy__; simplify dependencies check. +* :ghpull:`11982`: Remove and old keyword documentation. +* :ghpull:`11981`: Some extra typos +* :ghpull:`11979`: Fix a couple of typos. +* :ghpull:`11959`: cbook.iterable -> np.iterable. +* :ghpull:`11965`: Move the removal of the -Wstrict-prototypes flag to setup.py. +* :ghpull:`11958`: Remove unused code +* :ghpull:`11960`: Make jpl_units a bit less painful to read. +* :ghpull:`11951`: Improve Artist docstrings +* :ghpull:`11954`: No need to define _log twice in matplotlib.dates. +* :ghpull:`11948`: Minor fixes to docs and gitignore. +* :ghpull:`11777`: Avoid incorrect warning in savefig +* :ghpull:`11942`: Deprecate Artist.aname and Axes.aname +* :ghpull:`11935`: Remove ginput demo example +* :ghpull:`11939`: Improve alias signatures +* :ghpull:`11940`: Do not use aliases of properties in internal code +* :ghpull:`11941`: Fix test_large_subscript_title() +* :ghpull:`11938`: More docstring cleanup of Line2D. +* :ghpull:`11920`: Add LGTM.com code quality badge +* :ghpull:`11922`: Improve docstrings of Line2D +* :ghpull:`11924`: Minor formatting update on alias docstrings +* :ghpull:`11926`: Minor fix to ginput_demo. +* :ghpull:`11912`: BLD: update PR template for flake8 +* :ghpull:`11909`: Simplify linestyle and fillstyle reference docs. +* :ghpull:`11502`: FIX: move title(s) up if subscripts hang too low. +* :ghpull:`11906`: fix format of bar_of_pie example +* :ghpull:`11741`: Factor out common code between Patch.draw and FancyArrowPatch.draw. +* :ghpull:`11784`: Argument checking for grid() +* :ghpull:`11888`: Factor out a subprocess log-and-check helper. +* :ghpull:`11740`: Deprecate support for 3rd-party backends without set_hatch_color. +* :ghpull:`11884`: Deprecate the tk_window_focus function. +* :ghpull:`11689`: Don't cache the renderer on the Axes instance. +* :ghpull:`11698`: For property, use decorator or lambdas. +* :ghpull:`11872`: Make all builtin cmaps picklable. +* :ghpull:`11870`: More style fixes. +* :ghpull:`11873`: Remove mention of deprecated/removed methods from mlab's docstring. +* :ghpull:`11869`: Style fixes. +* :ghpull:`11874`: Remove some remnants of Py2-handling in test_rcparams. +* :ghpull:`11865`: example file for making a bar of pie chart +* :ghpull:`11868`: mathtext.py style fixes. +* :ghpull:`11854`: Accept anything that's not a directory for $MATPLOTLIBRC. +* :ghpull:`11589`: WIP ENH secondary axes: +* :ghpull:`8449`: Including Additional Metadata using the SVG Backend +* :ghpull:`11465`: ENH: optimize Collection non-affine transform to call transform once + +Issues (161): + +* :ghissue:`4001`: Qt5 Backend: dblclick is always False on 'mouse_release_event' +* :ghissue:`14152`: qt_compat.py performing wrong test for PyQt5 +* :ghissue:`10875`: Annotation.contains and FancyArrow.contains return incorrect values +* :ghissue:`458`: JPG quality keyword in savefig +* :ghissue:`4354`: scatter not showing valid x/y points with invalid color +* :ghissue:`14113`: scatter could not raise when colors are provided but position data are empty +* :ghissue:`14003`: numpydoc 0.9 breaks doc build +* :ghissue:`14054`: ticks sometimes disappear when zooming interactively +* :ghissue:`10189`: The data decorator does not integrate well with numpydoc +* :ghissue:`14034`: pyplot plot raises ValueError when plotting NaN against datetime dates +* :ghissue:`14039`: bar plot yerr lines/caps should respect zorder +* :ghissue:`14042`: dynamic_image.py + saving animation broken +* :ghissue:`14013`: osx backend not usable with ipython/jupyter from conda? +* :ghissue:`13993`: Tests files installed by default? +* :ghissue:`13991`: MaxNLocator.default_params deprecation may break Cartopy +* :ghissue:`5045`: Axes.grid() not honoring specified "zorder" kwarg +* :ghissue:`4371`: LaTeX and PGF preambles do not allow commas +* :ghissue:`13982`: hist() no longer respects range=... when density=True +* :ghissue:`13963`: Dataless colorbars break when updated +* :ghissue:`10381`: Issue when setting scatter color in separate method call +* :ghissue:`13618`: Minor ticklabels are missing at positions of major ticks. +* :ghissue:`13880`: Adding documentation for Text.fontfamily default, set_fontfamily(None)? +* :ghissue:`13865`: Appveyor broken +* :ghissue:`8636`: plt.hist chooses improper range when using string-based bin options +* :ghissue:`7300`: weird mathtext doc markup +* :ghissue:`8862`: Replace \mathcircled by \textcircled +* :ghissue:`13759`: DOC: matplotlib.patches.Arc +* :ghissue:`13785`: Imshow gives values out of the extent +* :ghissue:`13786`: Cannot import matplotlib.animation +* :ghissue:`13561`: Progress of animation.save (for long animations) +* :ghissue:`13735`: title doesn't move for ticklables.... +* :ghissue:`12175`: Example link near markevery in the "What's new in 3.0" page is malformed/broken +* :ghissue:`13713`: Boxplot xlim not correctly calculated +* :ghissue:`11070`: Add a "density" kwarg to hist2d +* :ghissue:`11337`: Cannot plot fully masked array against datetimes +* :ghissue:`10165`: Adapt stem plot +* :ghissue:`10976`: ENH: secondary axis for a x or y scale. +* :ghissue:`10763`: Cairo in 2.2.0 not working for new backends +* :ghissue:`9737`: setupext should not explicitly add /usr/{,local/}include to the include path +* :ghissue:`11217`: Crash on zero-length FancyArrow +* :ghissue:`13623`: do not cause warning in seaborn +* :ghissue:`13480`: Segfault on help('modules') command when matplotlib is installed +* :ghissue:`13604`: legend's framealpha kwarg does not apply when writing to an eps file +* :ghissue:`12311`: 'off' vs. False bug +* :ghissue:`10237`: Setting an alpha value to a Poly3DCollection +* :ghissue:`11781`: fill_between interpolation & nan issue +* :ghissue:`1077`: 3d plots with aspect='equal' +* :ghissue:`11761`: Still naming inconsistency in API on axes limits +* :ghissue:`11623`: Regression: "TypeError: Period('2000-12-31', 'D') is not a string" when a Series with date index was plotted +* :ghissue:`12655`: auto-ticks do not handle values near bounds gracefully +* :ghissue:`13487`: labelpad is not the spacing between the axis and the label +* :ghissue:`13540`: Docs for matplotlib.pyplot.specgram() reference an unsupported mode setting +* :ghissue:`8997`: Proposal: Grid arrangement by number of plots +* :ghissue:`6928`: Cannot run ``setup.py build`` with numpy master +* :ghissue:`12697`: Axes are drawn at wrong positions +* :ghissue:`13478`: FuncAnimation: interactive zoom/pan with blitting does not work +* :ghissue:`11575`: Setting axis ticks in log scale produces duplicate tick labels. +* :ghissue:`13464`: set_rlim(bottom=...) no longer works +* :ghissue:`12628`: Write canonical example of how to use Matplotlib inside a webserver +* :ghissue:`10022`: boxplot: positions used to take Int64Index +* :ghissue:`11647`: Disable buttons in ginput +* :ghissue:`12987`: issues parsing AFM fonts +* :ghissue:`12667`: Colorbar ticks.... +* :ghissue:`13137`: Travis for Python 3.7 sometimes fails due to missing font +* :ghissue:`7969`: Stem is slow and will crash if I try to close the window +* :ghissue:`13002`: Hist color kwarg broken for multiple empty datasets +* :ghissue:`5581`: [mpl_toolkits] Things drawn on parasite axes don't fire pick events +* :ghissue:`13417`: Secondary axis doesn't resize properly +* :ghissue:`8120`: Inconsistent inset_axes position between show(), savefig(format='png') and savefig(format='pdf') +* :ghissue:`8947`: Different result, slower runtime of heatmap between 2.0.0 and 2.0.1 +* :ghissue:`13264`: Use of logging in matplotlib +* :ghissue:`11602`: animation error +* :ghissue:`12925`: Python pandas datetime plot xticks in unexpected location +* :ghissue:`11025`: AxesGrid ticks missing on x-axis +* :ghissue:`10974`: Examples not shown in API docs for many methods. +* :ghissue:`13392`: boxplot broken for empty inputs +* :ghissue:`12345`: Need more tests for units and errorbar +* :ghissue:`10361`: FigureCanvas.draw() with tight_layout () needs to be called twice with Matplotlib 2.1.0 +* :ghissue:`11376`: Temporary styling ignores color cycle +* :ghissue:`11546`: import time +* :ghissue:`13286`: AttributeError: 'float' object has no attribute 'deg2rad' +* :ghissue:`11508`: bi-directional perceptually flat colormaps in matplotlib? +* :ghissue:`12918`: Mac shows an icon in the dock when using matplotlib.pyplot. +* :ghissue:`13339`: Log Colorbar minorticks_off reverted if ticks set... +* :ghissue:`13228`: MPL 3 + Colorbar + PowerNorm bug +* :ghissue:`13096`: Matplotlib.get_backend()/matplotlib.use() cause NSException with Anaconda +* :ghissue:`7712`: Number of ticks for dates still gives overlapping labels +* :ghissue:`9978`: General poor default formatting of datetimes on plot x-axis +* :ghissue:`13253`: imsave outputs JPEG with wrong dimension +* :ghissue:`11391`: Use data argument for scatter plotting timestamps from pandas +* :ghissue:`13145`: widgets.RadioButtons: select by closest in position +* :ghissue:`13267`: "double-pendulum" example's speed not correct / varying +* :ghissue:`13257`: Allow turning off minorticks for Colorbar with LogNorm? +* :ghissue:`13237`: Sankey basic gallery example is not rendered properly. +* :ghissue:`12836`: matplotlib.rc_file resets to default template before updating rcparams +* :ghissue:`13186`: ax.bar throws when x axis is pandas datetime +* :ghissue:`5397`: Expose compression and filter PNG options through savefig +* :ghissue:`13142`: Cannot plot bar graph with dates: "TypeError: ufunc subtract cannot use operands with types dtype('`__ + +The following 30 authors contributed 323 commits. + +* Adam Gomaa +* Antony Lee +* Ben Root +* Christer Jensen +* chuanzhu xu +* David Stansby +* Deng Tian +* djdt +* Dora Fraeman Caswell +* Elan Ernest +* Elliott Sales de Andrade +* Eric Firing +* Filipe Fernandes +* Ian Thomas +* ImportanceOfBeingErnest +* Jody Klymak +* Johannes H. Jensen +* Jonas Camillus Jeppesen +* LeiSurrre +* Matt Adamson +* MeeseeksMachine +* Molly Rossow +* Nathan Goldbaum +* Nelle Varoquaux +* Paul Ivanov +* RoryIAngus +* Ryan May +* Thomas A Caswell +* Thomas Robitaille +* Tim Hoffmann + +GitHub issues and pull requests: + +Pull Requests (120): + +* :ghpull:`14636`: Don't capture stderr in _check_and_log_subprocess. +* :ghpull:`14655`: Backport PR #14649 on branch v3.1.x (Fix appveyor conda py37) +* :ghpull:`14649`: Fix appveyor conda py37 +* :ghpull:`14646`: Backport PR #14640 on branch v3.1.x (FIX: allow secondary axes to be non-linear) +* :ghpull:`14640`: FIX: allow secondary axes to be non-linear +* :ghpull:`14643`: Second attempt at fixing axis inversion (for mpl3.1). +* :ghpull:`14623`: Fix axis inversion with loglocator and logitlocator. +* :ghpull:`14619`: Backport PR #14598 on branch v3.1.x (Fix inversion of shared axes.) +* :ghpull:`14621`: Backport PR #14613 on branch v3.1.x (Cleanup DateFormatter docstring.) +* :ghpull:`14622`: Backport PR #14611 on branch v3.1.x (Update some axis docstrings.) +* :ghpull:`14611`: Update some axis docstrings. +* :ghpull:`14613`: Cleanup DateFormatter docstring. +* :ghpull:`14598`: Fix inversion of shared axes. +* :ghpull:`14610`: Backport PR #14579 on branch v3.1.x (Fix inversion of 3d axis.) +* :ghpull:`14579`: Fix inversion of 3d axis. +* :ghpull:`14600`: Backport PR #14599 on branch v3.1.x (DOC: Add numpngw to third party packages.) +* :ghpull:`14574`: Backport PR #14568 on branch v3.1.x (Don't assume tk canvas have a manager attached.) +* :ghpull:`14568`: Don't assume tk canvas have a manager attached. +* :ghpull:`14571`: Backport PR #14566 on branch v3.1.x (Move setting of AA_EnableHighDpiScaling before creating QApplication.) +* :ghpull:`14566`: Move setting of AA_EnableHighDpiScaling before creating QApplication. +* :ghpull:`14541`: Backport PR #14535 on branch v3.1.x (Invalidate FT2Font cache when fork()ing.) +* :ghpull:`14535`: Invalidate FT2Font cache when fork()ing. +* :ghpull:`14522`: Backport PR #14040 on branch v3.1.x (Gracefully handle non-finite z in tricontour (issue #10167)) +* :ghpull:`14434`: Backport PR #14296 on branch v3.1.x (Fix barbs to accept array of bool for ``flip_barb``) +* :ghpull:`14518`: Backport PR #14509 on branch v3.1.x (Fix too large icon spacing in Qt5 on non-HiDPI screens) +* :ghpull:`14509`: Fix too large icon spacing in Qt5 on non-HiDPI screens +* :ghpull:`14514`: Backport PR #14256 on branch v3.1.x (Improve docstring of Axes.barbs) +* :ghpull:`14256`: Improve docstring of Axes.barbs +* :ghpull:`14505`: Backport PR #14395 on branch v3.1.x (MAINT: work around non-zero exit status of "pdftops -v" command.) +* :ghpull:`14504`: Backport PR #14445 on branch v3.1.x (FIX: fastpath clipped artists) +* :ghpull:`14502`: Backport PR #14451 on branch v3.1.x (FIX: return points rather than path to fix regression) +* :ghpull:`14445`: FIX: fastpath clipped artists +* :ghpull:`14497`: Backport PR #14491 on branch v3.1.x (Fix uses of PyObject_IsTrue.) +* :ghpull:`14491`: Fix uses of PyObject_IsTrue. +* :ghpull:`14492`: Backport PR #14490 on branch v3.1.x (Fix links of parameter types) +* :ghpull:`14490`: Fix links of parameter types +* :ghpull:`14489`: Backport PR #14459 on branch v3.1.x (Cleanup docstring of DraggableBase.) +* :ghpull:`14459`: Cleanup docstring of DraggableBase. +* :ghpull:`14485`: Backport #14429 on v3.1.x +* :ghpull:`14486`: Backport #14403 on v3.1. +* :ghpull:`14429`: FIX: if the first elements of an array are masked keep checking +* :ghpull:`14481`: Backport PR #14475 on branch v3.1.x (change ginoput docstring to match behavior) +* :ghpull:`14482`: Backport PR #14464 on branch v3.1.x (Mention origin and extent tutorial in API docs for origin kwarg) +* :ghpull:`14464`: Mention origin and extent tutorial in API docs for origin kwarg +* :ghpull:`14468`: Backport PR #14449: Improve docs on gridspec +* :ghpull:`14475`: change ginoput docstring to match behavior +* :ghpull:`14477`: Backport PR #14461 on branch v3.1.x (Fix out of bounds read in backend_tk.) +* :ghpull:`14476`: Backport PR #14474 on branch v3.1.x (Fix default value in docstring of errorbar func) +* :ghpull:`14461`: Fix out of bounds read in backend_tk. +* :ghpull:`14474`: Fix default value in docstring of errorbar func +* :ghpull:`14473`: Backport PR #14472 on branch v3.1.x (Fix NameError in example code for setting label via method) +* :ghpull:`14472`: Fix NameError in example code for setting label via method +* :ghpull:`14449`: Improve docs on gridspec +* :ghpull:`14450`: Backport PR #14422 on branch v3.1.x (Fix ReST note in span selector example) +* :ghpull:`14446`: Backport PR #14438 on branch v3.1.x (Issue #14372 - Add degrees to documentation) +* :ghpull:`14438`: Issue #14372 - Add degrees to documentation +* :ghpull:`14437`: Backport PR #14387 on branch v3.1.x (Fix clearing rubberband on nbagg) +* :ghpull:`14387`: Fix clearing rubberband on nbagg +* :ghpull:`14435`: Backport PR #14425 on branch v3.1.x (Lic restore license paint) +* :ghpull:`14296`: Fix barbs to accept array of bool for ``flip_barb`` +* :ghpull:`14430`: Backport PR #14397 on branch v3.1.x (Correctly set clip_path on pcolorfast return artist.) +* :ghpull:`14397`: Correctly set clip_path on pcolorfast return artist. +* :ghpull:`14409`: Backport PR #14335 on branch v3.1.x (Add explanation of animation.embed_limit to matplotlibrc.template) +* :ghpull:`14335`: Add explanation of animation.embed_limit to matplotlibrc.template +* :ghpull:`14403`: Revert "Preserve whitespace in svg output." +* :ghpull:`14407`: Backport PR #14406 on branch v3.1.x (Remove extra \iint in math_symbol_table for document) +* :ghpull:`14398`: Backport PR #14394 on branch v3.1.x (Update link to "MathML torture test".) +* :ghpull:`14394`: Update link to "MathML torture test". +* :ghpull:`14389`: Backport PR #14388 on branch v3.1.x (Fixed one little spelling error) +* :ghpull:`14385`: Backport PR #14316 on branch v3.1.x (Improve error message for kiwisolver import error (DLL load failed)) +* :ghpull:`14388`: Fixed one little spelling error +* :ghpull:`14384`: Backport PR #14369 on branch v3.1.x (Don't use deprecated mathcircled in docs.) +* :ghpull:`14316`: Improve error message for kiwisolver import error (DLL load failed) +* :ghpull:`14369`: Don't use deprecated mathcircled in docs. +* :ghpull:`14375`: Backport PR #14374 on branch v3.1.x (Check that the figure patch is in bbox_artists before trying to remove.) +* :ghpull:`14374`: Check that the figure patch is in bbox_artists before trying to remove. +* :ghpull:`14040`: Gracefully handle non-finite z in tricontour (issue #10167) +* :ghpull:`14342`: Backport PR #14326 on branch v3.1.x (Correctly apply PNG palette when building ImageBase through Pillow.) +* :ghpull:`14326`: Correctly apply PNG palette when building ImageBase through Pillow. +* :ghpull:`14341`: Backport PR #14337 on branch v3.1.x (Docstring cleanup) +* :ghpull:`14337`: Docstring cleanup +* :ghpull:`14325`: Backport PR #14126 on branch v3.1.x (Simplify grouped bar chart example) +* :ghpull:`14324`: Backport PR #14139 on branch v3.1.x (TST: be more explicit about identifying qt4/qt5 imports) +* :ghpull:`14126`: Simplify grouped bar chart example +* :ghpull:`14323`: Backport PR #14290 on branch v3.1.x (Convert SymmetricalLogScale to numpydoc) +* :ghpull:`14139`: TST: be more explicit about identifying qt4/qt5 imports +* :ghpull:`14290`: Convert SymmetricalLogScale to numpydoc +* :ghpull:`14321`: Backport PR #14313 on branch v3.1.x +* :ghpull:`14313`: Support masked array inputs for to_rgba and to_rgba_array. +* :ghpull:`14320`: Backport PR #14319 on branch v3.1.x (Don't set missing history buttons.) +* :ghpull:`14319`: Don't set missing history buttons. +* :ghpull:`14317`: Backport PR #14295: Fix bug in SymmetricalLogTransform. +* :ghpull:`14302`: Backport PR #14255 on branch v3.1.x (Improve docsstring of Axes.streamplot) +* :ghpull:`14255`: Improve docsstring of Axes.streamplot +* :ghpull:`14295`: Fix bug in SymmetricalLogTransform. +* :ghpull:`14294`: Backport PR #14282 on branch v3.1.x (Fix toolmanager's destroy subplots in tk) +* :ghpull:`14282`: Fix toolmanager's destroy subplots in tk +* :ghpull:`14292`: Backport PR #14289 on branch v3.1.x (BUG: Fix performance regression when plotting values from Numpy array sub-classes) +* :ghpull:`14289`: BUG: Fix performance regression when plotting values from Numpy array sub-classes +* :ghpull:`14287`: Backport PR #14286 on branch v3.1.x (fix minor typo) +* :ghpull:`14284`: Backport PR #14279 on branch v3.1.x (In case fallback to Agg fails, let the exception propagate out.) +* :ghpull:`14254`: Merge up 30x +* :ghpull:`14279`: In case fallback to Agg fails, let the exception propagate out. +* :ghpull:`14268`: Backport PR #14261 on branch v3.1.x (Updated polar documentation) +* :ghpull:`14261`: Updated polar documentation +* :ghpull:`14264`: Backport PR #14260 on branch v3.1.x (Remove old OSX FAQ page) +* :ghpull:`14260`: Remove old OSX FAQ page +* :ghpull:`14249`: Backport PR #14243 on branch v3.1.x (Update docstring of makeMappingArray) +* :ghpull:`14250`: Backport PR #14149 on branch v3.1.x +* :ghpull:`14252`: Backport PR #14248 on branch v3.1.x (Fix TextBox not respecting eventson) +* :ghpull:`14253`: Backport PR #13596 on branch v3.1.x (Normalize properties passed to bxp().) +* :ghpull:`14251`: Backport PR #14241 on branch v3.1.x (Fix linear segmented colormap with one element) +* :ghpull:`13596`: Normalize properties passed to bxp(). +* :ghpull:`14248`: Fix TextBox not respecting eventson +* :ghpull:`14241`: Fix linear segmented colormap with one element +* :ghpull:`14243`: Update docstring of makeMappingArray +* :ghpull:`14238`: Backport PR #14164 on branch v3.1.x (Fix regexp for dvipng version detection) +* :ghpull:`14149`: Avoid using ``axis([xlo, xhi, ylo, yhi])`` in examples. +* :ghpull:`14164`: Fix regexp for dvipng version detection +* :ghpull:`13739`: Fix pressing tab breaks keymap in CanvasTk + +Issues (30): + +* :ghissue:`14620`: Plotting on a log/logit scale overwrites axis inverting +* :ghissue:`14615`: Inverting an axis using its limits does not work for log scale +* :ghissue:`14577`: Calling invert_yaxis() on a 3D plot has either no effect or removes ticks +* :ghissue:`14602`: NavigationToolbar2Tk save_figure function bug +* :ghissue:`1219`: Show fails on figures created with the object-oriented system +* :ghissue:`10167`: Segmentation fault with tricontour +* :ghissue:`13723`: RuntimeError when saving PDFs via parallel processes (not threads!) +* :ghissue:`14315`: Improvement: Better error message if kiwisolver fails to import +* :ghissue:`14356`: matplotlib.units.ConversionError on scatter of dates with a NaN in the first position +* :ghissue:`14467`: Docs for plt.ginput() have the wrong default value for show_clicks keyword argument. +* :ghissue:`14225`: Matplotlib crashes on windows while maximizing plot window when using Multicursor +* :ghissue:`14458`: DOC: small inconsistency in errobar docstring +* :ghissue:`14372`: Document that view_init() arguments should be in degrees +* :ghissue:`12201`: issues clearing rubberband on nbagg at non-default browser zoom +* :ghissue:`13576`: pcolorfast misbehaves when changing axis limits +* :ghissue:`14303`: Unable to import matplotlib on Windows 10 v1903 +* :ghissue:`14283`: RendererSVG CSS 'white-space' property conflicts with default HTML CSS +* :ghissue:`14293`: imshow() producing "inverted" colors since 3.0.3 +* :ghissue:`14322`: Cannot import matplotlib with Python 3.7.x on Win10Pro +* :ghissue:`14137`: Qt5 test auto-skip is not working correctly +* :ghissue:`14301`: scatter() fails on nan-containing input when providing edgecolor +* :ghissue:`14318`: Don't try to set missing history buttons. +* :ghissue:`14265`: symlog looses some points since 3.1.0 (example given) +* :ghissue:`14274`: BUG: plotting with Numpy array subclasses is slow with Matplotlib 3.1.0 (regression) +* :ghissue:`14263`: import pyplot issue - +* :ghissue:`14227`: Update "working with Mpl on OSX" docs +* :ghissue:`13448`: boxplot doesn't normalize properties before applying them +* :ghissue:`14226`: Modify matplotlib TextBox value without triggering callback +* :ghissue:`14232`: LinearSegmentedColormap with N=1 gives confusing error message +* :ghissue:`10365`: Scatter plot with non-sequence ´c´ color should give a better Error message. diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.1.2.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.1.2.rst new file mode 100644 index 0000000000000000000000000000000000000000..e1ed84e26372aebdde7ee638fbaa96c4bb105892 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.1.2.rst @@ -0,0 +1,186 @@ +.. _github-stats-3-1-2: + +GitHub statistics for 3.1.2 (Nov 21, 2019) +========================================== + +GitHub statistics for 2019/07/01 (tag: v3.1.1) - 2019/11/21 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 28 issues and merged 113 pull requests. +The full list can be seen `on GitHub `__ + +The following 23 authors contributed 192 commits. + +* Alex Rudy +* Antony Lee +* Bingyao Liu +* Cong Ma +* David Stansby +* Elliott Sales de Andrade +* hannah +* Hanno Rein +* ImportanceOfBeingErnest +* joaonsg +* Jody Klymak +* Matthias Bussonnier +* MeeseeksMachine +* miquelastein +* Nelle Varoquaux +* Patrick Shriwise +* Paul Hoffman +* Paul Ivanov +* Ryan May +* Samesh +* Thomas A Caswell +* Tim Hoffmann +* Vincent L.M. Mazoyer + +GitHub issues and pull requests: + +Pull Requests (113): + +* :ghpull:`15664`: Backport PR #15649 on branch v3.1.x (Fix searchindex.js loading when ajax fails (because e.g. CORS in embedded iframes)) +* :ghpull:`15722`: Backport PR #15718 on branch v3.1.x (Update donation link) +* :ghpull:`15667`: Backport PR #15654 on branch v3.1.x (Fix some broken links.) +* :ghpull:`15658`: Backport PR #15647 on branch v3.1.x (Update some links) +* :ghpull:`15582`: Backport PR #15512 on branch v3.1.x +* :ghpull:`15512`: FIX: do not consider webagg and nbagg "interactive" for fallback +* :ghpull:`15558`: Backport PR #15553 on branch v3.1.x (DOC: add cache-buster query string to css path) +* :ghpull:`15550`: Backport PR #15528 on branch v3.1.x (Declutter home page) +* :ghpull:`15547`: Backport PR #15516 on branch v3.1.x (Add logo like font) +* :ghpull:`15511`: DOC: fix nav location +* :ghpull:`15508`: Backport PR #15489 on branch v3.1.x (DOC: adding main nav to site) +* :ghpull:`15494`: Backport PR #15486 on branch v3.1.x (Fixes an error in the documentation of Ellipse) +* :ghpull:`15486`: Fixes an error in the documentation of Ellipse +* :ghpull:`15473`: Backport PR #15464 on branch v3.1.x (Remove unused code (remainder from #15453)) +* :ghpull:`15470`: Backport PR #15460 on branch v3.1.x (Fix incorrect value check in axes_grid.) +* :ghpull:`15464`: Remove unused code (remainder from #15453) +* :ghpull:`15455`: Backport PR #15453 on branch v3.1.x (Improve example for tick locators) +* :ghpull:`15453`: Improve example for tick locators +* :ghpull:`15443`: Backport PR #15439 on branch v3.1.x (DOC: mention discourse main page) +* :ghpull:`15424`: Backport PR #15422 on branch v3.1.x (FIX: typo in attribute lookup) +* :ghpull:`15322`: Backport PR #15297 on branch v3.1.x (Document How-to figure empty) +* :ghpull:`15298`: Backport PR #15296 on branch v3.1.x (Fix typo/bug from 18cecf7) +* :ghpull:`15296`: Fix typo/bug from 18cecf7 +* :ghpull:`15278`: Backport PR #15271 on branch v3.1.x (Fix font weight validation) +* :ghpull:`15271`: Fix font weight validation +* :ghpull:`15218`: Backport PR #15217 on branch v3.1.x (Doc: Add ``plt.show()`` to horizontal bar chart example) +* :ghpull:`15207`: Backport PR #15206: FIX: be more forgiving about expecting internal s… +* :ghpull:`15198`: Backport PR #15197 on branch v3.1.x (Remove mention of now-removed basedir setup option.) +* :ghpull:`15197`: Remove mention of now-removed basedir setup option. +* :ghpull:`15189`: Backport PR #14979: FIX: Don't enable IPython integration if not ente… +* :ghpull:`15190`: Backport PR #14683: For non-html output, let sphinx pick the best format +* :ghpull:`15187`: Backport PR #15140 on branch v3.1.x +* :ghpull:`15185`: Backport PR #15168 on branch v3.1.x (MNT: explicitly cast ``np.bool_`` -> bool to prevent deprecation warning) +* :ghpull:`15168`: MNT: explicitly cast ``np.bool_`` -> bool to prevent deprecation warning +* :ghpull:`15183`: Backport PR #15181 on branch v3.1.x (FIX: proper call to zero_formats) +* :ghpull:`15181`: FIX: proper call to zero_formats +* :ghpull:`15172`: Backport PR #15166 on branch v3.1.x +* :ghpull:`15166`: FIX: indexed pandas bar +* :ghpull:`15153`: Backport PR #14456 on branch v3.1.x (PyQT5 Backend Partial Redraw Fix) +* :ghpull:`14456`: PyQT5 Backend Partial Redraw Fix +* :ghpull:`15140`: Fix ScalarFormatter formatting of masked values +* :ghpull:`15135`: Backport PR #15132 on branch v3.1.x (Update documenting guide on rcParams) +* :ghpull:`15128`: Backport PR #15115 on branch v3.1.x (Doc: highlight rcparams) +* :ghpull:`15125`: Backport PR #15110 on branch v3.1.x (Add inheritance diagram to mpl.ticker docs) +* :ghpull:`15116`: Backport PR #15114 on branch v3.1.x (DOC: update language around NF) +* :ghpull:`15058`: Backport PR #15055 on branch v3.1.x (Remove mention of now-removed feature in docstring.) +* :ghpull:`15055`: Remove mention of now-removed feature in docstring. +* :ghpull:`15047`: Backport PR #14919 on branch v3.1.x (FIX constrained_layout w/ hidden axes) +* :ghpull:`14919`: FIX constrained_layout w/ hidden axes +* :ghpull:`15022`: Backport PR #15020 on branch v3.1.x (Let connectionpatch be drawn on figure level) +* :ghpull:`15020`: Let connectionpatch be drawn on figure level +* :ghpull:`15017`: Backport PR #15007 on branch v3.1.x (FIX: support pandas 0.25) +* :ghpull:`14979`: FIX: Don't enable IPython integration if not entering REPL. +* :ghpull:`14987`: Merge pull request #14915 from AWhetter/fix_14585 +* :ghpull:`14985`: Backport PR #14982 on branch v3.1.x (DOC: correct table docstring) +* :ghpull:`14982`: DOC: correct table docstring +* :ghpull:`14975`: Backport PR #14974 on branch v3.1.x (grammar) +* :ghpull:`14972`: Backport PR #14971 on branch v3.1.x (typo) +* :ghpull:`14965`: Fix typo in documentation of table +* :ghpull:`14951`: Backport PR #14934 on branch v3.1.x (DOC: update axes_demo to directly manipulate fig, ax) +* :ghpull:`14938`: Backport PR #14905 on branch v3.1.x (Gracefully handle encoding problems when querying external executables.) +* :ghpull:`14935`: Backport PR #14933 on branch v3.1.x (DOC: typo x2 costum -> custom) +* :ghpull:`14936`: Backport PR #14932 on branch v3.1.x (DOC: Update invert_example to directly manipulate axis.) +* :ghpull:`14905`: Gracefully handle encoding problems when querying external executables. +* :ghpull:`14933`: DOC: typo x2 costum -> custom +* :ghpull:`14910`: Backport PR #14901 on branch v3.1.x (Fix GH14900: numpy 1.17.0 breaks test_colors.) +* :ghpull:`14864`: Backport PR #14830 on branch v3.1.x (FIX: restore special casing of shift-enter in notebook) +* :ghpull:`14861`: Don't use pandas 0.25.0 for testing +* :ghpull:`14855`: Backport PR #14839 on branch v3.1.x +* :ghpull:`14839`: Improve docstring of Axes.hexbin +* :ghpull:`14837`: Backport PR #14757 on branch v3.1.x (Remove incorrect color/cmap docstring line in contour.py) +* :ghpull:`14836`: Backport PR #14764 on branch v3.1.x (DOC: Fixes the links in the see-also section of Axes.get_tightbbox) +* :ghpull:`14818`: Backport PR #14510 on branch v3.1.x (Improve example for fill_between) +* :ghpull:`14819`: Backport PR #14704 on branch v3.1.x (Small patches on Docs (Tutorials and FAQ)) +* :ghpull:`14820`: Backport PR #14765 on branch v3.1.x (DOC: Fix documentation location for patheffects) +* :ghpull:`14821`: Backport PR #14741 on branch v3.1.x (DOC: Update description of properties of Line2D in 'plot' documentation.) +* :ghpull:`14822`: Backport PR #14714 on branch v3.1.x (Point towards how to save output of non-interactive backends) +* :ghpull:`14823`: Backport PR #14784 on branch v3.1.x (Tiny docs/comments cleanups.) +* :ghpull:`14824`: Backport PR #14798 on branch v3.1.x (Cleanup dates.py module docstrings.) +* :ghpull:`14825`: Backport PR #14802 on branch v3.1.x (Fix some broken refs in the docs.) +* :ghpull:`14826`: Backport PR #14806 on branch v3.1.x (Remove unnecessary uses of transFigure from examples.) +* :ghpull:`14827`: Backport PR #14525 on branch v3.1.x (improve documentation of OffsetBox) +* :ghpull:`14828`: Backport PR #14548: Link to matplotlibrc of used version +* :ghpull:`14817`: Backport PR #14697 on branch v3.1.x (Fix NavigationToolbar2QT height) +* :ghpull:`14692`: Backport PR #14688 on branch v3.1.x (Revise the misleading title for subplots demo) +* :ghpull:`14816`: Backport PR #14677 on branch v3.1.x (Don't misclip axis when calling set_ticks on inverted axes.) +* :ghpull:`14815`: Backport PR #14658 on branch v3.1.x (Fix numpydoc formatting) +* :ghpull:`14813`: Backport PR #14488 on branch v3.1.x (Make sure EventCollection doesn't modify input in-place) +* :ghpull:`14806`: Remove unnecessary uses of transFigure from examples. +* :ghpull:`14802`: Fix some broken refs in the docs. +* :ghpull:`14798`: Cleanup dates.py module docstrings. +* :ghpull:`14784`: Tiny docs/comments cleanups. +* :ghpull:`14764`: DOC: Fixes the links in the see-also section of Axes.get_tightbbox +* :ghpull:`14777`: Backport PR #14775 on branch v3.1.x (DOC: Fix CircleCI builds) +* :ghpull:`14769`: Backport PR #14759 on branch v3.1.x (DOC: note about having to rebuild after switching to local freetype) +* :ghpull:`14714`: Point towards how to save output of non-interactive backends +* :ghpull:`14741`: DOC: Update description of properties of Line2D in 'plot' documentation. +* :ghpull:`14771`: Backport PR #14760 on branch v3.1.x (DOC: minor CoC wording change) +* :ghpull:`14765`: DOC: Fix documentation location for patheffects +* :ghpull:`14735`: Backport PR #14734 on branch v3.1.x (Add geoplot to third-party example libraries page.) +* :ghpull:`14711`: Backport PR #14706 on branch v3.1.x (Mention gr backend in docs.) +* :ghpull:`14704`: Small patches on Docs (Tutorials and FAQ) +* :ghpull:`14700`: Backport PR #14698 on branch v3.1.x (Make property name be consistent with rc parameter.) +* :ghpull:`14510`: Improve example for fill_between +* :ghpull:`14683`: For non-html output, let sphinx pick the best format. +* :ghpull:`14697`: Fix NavigationToolbar2QT height +* :ghpull:`14677`: Don't misclip axis when calling set_ticks on inverted axes. +* :ghpull:`14658`: Fix numpydoc formatting +* :ghpull:`14488`: Make sure EventCollection doesn't modify input in-place +* :ghpull:`14570`: Remove print statements +* :ghpull:`14525`: improve documentation of OffsetBox +* :ghpull:`14548`: Link to matplotlibrc of used version +* :ghpull:`14395`: MAINT: work around non-zero exit status of "pdftops -v" command. + +Issues (28): + +* :ghissue:`15295`: Can't install matplotlib with pip for Python 3.8b4 +* :ghissue:`15714`: Publish 3.8 wheels +* :ghissue:`15706`: Python 3.8 - Installation error: TypeError: stat: path should be string, bytes, os.PathLike or integer, not NoneType +* :ghissue:`15690`: Should xlim support single-entry arrays? +* :ghissue:`15608`: imshow rendering changed from 3.1.0 to 3.1.1 +* :ghissue:`14903`: 'MPLBACKEND=webagg' is overwritten by agg when $DISPLAY is not set on Linux +* :ghissue:`15351`: Bar width expands between subsequent bars +* :ghissue:`15240`: Can't specify integer ``font.weight`` in custom style sheet any more +* :ghissue:`15255`: ``imshow`` in ``v3.1.1``: y-axis chopped-off +* :ghissue:`15186`: 3D quiver plot fails when pivot = "middle" +* :ghissue:`14160`: PySide2/PyQt5: Graphics issues in QScrollArea for OSX +* :ghissue:`15178`: mdates.ConciseDateFormatter() doesn't work with zero_formats parameter +* :ghissue:`15179`: Patch 3.1.1 broke imshow() heatmaps: Tiles cut off on y-axis +* :ghissue:`15162`: axes.bar fails when x is int-indexed pandas.Series +* :ghissue:`15103`: Colorbar for imshow messes interactive cursor with masked data +* :ghissue:`8744`: ConnectionPatch hidden by plots +* :ghissue:`14950`: plt.ioff() not supressing figure generation +* :ghissue:`14959`: Typo in Docs +* :ghissue:`14902`: from matplotlib import animation UnicodeDecodeError +* :ghissue:`14897`: New yticks behavior in 3.1.1 vs 3.1.0 +* :ghissue:`14811`: How to save hexbin binned data in a text file. +* :ghissue:`14551`: Non functional API links break docs builds downstream +* :ghissue:`14720`: Line2D properties should state units +* :ghissue:`10891`: Toolbar icons too large in PyQt5 (Qt5Agg backend) +* :ghissue:`14675`: Heatmaps are being truncated when using with seaborn +* :ghissue:`14487`: eventplot sorts np.array positions, but not list positions +* :ghissue:`14547`: Changing mplstyle: axes.titlelocation causes Bad Key error +* :ghissue:`10410`: eventplot alters data in some cases diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.1.3.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.1.3.rst new file mode 100644 index 0000000000000000000000000000000000000000..b4706569df02358ee64ab8f447c7f487dc15fd20 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.1.3.rst @@ -0,0 +1,87 @@ +.. _github-stats-3-1-3: + +GitHub statistics for 3.1.3 (Feb 03, 2020) +========================================== + +GitHub statistics for 2019/11/05 (tag: v3.1.2) - 2020/02/03 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 7 issues and merged 45 pull requests. +The full list can be seen `on GitHub `__ + +The following 13 authors contributed 125 commits. + +* Antony Lee +* David Stansby +* Elliott Sales de Andrade +* hannah +* Jody Klymak +* MeeseeksMachine +* Nelle Varoquaux +* Nikita Kniazev +* Paul Ivanov +* SamSchott +* Steven G. Johnson +* Thomas A Caswell +* Tim Hoffmann + +GitHub issues and pull requests: + +Pull Requests (45): + +* :ghpull:`16382`: Backport PR #16379 on branch v3.1.x (FIX: catch on message content, not module) +* :ghpull:`16362`: Backport PR #16347: FIX: catch warnings from pandas in cbook._check_1d +* :ghpull:`16356`: Backport PR #16330 on branch v3.1.x (Clearer signal handling) +* :ghpull:`16330`: Clearer signal handling +* :ghpull:`16348`: Backport PR #16255 on branch v3.1.x (Move version info to sidebar) +* :ghpull:`16345`: Backport PR #16298 on branch v3.1.x (Don't recursively call draw_idle when updating artists at draw time.) +* :ghpull:`16298`: Don't recursively call draw_idle when updating artists at draw time. +* :ghpull:`16322`: Backport PR #16250: Fix zerolen intersect +* :ghpull:`16320`: Backport PR #16311 on branch v3.1.x (don't override non-Python signal handlers) +* :ghpull:`16311`: don't override non-Python signal handlers +* :ghpull:`16250`: Fix zerolen intersect +* :ghpull:`16237`: Backport PR #16235 on branch v3.1.x (FIX: AttributeError in TimerBase.start) +* :ghpull:`16235`: FIX: AttributeError in TimerBase.start +* :ghpull:`16208`: Backport PR #15556 on branch v3.1.x (Fix test suite compat with ghostscript 9.50.) +* :ghpull:`16213`: Backport PR #15763 on branch v3.1.x (Skip webagg test if tornado is not available.) +* :ghpull:`16167`: Backport PR #16166 on branch v3.1.x (Add badge for citing 3.1.2) +* :ghpull:`16166`: Add badge for citing 3.1.2 +* :ghpull:`16144`: Backport PR #16053 on branch v3.1.x (Fix v_interval setter) +* :ghpull:`16053`: Fix v_interval setter +* :ghpull:`16136`: Backport PR #16112 on branch v3.1.x (CI: Fail when failed to install dependencies) +* :ghpull:`16131`: Backport PR #16126 on branch v3.1.x (TST: test_fork: Missing join) +* :ghpull:`16126`: TST: test_fork: Missing join +* :ghpull:`16091`: Backport PR #16086 on branch v3.1.x (FIX: use supported attribute to check pillow version) +* :ghpull:`16040`: Backport PR #16031 on branch v3.1.x (Fix docstring of hillshade().) +* :ghpull:`16032`: Backport PR #16028 on branch v3.1.x (Prevent FigureCanvasQT_draw_idle recursively calling itself.) +* :ghpull:`16028`: Prevent FigureCanvasQT_draw_idle recursively calling itself. +* :ghpull:`16020`: Backport PR #16007 on branch v3.1.x (Fix search on nested pages) +* :ghpull:`16018`: Backport PR #15735 on branch v3.1.x (Cleanup some mplot3d docstrings.) +* :ghpull:`16007`: Fix search on nested pages +* :ghpull:`15957`: Backport PR #15953 on branch v3.1.x (Update donation link) +* :ghpull:`15763`: Skip webagg test if tornado is not available. +* :ghpull:`15881`: Backport PR #15859 on branch v3.1.x (Doc: Move search field into nav bar) +* :ghpull:`15863`: Backport PR #15244 on branch v3.1.x: Change documentation format of rcParams defaults +* :ghpull:`15859`: Doc: Move search field into nav bar +* :ghpull:`15860`: Backport PR #15851 on branch v3.1.x (ffmpeg is available on default ubuntu packages now) +* :ghpull:`15851`: ffmpeg is available on default ubuntu packages now. +* :ghpull:`15843`: Backport PR #15737 on branch v3.1.x (Fix env override in WebAgg backend test.) +* :ghpull:`15760`: Backport PR #15752 on branch v3.1.x (Update boxplot/violinplot faq.) +* :ghpull:`15757`: Backport PR #15751 on branch v3.1.x (Modernize FAQ entry for plt.show().) +* :ghpull:`15735`: Cleanup some mplot3d docstrings. +* :ghpull:`15753`: Backport PR #15661 on branch v3.1.x (Document scope of 3D scatter depthshading.) +* :ghpull:`15741`: Backport PR #15729 on branch v3.1.x (Catch correct parse errror type for dateutil >= 2.8.1) +* :ghpull:`15729`: Catch correct parse errror type for dateutil >= 2.8.1 +* :ghpull:`15737`: Fix env override in WebAgg backend test. +* :ghpull:`15244`: Change documentation format of rcParams defaults + +Issues (7): + +* :ghissue:`16294`: BUG: Interactive mode slow +* :ghissue:`15842`: Path.intersects_path returns True when it shouldn't +* :ghissue:`16163`: libpng error: Read Error when using matplotlib after setting usetex=True +* :ghissue:`15960`: v3.1.2 - test suite "frozen" after it finishes +* :ghissue:`16083`: Pillow 7.0.0 Support +* :ghissue:`15481`: Recursion error +* :ghissue:`15717`: Move search field into nav bar diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.2.0.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.2.0.rst new file mode 100644 index 0000000000000000000000000000000000000000..5fd75f7c57d0e0097c3a4083b03c162d0e6c8678 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.2.0.rst @@ -0,0 +1,1150 @@ +.. _github-stats-3-2-0: + +GitHub statistics for 3.2.0 (Mar 04, 2020) +========================================== + +GitHub statistics for 2019/05/18 (tag: v3.1.0) - 2020/03/04 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 125 issues and merged 839 pull requests. +The full list can be seen `on GitHub `__ + +The following 164 authors contributed 3455 commits. + +* Abhinav Sagar +* Abhinuv Nitin Pitale +* Adam Gomaa +* Akshay Nair +* Alex Rudy +* Alexander Rudy +* Antony Lee +* Ao Liu (frankliuao) +* Ardie Orden +* Ashley Whetter +* Ben Root +* Benjamin Bengfort +* Benjamin Congdon +* Bharat123rox +* Bingyao Liu +* Brigitta Sipocz +* Bruno Pagani +* brut +* Carsten +* Carsten Schelp +* chaoyi1 +* Cho Yin Yong +* Chris Barnes +* Christer Jensen +* Christian Brodbeck +* Christoph Pohl +* chuanzhu xu +* Colin +* Cong Ma +* dabana +* DanielMatu +* David Chudzicki +* David Stansby +* Deng Tian +* depano.carlos@gmail.com +* djdt +* donchanee +* Dora Fraeman Caswell +* Elan Ernest +* Elliott Sales de Andrade +* Emlyn Price +* Eric Firing +* Eric Wieser +* Federico Ariza +* Filipe Fernandes +* fourpoints +* fredrik-1 +* Gazing +* Greg Lucas +* hannah +* Harshal Prakash Patankar +* Ian Hincks +* Ian Thomas +* ilopata1 +* ImportanceOfBeingErnest +* Jacobson Okoro +* James A. Bednar +* Jarrod Millman +* Javad +* jb-leger +* Jean-Benoist Leger +* jfbu +* joaonsg +* Jody Klymak +* Joel Frederico +* Johannes H. Jensen +* Johnny Gill +* Jonas Camillus Jeppesen +* Jorge Moraleda +* Joscha Reimer +* Joseph Albert +* Jouni K. Seppänen +* Joy Bhalla +* Juanjo Bazán +* Julian Mehne +* kolibril13 +* krishna katyal +* ksunden +* Kyle Sunden +* Larry Bradley +* lepuchi +* luftek +* Maciej Dems +* Maik Riechert +* Marat K +* Mark Wolf +* Mark Wolfman +* Matte +* Matthias Bussonnier +* Matthias Geier +* MatthieuDartiailh +* Max Chen +* Max Humber +* Max Shinn +* MeeseeksMachine +* Michael Droettboom +* Mingkai Dong +* MinRK +* miquelastein +* Molly Rossow +* Nathan Goldbaum +* nathan78906 +* Nelle Varoquaux +* Nick White +* Nicolas Courtemanche +* Nikita Kniazev +* njwhite +* O. Castany +* Oliver Natt +* Olivier +* Om Sitapara +* omsitapara23 +* Oriol (Prodesk) +* Oriol Abril +* Patrick Feiring +* Patrick Shriwise +* PatrickFeiring +* Paul +* Paul Hobson +* Paul Hoffman +* Paul Ivanov +* Peter Schutt +* pharshalp +* Phil Elson +* Philippe Pinard +* Rebecca W Perry +* ResidentMario +* Richard Ji-Cathriner +* RoryIAngus +* Ryan May +* S. Fukuda +* Samesh +* Samesh Lakhotia +* sasoripathos +* SBCV +* Sebastian Bullinger +* Sergey Royz +* Siddhesh Poyarekar +* Simon Legner +* SojiroFukuda +* Steve Dower +* Taras +* Ted Drain +* teddyrendahl +* Thomas A Caswell +* Thomas Hisch +* Thomas Robitaille +* Till Hoffmann +* tillahoffmann +* Tim Hoffmann +* Tom Flannaghan +* Travis CI +* V. Armando Solé +* Vincent L.M. Mazoyer +* Viraj Mohile +* Wafa Soofi +* Warren Weckesser +* y1thof +* yeo +* Yong Cho Yin +* Yuya +* Zhili (Jerry) Pan +* zhoubecky +* Zulko + +GitHub issues and pull requests: + +Pull Requests (839): + +* :ghpull:`16626`: Updated Readme + Setup.py for PyPa +* :ghpull:`16627`: ci: Restore nuget install step on Azure for v3.2.x. +* :ghpull:`16625`: v3.2.x: Make Azure use local FreeType. +* :ghpull:`16622`: Backport PR #16613 on branch v3.2.x (Fix edge-case in preprocess_data, if label_namer is optional and unset.) +* :ghpull:`16613`: Fix edge-case in preprocess_data, if label_namer is optional and unset. +* :ghpull:`16612`: Backport PR #16605: CI: tweak the vm images we use on azure +* :ghpull:`16611`: Backport PR #16585 on branch v3.2.x (Fix _preprocess_data for Py3.9.) +* :ghpull:`16605`: CI: tweak the vm images we use on azure +* :ghpull:`16585`: Fix _preprocess_data for Py3.9. +* :ghpull:`16541`: Merge pull request #16404 from jklymak/fix-add-base-symlognorm +* :ghpull:`16542`: Backport PR #16006: Ignore pos in StrCategoryFormatter.__call__ to di… +* :ghpull:`16543`: Backport PR #16532: Document default value of save_count parameter in… +* :ghpull:`16532`: Document default value of save_count parameter in FuncAnimation +* :ghpull:`16526`: Backport PR #16480 on v.3.2.x: Re-phrase doc for bottom kwarg to hist +* :ghpull:`16404`: FIX: add base kwarg to symlognor +* :ghpull:`16518`: Backport PR #16502 on branch v3.2.x (Document theta getters/setters) +* :ghpull:`16519`: Backport PR #16513 on branch v3.2.x (Add more FreeType tarball hashes.) +* :ghpull:`16513`: Add more FreeType tarball hashes. +* :ghpull:`16502`: Document theta getters/setters +* :ghpull:`16506`: Backport PR #16505 on branch v3.2.x (Add link to blog to front page) +* :ghpull:`16505`: Add link to blog to front page +* :ghpull:`16480`: Re-phrase doc for bottom kwarg to hist +* :ghpull:`16494`: Backport PR #16490 on branch v3.2.x (Fix some typos on the front page) +* :ghpull:`16489`: Backport PR #16272 on branch v3.2.x (Move mplot3d autoregistration api changes to 3.2.) +* :ghpull:`16490`: Fix some typos on the front page +* :ghpull:`16465`: Backport PR #16450 on branch v3.2.x (Fix interaction between sticky_edges and shared axes.) +* :ghpull:`16466`: Backport PR #16392: FIX colorbars for Norms that do not have a scale. +* :ghpull:`16392`: FIX colorbars for Norms that do not have a scale. +* :ghpull:`16450`: Fix interaction between sticky_edges and shared axes. +* :ghpull:`16453`: Backport PR #16452 on branch v3.2.x (Don't make InvertedLogTransform inherit from deprecated base class.) +* :ghpull:`16452`: Don't make InvertedLogTransform inherit from deprecated base class. +* :ghpull:`16436`: Backport PR #16435 on branch v3.2.x (Reword intro to colors api docs.) +* :ghpull:`16435`: Reword intro to colors api docs. +* :ghpull:`16399`: Backport PR #16396 on branch v3.2.x (font_manager docs cleanup.) +* :ghpull:`16396`: font_manager docs cleanup. +* :ghpull:`16397`: Backport PR #16394 on branch v3.2.x (Mark inkscape 1.0 as unsupported (at least for now).) +* :ghpull:`16394`: Mark inkscape 1.0 as unsupported (at least for now). +* :ghpull:`16286`: Fix cbars for different norms +* :ghpull:`16385`: Backport PR #16226 on branch v3.2.x: Reorganize intro section on main page +* :ghpull:`16383`: Backport PR #16379 on branch v3.2.x (FIX: catch on message content, not module) +* :ghpull:`16226`: Reorganize intro section on main page +* :ghpull:`16364`: Backport PR #16344 on branch v3.2.x (Cast vmin/vmax to floats before nonsingular-expanding them.) +* :ghpull:`16344`: Cast vmin/vmax to floats before nonsingular-expanding them. +* :ghpull:`16360`: Backport PR #16347 on branch v3.2.x (FIX: catch warnings from pandas in cbook._check_1d) +* :ghpull:`16357`: Backport PR #16330 on branch v3.2.x (Clearer signal handling) +* :ghpull:`16349`: Backport PR #16255 on branch v3.2.x (Move version info to sidebar) +* :ghpull:`16346`: Backport PR #16298 on branch v3.2.x (Don't recursively call draw_idle when updating artists at draw time.) +* :ghpull:`16331`: Backport PR #16308 on branch v3.2.x (CI: Use Ubuntu Bionic compatible package names) +* :ghpull:`16332`: Backport PR #16308 on v3.2.x: CI: Use Ubuntu Bionic compatible package names +* :ghpull:`16324`: Backport PR #16323 on branch v3.2.x (Add sphinx doc for Axis.axis_name.) +* :ghpull:`16325`: Backport PR #15462 on v3.2.x: Simplify azure setup. +* :ghpull:`16323`: Add sphinx doc for Axis.axis_name. +* :ghpull:`16321`: Backport PR #16311 on branch v3.2.x (don't override non-Python signal handlers) +* :ghpull:`16308`: CI: Use Ubuntu Bionic compatible package names +* :ghpull:`16306`: Backport PR #16300 on branch v3.2.x (Don't default to negative radii in polar plot.) +* :ghpull:`16305`: Backport PR #16250 on branch v3.2.x (Fix zerolen intersect) +* :ghpull:`16300`: Don't default to negative radii in polar plot. +* :ghpull:`16278`: Backport PR #16273 on branch v3.2.x (DOC: Changing the spelling of co-ordinates.) +* :ghpull:`16260`: Backport PR #16259 on branch v3.2.x (TST: something changed in pytest 5.3.3 that breaks our qt fixtures) +* :ghpull:`16259`: TST: something changed in pytest 5.3.3 that breaks our qt fixtures +* :ghpull:`16238`: Backport PR #16235 on branch v3.2.x (FIX: AttributeError in TimerBase.start) +* :ghpull:`16211`: DOC: ValidateInterval was deprecated in 3.2, not 3.1 +* :ghpull:`16224`: Backport PR #16223 on branch v3.2.x (Added DNA Features Viewer description + screenshot in docs/thirdparty/) +* :ghpull:`16223`: Added DNA Features Viewer description + screenshot in docs/thirdparty/ +* :ghpull:`16222`: Backport PR #16212 on branch v3.2.x (Fix deprecation from #13544) +* :ghpull:`16212`: Fix deprecation from #13544 +* :ghpull:`16207`: Backport PR #16189 on branch v3.2.x (MNT: set default canvas when un-pickling) +* :ghpull:`16189`: MNT: set default canvas when un-pickling +* :ghpull:`16179`: Backport PR #16175: FIX: ignore axes that aren't visible +* :ghpull:`16175`: FIX: ignore axes that aren't visible +* :ghpull:`16168`: Backport PR #16166 on branch v3.2.x (Add badge for citing 3.1.2) +* :ghpull:`16148`: Backport PR #16128 on branch v3.2.x (CI: Do not use nbformat 5.0.0/5.0.1 for testing) +* :ghpull:`16145`: Backport PR #16053 on branch v3.2.x (Fix v_interval setter) +* :ghpull:`16128`: CI: Do not use nbformat 5.0.0/5.0.1 for testing +* :ghpull:`16135`: Backport PR #16112 on branch v3.2.x (CI: Fail when failed to install dependencies) +* :ghpull:`16132`: Backport PR #16126 on branch v3.2.x (TST: test_fork: Missing join) +* :ghpull:`16124`: Backport PR #16105 on branch v3.2.x (Fix legend dragging.) +* :ghpull:`16122`: Backport PR #16113 on branch v3.2.x (Renderer Graphviz inheritance diagrams as svg) +* :ghpull:`16105`: Fix legend dragging. +* :ghpull:`16113`: Renderer Graphviz inheritance diagrams as svg +* :ghpull:`16112`: CI: Fail when failed to install dependencies +* :ghpull:`16119`: Backport PR #16065 on branch v3.2.x (Nicer formatting of community aspects on front page) +* :ghpull:`16074`: Backport PR #16061 on branch v3.2.x (Fix deprecation message for axes_grid1.colorbar.) +* :ghpull:`16093`: Backport PR #16079 on branch v3.2.x (Fix restuctured text formatting) +* :ghpull:`16094`: Backport PR #16080 on branch v3.2.x (Cleanup docstrings in backend_bases.py) +* :ghpull:`16086`: FIX: use supported attribute to check pillow version +* :ghpull:`16084`: Backport PR #16077 on branch v3.2.x (Fix some typos) +* :ghpull:`16077`: Fix some typos +* :ghpull:`16079`: Fix restuctured text formatting +* :ghpull:`16080`: Cleanup docstrings in backend_bases.py +* :ghpull:`16061`: Fix deprecation message for axes_grid1.colorbar. +* :ghpull:`16006`: Ignore pos in StrCategoryFormatter.__call__ to display correct label in the preview window +* :ghpull:`16056`: Backport PR #15864 on branch v3.2.x ([Add the info of 'sviewgui' in thirdparty package]) +* :ghpull:`15864`: Add 'sviewgui' to list of thirdparty packages +* :ghpull:`16055`: Backport PR #16037 on branch v3.2.x (Doc: use empty ScalarMappable for colorbars with no associated image.) +* :ghpull:`16054`: Backport PR #16048 on branch v3.2.x (Document that colorbar() takes a label kwarg.) +* :ghpull:`16037`: Doc: use empty ScalarMappable for colorbars with no associated image. +* :ghpull:`16048`: Document that colorbar() takes a label kwarg. +* :ghpull:`16042`: Backport PR #16031 on branch v3.2.x (Fix docstring of hillshade().) +* :ghpull:`16033`: Backport PR #16028 on branch v3.2.x (Prevent FigureCanvasQT_draw_idle recursively calling itself.) +* :ghpull:`16021`: Backport PR #16007 on branch v3.2.x (Fix search on nested pages) +* :ghpull:`16019`: Backport PR #15735 on branch v3.2.x (Cleanup some mplot3d docstrings.) +* :ghpull:`15987`: Backport PR #15886 on branch v3.2.x (Fix Annotation using different units and different coords on x/y.) +* :ghpull:`15886`: Fix Annotation using different units and different coords on x/y. +* :ghpull:`15984`: Backport PR #15970 on branch v3.2.x (Process clip paths the same way as regular Paths.) +* :ghpull:`15970`: Process clip paths the same way as regular Paths. +* :ghpull:`15963`: Backport PR #15937 on branch v3.2.x (Don't hide exceptions in FontManager.addfont.) +* :ghpull:`15956`: Backport PR #15901 on branch v3.2.x (Update backend_nbagg for removal of Gcf._activeQue.) +* :ghpull:`15937`: Don't hide exceptions in FontManager.addfont. +* :ghpull:`15959`: Backport PR #15953 on branch v3.2.x (Update donation link) +* :ghpull:`15901`: Update backend_nbagg for removal of Gcf._activeQue. +* :ghpull:`15954`: Backport PR #15914 on branch v3.2.x (Example for sigmoid function with horizontal lines) +* :ghpull:`15914`: Example for sigmoid function with horizontal lines +* :ghpull:`15930`: Backport PR #15925 on branch v3.2.x (Optimize setting units to None when they're already None.) +* :ghpull:`15925`: Optimize setting units to None when they're already None. +* :ghpull:`15915`: Backport PR #15903 on branch v3.2.x (Correctly handle non-affine transData in Collection.get_datalim.) +* :ghpull:`15903`: Correctly handle non-affine transData in Collection.get_datalim. +* :ghpull:`15908`: Backport PR #15857 on branch v3.2.x (LassoSelection shouldn't useblit on canvas not supporting blitting.) +* :ghpull:`15857`: LassoSelection shouldn't useblit on canvas not supporting blitting. +* :ghpull:`15905`: Backport PR #15763 on branch v3.2.x (Skip webagg test if tornado is not available.) +* :ghpull:`15882`: Backport PR #15859 on branch v3.2.x (Doc: Move search field into nav bar) +* :ghpull:`15868`: Backport PR #15848 on branch v3.2.x: Cleanup environment variables FAQ +* :ghpull:`15872`: Backport PR #15869 on branch v3.2.x (Update markers docs.) +* :ghpull:`15869`: Update markers docs. +* :ghpull:`15867`: Backport PR #15789 on branch v3.2.x (Cleanup xticks/yticks docstrings.) +* :ghpull:`15870`: Backport PR #15865 on branch v3.2.x (Fix a typo) +* :ghpull:`15871`: Backport PR #15824 on branch v3.2.x (Document doc style for default values) +* :ghpull:`15824`: Document doc style for default values +* :ghpull:`15865`: Fix a typo +* :ghpull:`15789`: Cleanup xticks/yticks docstrings. +* :ghpull:`15862`: Backport PR #15851 on branch v3.2.x (ffmpeg is available on default ubuntu packages now) +* :ghpull:`15848`: Cleanup environment variables FAQ. +* :ghpull:`15844`: Backport PR #15841 on branch v3.2.x (DOC: specify the expected shape in the Collection.set_offset) +* :ghpull:`15841`: DOC: specify the expected shape in the Collection.set_offset +* :ghpull:`15837`: Backport PR #15799 on branch v3.2.x (Improve display of author names on PDF titlepage of matplotlib own docs) +* :ghpull:`15799`: Improve display of author names on PDF titlepage of matplotlib own docs +* :ghpull:`15831`: Backport PR #15829 on branch v3.2.x (In C extensions, use FutureWarning, not DeprecationWarning.) +* :ghpull:`15829`: In C extensions, use FutureWarning, not DeprecationWarning. +* :ghpull:`15818`: Backport PR #15619 on branch v3.2.x (Improve zorder demo) +* :ghpull:`15819`: Backport PR #15601 on branch v3.2.x (Fix FontProperties conversion to/from strings) +* :ghpull:`15601`: Fix FontProperties conversion to/from strings +* :ghpull:`15619`: Improve zorder demo +* :ghpull:`15810`: Backport PR #15809 on branch v3.2.x (Exclude artists from legend using label attributte) +* :ghpull:`15809`: Exclude artists from legend using label attributte +* :ghpull:`15808`: Backport PR #15513 on branch v3.2.x (Separate plots using #### in make_room_for_ylabel_using_axesgrid.py) +* :ghpull:`15513`: Separate plots using #### in make_room_for_ylabel_using_axesgrid.py +* :ghpull:`15807`: Backport PR #15791 on branch v3.2.x (Cleanup backend_bases docstrings.) +* :ghpull:`15791`: Cleanup backend_bases docstrings. +* :ghpull:`15803`: Backport PR #15795 on branch v3.2.x (Remove incorrect statement re2: colorbars in image tutorial.) +* :ghpull:`15795`: Remove incorrect statement re: colorbars in image tutorial. +* :ghpull:`15794`: Backport PR #15793 on branch v3.2.x (fix a couple typos in tutorials) +* :ghpull:`15793`: fix a couple typos in tutorials +* :ghpull:`15774`: Backport PR #15748 on branch v3.2.x (Fix incorrect macro in FT2Font setup.) +* :ghpull:`15748`: Fix incorrect macro in FT2Font setup. +* :ghpull:`15759`: Backport PR #15751 on branch v3.2.x (Modernize FAQ entry for plt.show().) +* :ghpull:`15762`: Backport PR #15752 on branch v3.2.x (Update boxplot/violinplot faq.) +* :ghpull:`15755`: Backport PR #15661 on branch v3.2.x (Document scope of 3D scatter depthshading.) +* :ghpull:`15742`: Backport PR #15729 on branch v3.2.x (Catch correct parse error type for dateutil >= 2.8.1) +* :ghpull:`15738`: Backport PR #15737 on branch v3.2.x (Fix env override in WebAgg backend test.) +* :ghpull:`15724`: Backport PR #15718 on branch v3.2.x (Update donation link) +* :ghpull:`15716`: Backport PR #15683 on branch v3.2.x (Cleanup dates.py docstrings.) +* :ghpull:`15683`: Cleanup dates.py docstrings. +* :ghpull:`15688`: Backport PR #15682 on branch v3.2.x (Make histogram_bin_edges private.) +* :ghpull:`15682`: Make histogram_bin_edges private. +* :ghpull:`15666`: Backport PR #15649 on branch v3.2.x (Fix searchindex.js loading when ajax fails (because e.g. CORS in embedded iframes)) +* :ghpull:`15669`: Backport PR #15654 on branch v3.2.x (Fix some broken links.) +* :ghpull:`15660`: Backport PR #15647 on branch v3.2.x (Update some links) +* :ghpull:`15653`: Backport PR #15623 on branch v3.2.x (Docstring for Artist.mouseover) +* :ghpull:`15623`: Docstring for Artist.mouseover +* :ghpull:`15634`: Backport PR #15626 on branch v3.2.x (Note minimum supported version for fontconfig.) +* :ghpull:`15633`: Backport PR #15620 on branch v3.2.x (TST: Increase tolerance of some tests for aarch64) +* :ghpull:`15626`: Note minimum supported version for fontconfig. +* :ghpull:`15632`: Backport PR #15627 on branch v3.2.x (Make it easier to test various animation writers in examples.) +* :ghpull:`15620`: TST: Increase tolerance of some tests for aarch64 +* :ghpull:`15627`: Make it easier to test various animation writers in examples. +* :ghpull:`15618`: Backport PR #15613 on branch v3.2.x (Revert "Don't bother with manually resizing the Qt main window.") +* :ghpull:`15613`: Revert "Don't bother with manually resizing the Qt main window." +* :ghpull:`15593`: Backport PR #15590 on branch v3.2.x (Rename numpy to NumPy in docs.) +* :ghpull:`15590`: Rename numpy to NumPy in docs. +* :ghpull:`15588`: Backport PR #15478 on branch v3.2.x (Make ConciseDateFormatter obey timezone) +* :ghpull:`15478`: Make ConciseDateFormatter obey timezone +* :ghpull:`15583`: Backport PR #15512 on branch v3.2.x +* :ghpull:`15584`: Backport PR #15579 on branch v3.2.x (Remove matplotlib.sphinxext.tests from __init__.py) +* :ghpull:`15579`: Remove matplotlib.sphinxext.tests from __init__.py +* :ghpull:`15577`: Backport PR #14705 on branch v3.2.x (Correctly size non-ASCII characters in agg backend.) +* :ghpull:`14705`: Correctly size non-ASCII characters in agg backend. +* :ghpull:`15572`: Backport PR #15452 on branch v3.2.x (Improve example for tick formatters) +* :ghpull:`15570`: Backport PR #15561 on branch v3.2.x (Update thirdparty scalebar) +* :ghpull:`15452`: Improve example for tick formatters +* :ghpull:`15545`: Backport PR #15429 on branch v3.2.x (Fix OSX build on azure) +* :ghpull:`15544`: Backport PR #15537 on branch v3.2.x (Add a third party package in the doc: matplotlib-scalebar) +* :ghpull:`15561`: Update thirdparty scalebar +* :ghpull:`15567`: Backport PR #15562 on branch v3.2.x (Improve docsting of AxesImage) +* :ghpull:`15562`: Improve docsting of AxesImage +* :ghpull:`15565`: Backport PR #15556 on branch v3.2.x (Fix test suite compat with ghostscript 9.50.) +* :ghpull:`15556`: Fix test suite compat with ghostscript 9.50. +* :ghpull:`15560`: Backport PR #15553 on branch v3.2.x (DOC: add cache-buster query string to css path) +* :ghpull:`15552`: Backport PR #15528 on branch v3.2.x (Declutter home page) +* :ghpull:`15554`: Backport PR #15523 on branch v3.2.x (numpydoc AxesImage) +* :ghpull:`15523`: numpydoc AxesImage +* :ghpull:`15549`: Backport PR #15516 on branch v3.2.x (Add logo like font) +* :ghpull:`15543`: Backport PR #15539 on branch v3.2.x (Small cleanups to backend docs.) +* :ghpull:`15542`: Backport PR #15540 on branch v3.2.x (axisartist tutorial fixes.) +* :ghpull:`15537`: Add a third party package in the doc: matplotlib-scalebar +* :ghpull:`15541`: Backport PR #15533 on branch v3.2.x (Use svg instead of png for website logo) +* :ghpull:`15539`: Small cleanups to backend docs. +* :ghpull:`15540`: axisartist tutorial fixes. +* :ghpull:`15538`: Backport PR #15535 on branch v3.2.x (Avoid really long lines in event handling docs.) +* :ghpull:`15535`: Avoid really long lines in event handling docs. +* :ghpull:`15531`: Backport PR #15527 on branch v3.2.x (Clarify imshow() docs concerning scaling and grayscale images) +* :ghpull:`15527`: Clarify imshow() docs concerning scaling and grayscale images +* :ghpull:`15522`: Backport PR #15500 on branch v3.2.x (Improve antialiasing example) +* :ghpull:`15524`: Backport PR #15499 on branch v3.2.x (Do not show path in font table example) +* :ghpull:`15525`: Backport PR #15498 on branch v3.2.x (Simplify matshow example) +* :ghpull:`15498`: Simplify matshow example +* :ghpull:`15499`: Do not show path in font table example +* :ghpull:`15521`: Backport PR #15519 on branch v3.2.x (FIX: fix anti-aliasing zoom bug) +* :ghpull:`15500`: Improve antialiasing example +* :ghpull:`15519`: FIX: fix anti-aliasing zoom bug +* :ghpull:`15510`: Backport PR #15489 on branch v3.2.x (DOC: adding main nav to site) +* :ghpull:`15495`: Backport PR #15486 on branch v3.2.x (Fixes an error in the documentation of Ellipse) +* :ghpull:`15488`: Backport PR #15372 on branch v3.2.x (Add example for drawstyle) +* :ghpull:`15490`: Backport PR #15487 on branch v3.2.x (Fix window not always raised in Qt example) +* :ghpull:`15487`: Fix window not always raised in Qt example +* :ghpull:`15372`: Add example for drawstyle +* :ghpull:`15485`: Backport PR #15454 on branch v3.2.x (Rewrite Anscombe's quartet example) +* :ghpull:`15483`: Backport PR #15480 on branch v3.2.x (Fix wording in [packages] section of setup.cfg) +* :ghpull:`15454`: Rewrite Anscombe's quartet example +* :ghpull:`15480`: Fix wording in [packages] section of setup.cfg +* :ghpull:`15477`: Backport PR #15464 on branch v3.2.x (Remove unused code (remainder from #15453)) +* :ghpull:`15471`: Backport PR #15460 on branch v3.2.x (Fix incorrect value check in axes_grid.) +* :ghpull:`15456`: Backport PR #15453 on branch v3.2.x (Improve example for tick locators) +* :ghpull:`15457`: Backport PR #15450 on branch v3.2.x (API: rename DivergingNorm to TwoSlopeNorm) +* :ghpull:`15450`: API: rename DivergingNorm to TwoSlopeNorm +* :ghpull:`15434`: In imsave, let pnginfo have precedence over metadata. +* :ghpull:`15445`: Backport PR #15439 on branch v3.2.x (DOC: mention discourse main page) +* :ghpull:`15425`: Backport PR #15422 on branch v3.2.x (FIX: typo in attribute lookup) +* :ghpull:`15449`: DOC: fix build +* :ghpull:`15429`: Fix OSX build on azure +* :ghpull:`15420`: Backport PR #15380 on branch v3.2.x (Update docs of BoxStyle) +* :ghpull:`15380`: Update docs of BoxStyle +* :ghpull:`15300`: CI: use python -m to make sure we are using the pip/pytest we want +* :ghpull:`15414`: Backport PR #15413 on branch v3.2.x (catch OSError instead of FileNotFoundError in _get_executable_info to resolve #15399) +* :ghpull:`15413`: catch OSError instead of FileNotFoundError in _get_executable_info to resolve #15399 +* :ghpull:`15406`: Backport PR #15347 on branch v3.2.x (Fix axes.hist bins units) +* :ghpull:`15405`: Backport PR #15391 on branch v3.2.x (Increase fontsize in inheritance graphs) +* :ghpull:`15347`: Fix axes.hist bins units +* :ghpull:`15391`: Increase fontsize in inheritance graphs +* :ghpull:`15389`: Backport PR #15379 on branch v3.2.x (Document formatting strings in the docs) +* :ghpull:`15379`: Document formatting strings in the docs +* :ghpull:`15386`: Backport PR #15385 on branch v3.2.x (Reword hist() doc.) +* :ghpull:`15385`: Reword hist() doc. +* :ghpull:`15377`: Backport PR #15357 on branch v3.2.x (Add 'step' and 'barstacked' to histogram_histtypes demo) +* :ghpull:`15357`: Add 'step' and 'barstacked' to histogram_histtypes demo +* :ghpull:`15366`: Backport PR #15364 on branch v3.2.x (DOC: fix typo in colormap docs) +* :ghpull:`15362`: Backport PR #15350 on branch v3.2.x (Don't generate double-reversed cmaps ("viridis_r_r", ...).) +* :ghpull:`15360`: Backport PR #15258 on branch v3.2.x (Don't fallback to view limits when autoscale()ing no data.) +* :ghpull:`15350`: Don't generate double-reversed cmaps ("viridis_r_r", ...). +* :ghpull:`15258`: Don't fallback to view limits when autoscale()ing no data. +* :ghpull:`15299`: Backport PR #15296 on branch v3.2.x (Fix typo/bug from 18cecf7) +* :ghpull:`15327`: Backport PR #15326 on branch v3.2.x (List of minimal versions of dependencies) +* :ghpull:`15326`: List of minimal versions of dependencies +* :ghpull:`15317`: Backport PR #15291 on branch v3.2.x (Remove error_msg_qt from backend_qt4.) +* :ghpull:`15316`: Backport PR #15283 on branch v3.2.x (Don't default axes_grid colorbar locator to MaxNLocator.) +* :ghpull:`15291`: Remove error_msg_qt from backend_qt4. +* :ghpull:`15283`: Don't default axes_grid colorbar locator to MaxNLocator. +* :ghpull:`15315`: Backport PR #15308 on branch v3.2.x (Doc: Add close event to list of events) +* :ghpull:`15308`: Doc: Add close event to list of events +* :ghpull:`15312`: Backport PR #15307 on branch v3.2.x (DOC: center footer) +* :ghpull:`15307`: DOC: center footer +* :ghpull:`15276`: Backport PR #15271 on branch v3.2.x (Fix font weight validation) +* :ghpull:`15279`: Backport PR #15252 on branch v3.2.x (Mention labels and milestones in PR review guidelines) +* :ghpull:`15252`: Mention labels and milestones in PR review guidelines +* :ghpull:`15268`: Backport PR #15266 on branch v3.2.x (Embedding in Tk example: Fix toolbar being clipped.) +* :ghpull:`15269`: Backport PR #15267 on branch v3.2.x (added multi-letter example to mathtext tutorial) +* :ghpull:`15267`: added multi-letter example to mathtext tutorial +* :ghpull:`15266`: Embedding in Tk example: Fix toolbar being clipped. +* :ghpull:`15243`: Move some new API changes to the correct place +* :ghpull:`15245`: Fix incorrect calls to warn_deprecated. +* :ghpull:`15239`: Composite against white, not the savefig.facecolor rc, in print_jpeg. +* :ghpull:`15227`: contains_point() docstring fixes +* :ghpull:`15242`: Cleanup widgets docstrings. +* :ghpull:`14889`: Support pixel-by-pixel alpha in imshow. +* :ghpull:`14928`: Logit scale nonsingular +* :ghpull:`14998`: Fix nonlinear spine positions & inline Spine._calc_offset_transform into get_spine_transform. +* :ghpull:`15231`: Doc: Do not write default for non-existing rcParams +* :ghpull:`15222`: Cleanup projections/__init__.py. +* :ghpull:`15228`: Minor docstring style cleanup +* :ghpull:`15237`: Cleanup widgets.py. +* :ghpull:`15229`: Doc: Fix Bbox and BboxBase links +* :ghpull:`15235`: Kill FigureManagerTk._num. +* :ghpull:`15234`: Drop mention of msinttypes in Windows build. +* :ghpull:`15224`: Avoid infinite loop when switching actions in qt backend. +* :ghpull:`15230`: Doc: Remove hard-documented rcParams defaults +* :ghpull:`15149`: pyplot.style.use() to accept pathlib.Path objects as arguments +* :ghpull:`15220`: Correctly format floats passed to pgf backend. +* :ghpull:`15216`: Update docstrings of contains_point(s) methods +* :ghpull:`15209`: Exclude s-g generated files from flake8 check. +* :ghpull:`15204`: PEP8ify some variable names. +* :ghpull:`15196`: Force html4 writer for sphinx 2 +* :ghpull:`13544`: Improve handling of subplots spanning multiple gridspec cells. +* :ghpull:`15194`: Trivial style fixes. +* :ghpull:`15202`: Deprecate the renderer parameter to Figure.tight_layout. +* :ghpull:`15195`: Fix integers being passed as length to quiver3d. +* :ghpull:`15180`: Add some more internal links to 3.2.0 what's new +* :ghpull:`13510`: Change Locator MAXTICKS checking to emitting a log at WARNING level. +* :ghpull:`15184`: Mark missing_references extension as parallel read safe +* :ghpull:`15150`: Autodetect whether pgf can use \includegraphics[interpolate]. +* :ghpull:`15163`: 3.2.0 API changes page +* :ghpull:`15176`: What's new for 3.2.0 +* :ghpull:`11947`: Ensure streamplot Euler step is always called when going out of bounds. +* :ghpull:`13702`: Deduplicate methods shared between Container and Artist. +* :ghpull:`15169`: TST: verify warnings fail the test suite +* :ghpull:`14888`: Replace some polar baseline images by check_figures_equal. +* :ghpull:`15027`: More readability improvements on axis3d. +* :ghpull:`15171`: Add useful error message when trying to add Slider to 3DAxes +* :ghpull:`13775`: Doc: Scatter Hist example update +* :ghpull:`15164`: removed a typo +* :ghpull:`15152`: Support for shorthand hex colors. +* :ghpull:`15159`: Follow up on #14424 for docstring +* :ghpull:`14424`: ENH: Add argument size validation to quiver. +* :ghpull:`15137`: DOC: add example to power limit API change note +* :ghpull:`15144`: Improve local page contents CSS +* :ghpull:`15143`: Restore doc references. +* :ghpull:`15124`: Replace parameter lists with square brackets +* :ghpull:`13077`: fix FreeType build on Azure +* :ghpull:`15123`: Improve categorical example +* :ghpull:`15134`: Fix missing references in doc build. +* :ghpull:`13937`: Use PYTHONFAULTHANDLER to switch on the Python fault handler. +* :ghpull:`13452`: Replace axis_artist.AttributeCopier by normal inheritance. +* :ghpull:`15045`: Resize canvas when changing figure size +* :ghpull:`15122`: Fixed app creation in qt5 backend (see #15100) +* :ghpull:`15099`: Add lightsource parameter to bar3d +* :ghpull:`14876`: Inline some afm parsing code. +* :ghpull:`15119`: Deprecate a validator for a deprecated rcParam value. +* :ghpull:`15121`: Fix Stacked bar graph example +* :ghpull:`15113`: Cleanup layout_from_subplotspec. +* :ghpull:`13543`: Remove zip_safe=False flag from setup.py. +* :ghpull:`12860`: ENH: LogLocator: check for correct dimension of subs added +* :ghpull:`14349`: Replace ValidateInterval by simpler specialized validators. +* :ghpull:`14352`: Remove redundant is_landscape kwarg from backend_ps helpers. +* :ghpull:`15087`: Pass gid to renderer +* :ghpull:`14703`: Don't bother with manually resizing the Qt main window. +* :ghpull:`14833`: Reuse TexManager implementation in convert_psfrags. +* :ghpull:`14893`: Update layout.html for sphinx themes +* :ghpull:`15098`: Simplify symlog range determination logic +* :ghpull:`15112`: Cleanup legend() docstring. +* :ghpull:`15108`: Fix doc build and resync matplotlibrc.template with actual defaults. +* :ghpull:`14940`: Fix text kerning calculations and some FT2Font cleanup +* :ghpull:`15082`: Privatize font_manager.JSONEncoder. +* :ghpull:`15106`: Update docs of GridSpec +* :ghpull:`14832`: ENH:made default tick formatter to switch to scientific notation earlier +* :ghpull:`15086`: Style fixes. +* :ghpull:`15073`: Add entry for blume to thirdparty package index +* :ghpull:`15095`: Simplify _png extension by handling file open/close in Python. +* :ghpull:`15092`: MNT: Add test for aitoff-projection +* :ghpull:`15101`: Doc: fix typo in contour doc +* :ghpull:`14624`: Fix axis inversion with loglocator and logitlocator. +* :ghpull:`15088`: Fix more doc references. +* :ghpull:`15063`: Add Comic Neue as a fantasy font. +* :ghpull:`14867`: Propose change to PR merging policy. +* :ghpull:`15068`: Add FontManager.addfont to register fonts at specific paths. +* :ghpull:`13397`: Deprecate axes_grid1.colorbar (in favor of matplotlib's own). +* :ghpull:`14521`: Move required_interactive_framework to canvas class. +* :ghpull:`15083`: Cleanup spines example. +* :ghpull:`14997`: Correctly set formatters and locators on removed shared axis +* :ghpull:`15064`: Fix eps hatching in MacOS Preview +* :ghpull:`15074`: Write all ACCEPTS markers in docstrings as comments. +* :ghpull:`15078`: Clarify docstring of FT2Font.get_glyph_name. +* :ghpull:`15080`: Fix cross-references in API changes < 3.0.0. +* :ghpull:`15072`: Cleanup patheffects. +* :ghpull:`15071`: Cleanup offsetbox.py. +* :ghpull:`15070`: Fix cross-references in API changes < 2.0.0. +* :ghpull:`10691`: Fix for shared axes diverging after setting tick markers +* :ghpull:`15069`: Style fixes for font_manager.py. +* :ghpull:`15067`: Fix cross-references in API changes < 1.0 +* :ghpull:`15061`: Fix cross-references in tutorials and FAQ +* :ghpull:`15060`: Fix cross-references in examples. +* :ghpull:`14957`: Documentation for using ConnectionPatch across Axes with constrained… +* :ghpull:`15053`: Make citation bit of README less wordy +* :ghpull:`15044`: numpydoc set_size_inches docstring +* :ghpull:`15050`: Clarify unnecessary special handling for colons in paths. +* :ghpull:`14797`: DOC: create a Agg figure without pyplot in buffer example +* :ghpull:`14844`: Add citation info to README +* :ghpull:`14884`: Do not allow canvas size to become smaller than MinSize in wx backend… +* :ghpull:`14941`: Improvements to make_icons.py. +* :ghpull:`15048`: DOC: more nitpick follow up +* :ghpull:`15043`: Fix Docs: Don’t warn for unused ignores +* :ghpull:`15025`: Re-write text wrapping logic +* :ghpull:`14840`: Don't assume transform is valid on access to matrix. +* :ghpull:`14862`: Make optional in docstrings optional +* :ghpull:`15028`: Python version conf.py +* :ghpull:`15033`: FIX: un-break nightly wheels on py37 +* :ghpull:`15046`: v3.1.x merge up +* :ghpull:`15015`: Fix bad missing-references.json due to PR merge race condition. +* :ghpull:`14581`: Make logscale bar/hist autolimits more consistents. +* :ghpull:`15034`: Doc fix nitpick +* :ghpull:`14614`: Deprecate {x,y,z}axis_date. +* :ghpull:`14991`: Handle inherited is_separable, has_inverse in transform props detection. +* :ghpull:`15032`: Clarify effect of axis('equal') on explicit data limits +* :ghpull:`15031`: Update docs of GridSpec +* :ghpull:`14106`: Describe FigureManager +* :ghpull:`15024`: Update docs of GridSpecBase +* :ghpull:`14906`: Deprecate some FT2Image methods. +* :ghpull:`14963`: More Axis3D cleanup. +* :ghpull:`15009`: Provide signatures to some C-level classes and methods. +* :ghpull:`14968`: DOC: colormap manipulation tutorial update +* :ghpull:`15006`: Deprecate get/set_*ticks minor positional use +* :ghpull:`14989`: DOC:Update axes documentation +* :ghpull:`14871`: Parametrize determinism tests. +* :ghpull:`14768`: DOC: Enable nitpicky +* :ghpull:`15013`: Matplotlib requires Python 3.6, which in turn requires Mac OS X 10.6+ +* :ghpull:`15012`: Fix typesetting of "GitHub" +* :ghpull:`14954`: Cleanup polar_legend example. +* :ghpull:`14519`: Check parameters of ColorbarBase +* :ghpull:`14942`: Make _classic_test style a tiny patch on top of classic. +* :ghpull:`14988`: pathlibify/fstringify setup/setupext. +* :ghpull:`14511`: Deprecate allowing scalars for fill_between where +* :ghpull:`14493`: Remove deprecated fig parameter form GridSpecBase.get_subplot_params() +* :ghpull:`14995`: Further improve backend tutorial. +* :ghpull:`15000`: Use warnings.warn, not logging.warning, in microseconds locator warning. +* :ghpull:`14990`: Fix nonsensical transform in mixed-mode axes aspect computation. +* :ghpull:`15002`: No need to access filesystem in test_dates.py. +* :ghpull:`14549`: Improve backends documentation +* :ghpull:`14774`: Fix image bbox clip. +* :ghpull:`14978`: Typo fixes in pyplot.py +* :ghpull:`14702`: Don't enlarge toolbar for Qt high-dpi. +* :ghpull:`14922`: Autodetect some transform properties. +* :ghpull:`14962`: Replace inspect.getfullargspec by inspect.signature. +* :ghpull:`14958`: Improve docs of toplevel module. +* :ghpull:`14926`: Save a matrix unpacking/repacking in offsetbox. +* :ghpull:`14961`: Cleanup demo_agg_filter. +* :ghpull:`14924`: Kill the C-level (private) RendererAgg.buffer_rgba, which returns a copy. +* :ghpull:`14946`: Delete virtualenv faq. +* :ghpull:`14944`: Shorten style.py. +* :ghpull:`14931`: Deprecate some obscure rcParam synonyms. +* :ghpull:`14947`: Fix inaccuracy re: backends in intro tutorial. +* :ghpull:`14904`: Fix typo in secondary_axis.py example. +* :ghpull:`14925`: Support passing spine bounds as single tuple. +* :ghpull:`14921`: DOC: Make abbreviation of versus consistent. +* :ghpull:`14739`: Improve indentation of Line2D properties in docstrings. +* :ghpull:`14923`: In examples, prefer buffer_rgba to print_to_buffer. +* :ghpull:`14908`: Make matplotlib.style.available sorted alphabetically. +* :ghpull:`13567`: Deprecate MovieWriterRegistry cache-dirtyness system. +* :ghpull:`14879`: Error out when unsupported kwargs are passed to Scale. +* :ghpull:`14512`: Logit scale, changes in LogitLocator and LogitFormatter +* :ghpull:`12415`: ENH: fig.set_size to allow non-inches units +* :ghpull:`13783`: Deprecate disable_internet. +* :ghpull:`14886`: Further simplify the flow of pdf text output. +* :ghpull:`14894`: Make slowness warning for legend(loc="best") more accurate. +* :ghpull:`14891`: Fix nightly test errors +* :ghpull:`14895`: Fix typos +* :ghpull:`14890`: Remove unused private helper method in mplot3d. +* :ghpull:`14872`: Unify text layout paths. +* :ghpull:`8183`: Allow array alpha for imshow +* :ghpull:`13832`: Vectorize handling of stacked/cumulative in hist(). +* :ghpull:`13630`: Simplify PolarAxes.can_pan. +* :ghpull:`14565`: Rewrite an argument check to _check_getitem +* :ghpull:`14875`: Cleanup afm module docstring. +* :ghpull:`14880`: Fix animation blitting for plots with shared axes +* :ghpull:`14870`: FT2Font.get_char_index never returns None. +* :ghpull:`13463`: Deprecate Locator.autoscale. +* :ghpull:`13724`: ENH: anti-alias down-sampled images +* :ghpull:`14848`: Clearer error message for plt.axis() +* :ghpull:`14660`: colorbar(label=None) should give an empty label +* :ghpull:`14654`: Cleanup of docstrings of scales +* :ghpull:`14868`: Update bar stacked example to directly manipulate axes. +* :ghpull:`14749`: Fix get_canvas_width_height() for pgf backend. +* :ghpull:`14776`: Make ExecutableUnavailableError +* :ghpull:`14843`: Don't try to cleanup CallbackRegistry during interpreter shutdown. +* :ghpull:`14849`: Improve tkagg icon resolution +* :ghpull:`14866`: changed all readme headings to verbs +* :ghpull:`13364`: Numpyfy tick handling code in Axis3D. +* :ghpull:`13642`: FIX: get_datalim for collection +* :ghpull:`14860`: Stopgap fix for pandas converters in tests. +* :ghpull:`6498`: Check canvas identity in Artist.contains. +* :ghpull:`14707`: Add titlecolor in rcParams +* :ghpull:`14853`: Fix typo in set_adjustable check. +* :ghpull:`14845`: More cleanups. +* :ghpull:`14809`: Clearer calls to ConnectionPatch. +* :ghpull:`14716`: Use str instead of string as type in docstrings +* :ghpull:`14338`: Simplify/pathlibify image_comparison. +* :ghpull:`8930`: timedelta formatter +* :ghpull:`14733`: Deprecate FigureFrameWx.statusbar & NavigationToolbar2Wx.statbar. +* :ghpull:`14713`: Unite masked and NaN plot examples +* :ghpull:`14576`: Let Axes3D share have_units, _on_units_changed with 2d axes. +* :ghpull:`14575`: Make ticklabel_format work both for 2D and 3D axes. +* :ghpull:`14834`: DOC: Webpage not formatted correctly on gallery docs +* :ghpull:`14730`: Factor out common parts of wx event handlers. +* :ghpull:`14727`: Fix axes aspect for non-linear, non-log, possibly mixed-scale axes. +* :ghpull:`14835`: Only allow set_adjustable("datalim") for axes with standard data ratios. +* :ghpull:`14746`: Simplify Arrow constructor. +* :ghpull:`14752`: Doc changes to git setup +* :ghpull:`14732`: Deduplicate wx configure_subplots tool. +* :ghpull:`14715`: Use array-like in docs +* :ghpull:`14728`: More floating_axes cleanup. +* :ghpull:`14719`: Make Qt navtoolbar more robust against removal of either pan or zoom. +* :ghpull:`14695`: Various small simplifications +* :ghpull:`14745`: Replace Affine2D().scale(x, x) by Affine2D().scale(x). +* :ghpull:`14687`: Add missing spaces after commas in docs +* :ghpull:`14810`: Lighten icons of NavigationToolbar2QT on dark-themes +* :ghpull:`14786`: Deprecate axis_artist.BezierPath. +* :ghpull:`14750`: Misc. simplifications. +* :ghpull:`14807`: API change note on automatic blitting detection for backends +* :ghpull:`11004`: Deprecate smart_bounds handling in Axis and Spine +* :ghpull:`14785`: Kill some never-used attributes. +* :ghpull:`14723`: Cleanup some parameter descriptions in matplotlibrc.template +* :ghpull:`14808`: Small docstring updates +* :ghpull:`14686`: Inset orientation +* :ghpull:`14805`: Simplify text_layout example. +* :ghpull:`12052`: Make AxesImage.contains account for transforms +* :ghpull:`11860`: Let MovieFileWriter save temp files in a new dir +* :ghpull:`11423`: FigureCanvas Designer +* :ghpull:`10688`: Add legend handler and artist for FancyArrow +* :ghpull:`8321`: Added ContourSet clip_path kwarg and set_clip_path() method (#2369) +* :ghpull:`14641`: Simplify _process_plot_var_args. +* :ghpull:`14631`: Refactor from_levels_and_colors. +* :ghpull:`14790`: DOC:Add link to style examples in matplotlib.style documentation +* :ghpull:`14799`: Deprecate dates.mx2num. +* :ghpull:`14793`: Remove sudo tag in travis +* :ghpull:`14795`: Autodetect whether a canvas class supports blitting. +* :ghpull:`14794`: DOC: Update the documentation of homepage of website +* :ghpull:`14629`: Delete HTML build sources to save on artefact upload time +* :ghpull:`14792`: Fix spelling typos +* :ghpull:`14789`: Prefer Affine2D.translate to offset_transform in examples. +* :ghpull:`14783`: Cleanup mlab.detrend. +* :ghpull:`14791`: Make 'extended' and 'expanded' synonymous in font_manager +* :ghpull:`14787`: Remove axis_artist _update, which is always a noop. +* :ghpull:`14758`: Compiling C-ext with incorrect FreeType libs makes future compiles break +* :ghpull:`14763`: Deprecate math_symbol_table function directive +* :ghpull:`14762`: Decrease uses of get_canvas_width_height. +* :ghpull:`14748`: Cleanup demo_text_path. +* :ghpull:`14740`: Remove sudo tag in travis +* :ghpull:`14737`: Cleanup twin axes docstrings. +* :ghpull:`14729`: Small simplifications. +* :ghpull:`14726`: Trivial simplification to Axis3d._get_coord_info. +* :ghpull:`14718`: Add explanations for single character color names. +* :ghpull:`14710`: Pin pydocstyle<4.0 +* :ghpull:`14709`: Try to improve the readability and styling of matplotlibrc.template file +* :ghpull:`14278`: Inset axes bug and docs fix +* :ghpull:`14478`: MNT: protect from out-of-bounds data access at the c level +* :ghpull:`14569`: More deduplication of backend_tools. +* :ghpull:`14652`: Soft-deprecate transform_point. +* :ghpull:`14664`: Improve error reporting for scatter c as invalid RGBA. +* :ghpull:`14625`: Don't double-wrap in silent_list. +* :ghpull:`14689`: Update embedding_in_wx4 example. +* :ghpull:`14679`: Further simplify colormap reversal. +* :ghpull:`14667`: Move most of pytest's conf to conftest.py. +* :ghpull:`14632`: Remove reference to old Tk/Windows bug. +* :ghpull:`14673`: More shortening of setup.py prints. +* :ghpull:`14678`: Fix small typo +* :ghpull:`14680`: Format parameters in descriptions with emph instead of backticks +* :ghpull:`14674`: Simplify colormap reversal. +* :ghpull:`14672`: Artist tutorial fixes +* :ghpull:`14653`: Remove some unnecessary prints from setup.py. +* :ghpull:`14662`: Add a _check_getitem helper to go with _check_in_list/_check_isinstance. +* :ghpull:`14666`: Update IPython's doc link in Image tutorial +* :ghpull:`14671`: Improve readability of matplotlibrc.template +* :ghpull:`14665`: Fix a typo in pyplot tutorial +* :ghpull:`14616`: Use builtin round instead of np.round for scalars. +* :ghpull:`12554`: backend_template docs and fixes +* :ghpull:`14635`: Fix bug when setting negative limits and using log scale +* :ghpull:`14604`: Update hist() docstring following removal of normed kwarg. +* :ghpull:`14630`: Remove the private Tick._name attribute. +* :ghpull:`14555`: Coding guidelines concerning the API +* :ghpull:`14516`: Document and test _get_packed_offsets() +* :ghpull:`14628`: matplotlib > Matplotlib in devel docs +* :ghpull:`14627`: gitignore pip-wheel-metadta/ directory +* :ghpull:`14612`: Update some mplot3d docs. +* :ghpull:`14617`: Remove a Py2.4(!) backcompat fix. +* :ghpull:`14605`: Update hist2d() docstring. +* :ghpull:`13084`: When linking against libpng/zlib on Windows, use upstream lib names. +* :ghpull:`13685`: Remove What's new fancy example +* :ghpull:`14573`: Cleanup jpl_units. +* :ghpull:`14583`: Fix overly long lines in setupext. +* :ghpull:`14588`: Remove [status] suppress from setup.cfg. +* :ghpull:`14591`: Style fixes for secondary_axis. +* :ghpull:`14594`: DOC: Make temperature scale example use a closure for easier reusability +* :ghpull:`14447`: FIX: allow secondary axes minor locators to be set +* :ghpull:`14567`: Fix unicode_minus + usetex. +* :ghpull:`14351`: Remove some redundant check_in_list calls. +* :ghpull:`14550`: Restore thumbnail of usage guide +* :ghpull:`10222`: Use symlinks instead of copies for test result_images. +* :ghpull:`14267`: cbook docs cleanup +* :ghpull:`14556`: Improve @deprecated's docstring. +* :ghpull:`14557`: Clarify how to work with threads. +* :ghpull:`14545`: In contributing.rst, encourage kwonly args and minimizing public APIs. +* :ghpull:`14533`: Misc. style fixes. +* :ghpull:`14542`: Move plot_directive doc to main API index. +* :ghpull:`14499`: Improve custom figure example +* :ghpull:`14543`: Remove the "Developing a new backend" section from contributing guide. +* :ghpull:`14540`: Simplify backend switching in plot_directive. +* :ghpull:`14539`: Don't overindent enumerated list in plot_directive docstring. +* :ghpull:`14537`: Slightly tighten the Bbox API. +* :ghpull:`14223`: Rewrite intro to usage guide. +* :ghpull:`14495`: Numpydocify axes_artist.py +* :ghpull:`14529`: mpl_toolkits style fixes. +* :ghpull:`14528`: mathtext style fixes. +* :ghpull:`13536`: Make unit converters also handle instances of subclasses. +* :ghpull:`13730`: Include FreeType error codes in FreeType exception messages. +* :ghpull:`14500`: Fix pydocstyle D403 (First word of the first line should be properly capitalized) in examples +* :ghpull:`14506`: Simplify Qt tests. +* :ghpull:`14513`: More fixes to pydocstyle D403 (First word capitalization) +* :ghpull:`14496`: Fix pydocstyle D208 (Docstring is over-indented) +* :ghpull:`14347`: Deprecate rcsetup.validate_path_exists. +* :ghpull:`14383`: Remove the ````package_data.dlls```` setup.cfg entry. +* :ghpull:`14346`: Simplify various validators in rcsetup. +* :ghpull:`14366`: Move test_rcparams test files inline into test_rcparams.py. +* :ghpull:`14401`: Assume that mpl-data is in its standard location. +* :ghpull:`14454`: Simplify implementation of svg.image_inline. +* :ghpull:`14470`: Add _check_isinstance helper. +* :ghpull:`14479`: fstringify backend_ps more. +* :ghpull:`14484`: Support unicode minus with ps.useafm. +* :ghpull:`14494`: Style fixes. +* :ghpull:`14465`: Docstrings cleanups. +* :ghpull:`14466`: Let SecondaryAxis inherit get_tightbbox from _AxesBase. +* :ghpull:`13940`: Some more f-strings. +* :ghpull:`14379`: Remove unnecessary uses of unittest.mock. +* :ghpull:`14483`: Improve font weight guessing. +* :ghpull:`14419`: Fix test_imshow_pil on Windows. +* :ghpull:`14460`: canvas.blit() already defaults to blitting the full figure canvas. +* :ghpull:`14462`: Register timeout pytest marker. +* :ghpull:`14414`: FEATURE: Alpha channel in Gouraud triangles in the pdf backend +* :ghpull:`13659`: Clarify behavior of the 'tight' kwarg to autoscale/autoscale_view. +* :ghpull:`13901`: Only test png output for mplot3d. +* :ghpull:`13338`: Replace list.extend by star-expansion or other constructs. +* :ghpull:`14448`: Misc doc style cleanup +* :ghpull:`14310`: Update to Bounding Box for Qt5 FigureCanvasATAgg.paintEvent() +* :ghpull:`14380`: Inline $MPLLOCALFREETYPE/$PYTEST_ADDOPTS/$NPROC in .travis.yml. +* :ghpull:`14413`: MAINT: small improvements to the pdf backend +* :ghpull:`14452`: MAINT: Minor cleanup to make functions more self consisntent +* :ghpull:`14441`: Misc. docstring cleanups. +* :ghpull:`14440`: Interpolations example +* :ghpull:`14402`: Prefer ``mpl.get_data_path()``, and support Paths in FontProperties. +* :ghpull:`14420`: MAINT: Upgrade pytest again +* :ghpull:`14423`: Fix docstring of subplots(). +* :ghpull:`14410`: Use aspect=1, not aspect=True. +* :ghpull:`14412`: MAINT: Don't install pytest 4.6.0 on Travis +* :ghpull:`14377`: Rewrite assert np.* tests to use numpy.testing +* :ghpull:`14399`: Improve warning for case where data kwarg entry is ambiguous. +* :ghpull:`14390`: Cleanup docs of bezier +* :ghpull:`14400`: Fix to_rgba_array() for empty input +* :ghpull:`14308`: Small clean to SymmetricalLogLocator +* :ghpull:`14311`: travis: add c code coverage measurements +* :ghpull:`14393`: Remove remaining unicode-strings markers. +* :ghpull:`14391`: Remove explicit inheritance from object +* :ghpull:`14343`: acquiring and releaseing keypresslock when textbox is being activated +* :ghpull:`14353`: Register flaky pytest marker. +* :ghpull:`14373`: Properly hide __has_include to support C++<17 compilers. +* :ghpull:`14378`: Remove setup_method +* :ghpull:`14368`: Finish removing jquery from the repo. +* :ghpull:`14360`: Deprecate ``boxplot(..., whis="range")``. +* :ghpull:`14376`: Simplify removal of figure patch from bbox calculations. +* :ghpull:`14363`: Make is_natively_supported private. +* :ghpull:`14330`: Remove remaining unittest.TestCase uses +* :ghpull:`13663`: Kill the PkgConfig singleton in setupext. +* :ghpull:`13067`: Simplify generation of error messages for missing libpng/freetype. +* :ghpull:`14358`: DOC boxplot ``whis`` parameter +* :ghpull:`14014`: Disallow figure argument for pyplot.subplot() and Figure.add_subplot() +* :ghpull:`14350`: Use cbook._check_in_list more often. +* :ghpull:`14348`: Cleanup markers.py. +* :ghpull:`14345`: Use importorskip for tests depending on pytz. +* :ghpull:`14170`: In setup.py, inline the packages that need to be installed into setup(). +* :ghpull:`14332`: Use raw docstrings instead of escaping backslashes +* :ghpull:`14336`: Enforce pydocstyle D412 +* :ghpull:`14144`: Deprecate the 'warn' parameter to matplotlib.use(). +* :ghpull:`14328`: Remove explicit inheritance from object +* :ghpull:`14035`: Improve properties formatting in interpolated docstrings. +* :ghpull:`14018`: pep8ing. +* :ghpull:`13542`: Move {setup,install}_requires from setupext.py to setup.py. +* :ghpull:`13670`: Simplify the logic of axis(). +* :ghpull:`14046`: Deprecate checkdep_ps_distiller. +* :ghpull:`14236`: Simplify StixFonts.get_sized_alternatives_for_symbol. +* :ghpull:`14101`: Shorten _ImageBase._make_image. +* :ghpull:`14246`: Deprecate public use of makeMappingArray +* :ghpull:`13740`: Deprecate plotfile. +* :ghpull:`14216`: Walk the artist tree when preparing for saving with tight bbox. +* :ghpull:`14305`: Small grammatical error. +* :ghpull:`14104`: Factor out retrieval of data relative to datapath +* :ghpull:`14016`: pep8ify backends. +* :ghpull:`14299`: Fix #13711 by importing cbook. +* :ghpull:`14244`: Remove APIs deprecated in mpl3.0. +* :ghpull:`14068`: Alternative fix for passing iterator as frames to FuncAnimation +* :ghpull:`13711`: Deprecate NavigationToolbar2Tk.set_active. +* :ghpull:`14280`: Simplify validate_markevery logic. +* :ghpull:`14273`: pep8ify a couple of variable names. +* :ghpull:`14115`: Reorganize scatter arguments parsing. +* :ghpull:`14271`: Replace some uses of np.iterable +* :ghpull:`14257`: Changing cmap(np.nan) to 'bad' value rather than 'under' value +* :ghpull:`14259`: Deprecate string as color sequence +* :ghpull:`13506`: Change colorbar for contour to have the proper axes limits... +* :ghpull:`13494`: Add colorbar annotation example plot to gallery +* :ghpull:`14266`: Make matplotlib.figure.AxesStack private +* :ghpull:`14166`: Shorten usage of ``@image_comparison``. +* :ghpull:`14240`: Merge up 31x +* :ghpull:`14242`: Avoid a buffer copy in PillowWriter. +* :ghpull:`9672`: Only set the wait cursor if the last draw was >1s ago. +* :ghpull:`14224`: Update plt.show() doc +* :ghpull:`14218`: Use stdlib mimetypes instead of hardcoding them. +* :ghpull:`14082`: In tk backend, don't try to update mouse position after resize. +* :ghpull:`14084`: Check number of positional arguments passed to quiver() +* :ghpull:`14214`: Fix some docstring style issues. +* :ghpull:`14201`: Fix E124 flake8 violations (closing bracket indentation). +* :ghpull:`14096`: Consistently use axs to refer to a set of Axes +* :ghpull:`14204`: Fix various flake8 indent problems. +* :ghpull:`14205`: Obey flake8 "don't assign a lambda, use a def". +* :ghpull:`14198`: Remove unused imports +* :ghpull:`14173`: Prepare to change the default pad for AxesDivider.append_axes. +* :ghpull:`13738`: Fix TypeError when plotting stacked bar chart with decimal +* :ghpull:`14151`: Clarify error with usetex when cm-super is not installed. +* :ghpull:`14107`: Feature: draw percentiles in violinplot +* :ghpull:`14172`: Remove check_requirements from setupext. +* :ghpull:`14158`: Fix test_lazy_imports in presence of $MPLBACKEND or matplotlibrc. +* :ghpull:`14157`: Isolate nbagg test from user ipython profile. +* :ghpull:`14147`: Dedent overindented list in example docstring. +* :ghpull:`14134`: Deprecate the dryrun parameter to print_foo(). +* :ghpull:`14145`: Remove warnings handling for fixed bugs. +* :ghpull:`13977`: Always import pyplot when calling matplotlib.use(). +* :ghpull:`14131`: Make test suite fail on warnings. +* :ghpull:`13593`: Only autoscale_view() when needed, not after every plotting call. +* :ghpull:`13902`: Add support for metadata= and pil_kwargs= in imsave(). +* :ghpull:`14140`: Avoid backslash-quote by changing surrounding quotes. +* :ghpull:`14132`: Move some toplevel strings into the only functions that use them. +* :ghpull:`13708`: Annotation.contains shouldn't consider the text+arrow's joint bbox. +* :ghpull:`13980`: Don't let margins expand polar plots to negative radii by default. +* :ghpull:`14075`: Remove uninformative entries from glossary. +* :ghpull:`14002`: Allow pandas DataFrames through norms +* :ghpull:`14114`: Allow SVG Text-as-Text to Use Data Coordinates +* :ghpull:`14120`: Remove mention of $QT_API in matplotlibrc example. +* :ghpull:`13878`: Style fixes for floating_axes. +* :ghpull:`14108`: Deprecate FigureCanvasMac.invalidate in favor of draw_idle. +* :ghpull:`13879`: Clarify handling of "extreme" values in FloatingAxisArtistHelper. +* :ghpull:`5602`: Automatic downsampling of images. +* :ghpull:`14112`: Remove old code path in layout.html +* :ghpull:`13959`: Scatter: make "c" and "s" argument handling more consistent. +* :ghpull:`14110`: Simplify scatter_piecharts example. +* :ghpull:`14111`: Trivial cleanups. +* :ghpull:`14085`: Simplify get_current_fig_manager(). +* :ghpull:`14083`: Deprecate FigureCanvasBase.draw_cursor. +* :ghpull:`14089`: Cleanup bar_stacked, bar_unit_demo examples. +* :ghpull:`14063`: Add pydocstyle checks to flake8 +* :ghpull:`14077`: Fix tick label wobbling in animated Qt example +* :ghpull:`14070`: Cleanup some pyplot docstrings. +* :ghpull:`6280`: Added ability to offset errorbars when using errorevery. +* :ghpull:`13679`: Fix passing iterator as frames to FuncAnimation +* :ghpull:`14023`: Improve Unicode minus example +* :ghpull:`14041`: Pretty-format subprocess logs. +* :ghpull:`14038`: Cleanup path.py docstrings. +* :ghpull:`13701`: Small cleanups. +* :ghpull:`14020`: Better error message when trying to use Gtk3Agg backend without cairo +* :ghpull:`14021`: Fix ax.legend Returns markup +* :ghpull:`13986`: Support RGBA for quadmesh mode of pcolorfast. +* :ghpull:`14009`: Deprecate compare_versions. +* :ghpull:`14010`: Deprecate get_home() +* :ghpull:`13932`: Remove many unused variables. +* :ghpull:`13854`: Cleanup contour.py. +* :ghpull:`13866`: Switch PyArg_ParseTupleAndKeywords from "es" to "s". +* :ghpull:`13945`: Make unicode_minus example more focused. +* :ghpull:`13876`: Deprecate factor=None in axisartist. +* :ghpull:`13929`: Better handle deprecated rcParams. +* :ghpull:`13851`: Deprecate setting Axis.major.locator to non-Locator; idem for Formatters +* :ghpull:`13938`: numpydocify quiverkey. +* :ghpull:`13936`: Pathlibify animation. +* :ghpull:`13984`: Allow setting tick colour on 3D axes +* :ghpull:`13987`: Deprecate mlab.{apply_window,stride_repeat}. +* :ghpull:`13983`: Fix locator/formatter setting when removing shared Axes +* :ghpull:`13957`: Remove many unused variables in tests. +* :ghpull:`13981`: Test cleanups. +* :ghpull:`13970`: Check vmin/vmax are valid when doing inverse in LogNorm +* :ghpull:`13978`: Make normalize_kwargs more convenient for third-party use. +* :ghpull:`13972`: Remove _process_plot_var_args.set{line,patch}_props. +* :ghpull:`13795`: Make _warn_external correctly report warnings arising from tests. +* :ghpull:`13885`: Deprecate axisartist.grid_finder.GridFinderBase. +* :ghpull:`13913`: Fix string numbers in to_rgba() and is_color_like() +* :ghpull:`13935`: Deprecate the useless switch_backend_warn parameter to matplotlib.test. +* :ghpull:`13952`: Cleanup animation tests. +* :ghpull:`13942`: Make Cursors an (Int)Enum. +* :ghpull:`13953`: Unxfail a now fixed test in test_category. +* :ghpull:`13925`: Fix passing Path to ps backend when text.usetex rc is True. +* :ghpull:`13943`: Don't crash on str(figimage(...)). +* :ghpull:`13944`: Document how to support unicode minus in pgf backend. +* :ghpull:`13802`: New rcparam to set default axes title location +* :ghpull:`13855`: ``a and b or c`` -> ``b if a else c`` +* :ghpull:`13923`: Correctly handle invalid PNG metadata. +* :ghpull:`13926`: Suppress warnings in tests. +* :ghpull:`13920`: Style fixes for category.py. +* :ghpull:`13889`: Shorten docstrings by removing unneeded :class:/:func: + rewordings. +* :ghpull:`13911`: Fix joinstyles example +* :ghpull:`13917`: Faster categorical tick formatter. +* :ghpull:`13918`: Make matplotlib.testing assume pytest by default, not nose. +* :ghpull:`13894`: Check for positive number of rows and cols +* :ghpull:`13895`: Remove unused setupext.is_min_version. +* :ghpull:`13886`: Shorten Figure.set_size_inches. +* :ghpull:`13859`: Ensure figsize is positive finite +* :ghpull:`13877`: ``zeros_like(x) + y`` -> ``full_like(x, y)`` +* :ghpull:`13875`: Style fixes for grid_helper_curvelinear. +* :ghpull:`13873`: Style fixes to grid_finder. +* :ghpull:`13782`: Don't access internet during tests. +* :ghpull:`13833`: Some more usage of _check_in_list. +* :ghpull:`13834`: Cleanup FancyArrowPatch docstring +* :ghpull:`13811`: Generate Figure method wrappers via boilerplate.py +* :ghpull:`13797`: Move sphinxext test to matplotlib.tests like everyone else. +* :ghpull:`13770`: broken_barh docstring +* :ghpull:`13757`: Remove mention of "enabling fontconfig support". +* :ghpull:`13454`: Add "c" as alias for "color" for Collections +* :ghpull:`13756`: Reorder the logic of _update_title_position. +* :ghpull:`13744`: Restructure boilerplate.py +* :ghpull:`13369`: Use default colours for examples +* :ghpull:`13697`: Delete pyplot_scales example. +* :ghpull:`13726`: Clarify a bit the implementation of blend_hsv. +* :ghpull:`13731`: Check for already running QApplication in Qt embedding example. +* :ghpull:`13736`: Deduplicate docstrings and validation for set_alpha. +* :ghpull:`13737`: Remove duplicated methods in FixedAxisArtistHelper. +* :ghpull:`13721`: Kill pyplot docstrings that get overwritten by @docstring.copy. +* :ghpull:`13690`: Cleanup hexbin. +* :ghpull:`13683`: Remove axes border for examples that list styles +* :ghpull:`13280`: Add SubplotSpec.add_subplot. +* :ghpull:`11387`: Deprecate Axes3D.w_{x,y,z}axis in favor of .{x,y,z}axis. +* :ghpull:`13671`: Suppress some warnings in tests. +* :ghpull:`13657`: DOC: fail the doc build on errors, but keep going to end +* :ghpull:`13647`: Fix FancyArrowPatch joinstyle +* :ghpull:`13637`: BLD: parameterize python_requires +* :ghpull:`13633`: plot_directive: Avoid warning if plot_formats doesn't contain 'png' +* :ghpull:`13629`: Small example simplification. +* :ghpull:`13620`: Improve watermark example +* :ghpull:`13589`: Kill Axes._connected. +* :ghpull:`13428`: free cart pendulum animation example +* :ghpull:`10487`: fixed transparency bug +* :ghpull:`13551`: Fix IndexError for pyplot.legend() when plotting empty bar chart with label +* :ghpull:`13524`: Cleanup docs for GraphicsContextBase.{get,set}_dashes. +* :ghpull:`13556`: Cleanup warnings handling in tests. +* :ghpull:`8100`: Deprecate MAXTICKS, Locator.raise_if_exceeds. +* :ghpull:`13534`: More followup to autoregistering 3d axes. +* :ghpull:`13327`: pcolorfast simplifications. +* :ghpull:`13532`: More use of cbook._check_in_list. +* :ghpull:`13520`: Register 3d projection by default. +* :ghpull:`13394`: Deduplicate some code between floating_axes and grid_helper_curvelinear. +* :ghpull:`13527`: Make SubplotSpec.num2 never None. +* :ghpull:`12249`: Replaced noqa-comments by using Axes3D.name instead of '3d' for proje… + +Issues (125): + +* :ghissue:`16487`: Add link to blog to front page +* :ghissue:`16478`: The bottom parameter of plt.hist() shifts the data as well, not just the baseline +* :ghissue:`16280`: SymLogNorm colorbar incorrect on master +* :ghissue:`16448`: Bad interaction between shared axes and pcolormesh sticky edges +* :ghissue:`16451`: InvertedLogTransform inherits from deprecated base +* :ghissue:`16420`: Error when adding colorbar to pcolormesh of a boolean array +* :ghissue:`16114`: Prose error on website (first paragraph) +* :ghissue:`8291`: Unable to pickle.load(fig) with mpl in jupyter notebook +* :ghissue:`16173`: Constrained_layout creates extra axes when used with subgridspec +* :ghissue:`16127`: nbformat 5.0.0 missing schema files +* :ghissue:`15849`: Using pandas.Timestamp in blended coordinate system of ax.annotate. +* :ghissue:`6015`: scatterplot axis autoscale fails for small data values +* :ghissue:`15806`: 3.2.0 may break some Cartopy tests +* :ghissue:`15852`: Lasso selector does not show in Jupyter notebook +* :ghissue:`15820`: Show incomplete tick labels when using mixed chinese and english characters +* :ghissue:`15770`: DOCS 2D Line label option ``_nolegend_`` is not documented +* :ghissue:`15332`: Type promotion error with datetime bins in hist +* :ghissue:`15611`: BUG: Qt5Agg window size regression +* :ghissue:`7130`: Incorrect autoscaling of polar plot limits after scatter +* :ghissue:`15576`: Multi-line ticks cause cut-offs +* :ghissue:`8609`: Clipped tick labels +* :ghissue:`15517`: antialiased image check seems wrong when used on zoomed image +* :ghissue:`13400`: Qt Embedding w/ Spyder +* :ghissue:`14724`: drawstyle parameter of line needs example +* :ghissue:`13619`: Importing matplotlib.animation prevents python script from executing in the background +* :ghissue:`14270`: Secondary axis called with [0, 1] might produce exceptions in case these are invalid data +* :ghissue:`15417`: Why is smart_bounds() being deprecated? +* :ghissue:`9778`: Blanks in colorbar just inside of 'extend' arrowpoints when using AxesGrid +* :ghissue:`15336`: DivergingNorm is a misleading name +* :ghissue:`15399`: OSError: [Errno 86] Bad CPU type in executable: 'convert' on import matplotlib.animation +* :ghissue:`15109`: matplotlib.collections inheritance diagram small/blurry +* :ghissue:`15331`: Log Scale: FloatingPointError: underflow encountered in power +* :ghissue:`15251`: Large memory growth with log scaling and linear ticking +* :ghissue:`15247`: Colorbar tick placement issues with ImageGrid and LogNorm +* :ghissue:`15306`: Footer off centre +* :ghissue:`13485`: Matplotlib NavigationToolbar2Tk disappears when reducing window size +* :ghissue:`15232`: DOC: Automatic default rcParam expansion creates misleading sentences +* :ghissue:`14141`: setting spine position on a log plot fails +* :ghissue:`15138`: Make plt.style.use accept path-like objects in addition to string +* :ghissue:`14207`: Check if point is in path or not by contains_point +* :ghissue:`13591`: Style issues when building the docs with (future) Sphinx 2.0 +* :ghissue:`8089`: Using Minute Locator to set x-axis ticks exceeds Locator.MAXTICKS +* :ghissue:`15075`: sphinxext.missing_references does not specify if it supports parallel file read. +* :ghissue:`10963`: Replace \pgfimage by \includegraphics in PGF backend +* :ghissue:`15156`: ax.text fails with positional argument error +* :ghissue:`14439`: hist() fails when all data points are np.nan +* :ghissue:`15042`: How to handle sphinx nitpicky mode +* :ghissue:`14060`: quiver(C=...) argument is not reasonably validated +* :ghissue:`11335`: TST: testing not catching bad escape sequences in doc strings +* :ghissue:`15040`: Wrong figure window size after calling fig.set_size_inches() repeatedly +* :ghissue:`15100`: Issue with creating QApplication in QT backend +* :ghissue:`14887`: kerning seems generally wrong +* :ghissue:`14800`: default tick formatter could switch to scientific notation earlier +* :ghissue:`14503`: Add a test for #14451 +* :ghissue:`14907`: ConnectionPatch across axes needs to be excluded from layout management +* :ghissue:`14911`: Removing a shared axes via ``ax.remove()`` leads to an error. +* :ghissue:`12462`: cbar.add_lines should allow manually adding lines, not just contour sets +* :ghissue:`14796`: Show user how to use Agg buffer in example +* :ghissue:`14883`: MinSize not respected using wx backend causes wxAssertionError. Bug fix included. +* :ghissue:`15014`: Wrapping of text adds leading newline character if first word is long +* :ghissue:`14918`: constrained_layout fails with hidden axis... +* :ghissue:`14981`: Barplot call crashes when called with yscale="log" and bins with h=0 +* :ghissue:`4621`: Default bottom of Stepfilled histograms should be set according to ymin +* :ghissue:`15030`: Doc build broken +* :ghissue:`8093`: set_ylim not working with plt.axis('equal') +* :ghissue:`6055`: Serious problems on the axes documentation +* :ghissue:`9979`: Axis limits are set badly with small values in scatter(). +* :ghissue:`10842`: Text bbox empty dict should be ignored +* :ghissue:`13698`: The default logit minor locator should not display tick labels +* :ghissue:`14878`: plt.yscale doesn't throw warning with invalid kwarg +* :ghissue:`5619`: Symlog linear region +* :ghissue:`14564`: Broken string interpolation +* :ghissue:`13668`: Add better error message to plt.axis() +* :ghissue:`14563`: colorbar label prints "None" when label=None +* :ghissue:`13660`: Closing a matplotlib figure with event handling occasionally causes “TypeError: isinstance()” +* :ghissue:`13033`: 'NoneType' has no attribute '_alive' when using plt in a context manager +* :ghissue:`13891`: Blurry app icon on macOS +* :ghissue:`14656`: Axes title default color +* :ghissue:`14831`: DOC: Webpage not formatted correctly on gallery docs +* :ghissue:`13819`: Aspect ratio for not so common scales +* :ghissue:`8878`: Setting aspect ratio for semi-log plots +* :ghissue:`4900`: UnboundLocalError: local variable 'aspect_scale_mode' referenced before assignment +* :ghissue:`14608`: Issue with using plt.axis('equal') with plt.polar(theta,r) plot +* :ghissue:`12893`: [PyQt] NavigationToolbar2QT : Error when removing tools +* :ghissue:`14670`: indicate_inset rectangles is sensitive to axis-flipping +* :ghissue:`14362`: Add link to style examples in matplotlib.style documentation +* :ghissue:`6295`: restore_region is not documented as a method of FigureCanvas +* :ghissue:`14754`: Better pointer to dev docs on website +* :ghissue:`14744`: Savefig svg fails with "Cannot cast array data from dtype('`__ +and `on GitHub `__ + +The following 12 authors contributed 154 commits. + +* Amy Roberts +* Antony Lee +* Elliott Sales de Andrade +* hannah +* Hugo van Kemenade +* Jody Klymak +* Kyle Sunden +* MarcoGorelli +* Maximilian Nöthe +* Sandro Tosi +* Thomas A Caswell +* Tim Hoffmann + +GitHub issues and pull requests: + +Pull Requests (52): + +* :ghpull:`15199`: MNT/TST: generalize check_figures_equal to work with pytest.marks +* :ghpull:`15685`: Avoid a RuntimeError at animation shutdown with PySide2. +* :ghpull:`15969`: Restart pgf's latex instance after bad latex inputs. +* :ghpull:`16640`: ci: Fix Azure on v3.2.x +* :ghpull:`16648`: Document filling of Poly3DCollection +* :ghpull:`16649`: Fix typo in docs +* :ghpull:`16650`: Backport PR #16649 on branch v3.2.x (Fix typo in docs) +* :ghpull:`16651`: Docs: Change Python 2 note to past tense +* :ghpull:`16654`: Backport PR #16651 on branch v3.2.0-doc (Docs: Change Python 2 note to past tense) +* :ghpull:`16656`: Make test_imagegrid_cbar_mode_edge less flaky. +* :ghpull:`16661`: added Framework :: Matplotlib to setup +* :ghpull:`16665`: Backport PR #16661 on branch v3.2.x (added Framework :: Matplotlib to setup) +* :ghpull:`16671`: Fix some readme bits +* :ghpull:`16672`: Update CircleCI and add direct artifact link +* :ghpull:`16682`: Avoid floating point rounding causing bezier.get_parallels to fail +* :ghpull:`16690`: Backport PR #16682 on branch v3.2.x (Avoid floating point rounding causing bezier.get_parallels to fail) +* :ghpull:`16693`: TST: use pytest name in naming files for check_figures_equal +* :ghpull:`16695`: Restart pgf's latex instance after bad latex inputs. +* :ghpull:`16705`: Backport PR #16656 on branch v3.2.x (Make test_imagegrid_cbar_mode_edge less flaky.) +* :ghpull:`16708`: Backport PR #16671: Fix some readme bits +* :ghpull:`16709`: Fix saving PNGs to file objects in some places +* :ghpull:`16722`: Deprecate rcParams["datapath"] in favor of mpl.get_data_path(). +* :ghpull:`16725`: TST/CI: also try to run test_user_fonts_win32 on azure +* :ghpull:`16734`: Disable draw_foo methods on renderer used to estimate tight extents. +* :ghpull:`16735`: Make test_stem less flaky. +* :ghpull:`16736`: xpdf: Set AutoRotatePages to None, not false. +* :ghpull:`16742`: nbagg: Don't send events if manager is disconnected. +* :ghpull:`16745`: Allow numbers to set uvc for all arrows in quiver.set_UVC, fixes #16743 +* :ghpull:`16751`: Backport PR #16742 on branch v3.2.x (nbagg: Don't send events if manager is disconnected.) +* :ghpull:`16752`: ci: Disallow pytest 5.4.0, which is crashing. +* :ghpull:`16753`: Backport #16752 to v3.2.x +* :ghpull:`16760`: Backport PR #16735 on branch v3.2.x (Make test_stem less flaky.) +* :ghpull:`16761`: Backport PR #16745 on branch v3.2.x (Allow numbers to set uvc for all arrows in quiver.set_UVC, fixes #16743) +* :ghpull:`16763`: Backport PR #16648 on branch v3.2.x (Document filling of Poly3DCollection) +* :ghpull:`16764`: Backport PR #16672 on branch v3.2.0-doc +* :ghpull:`16765`: Backport PR #16736 on branch v3.2.x (xpdf: Set AutoRotatePages to None, not false.) +* :ghpull:`16766`: Backport PR #16734 on branch v3.2.x (Disable draw_foo methods on renderer used to estimate tight extents.) +* :ghpull:`16767`: Backport PR #15685 on branch v3.2.x (Avoid a RuntimeError at animation shutdown with PySide2.) +* :ghpull:`16768`: Backport PR #16725 on branch v3.2.x (TST/CI: also try to run test_user_fonts_win32 on azure) +* :ghpull:`16770`: Fix tuple markers +* :ghpull:`16779`: Documentation: make instructions for documentation contributions easier to find, add to requirements for building docs +* :ghpull:`16784`: Update CircleCI URL for downloading humor-sans.ttf. +* :ghpull:`16790`: Backport PR #16784 on branch v3.2.x (Update CircleCI URL for downloading humor-sans.ttf.) +* :ghpull:`16791`: Backport PR #16770 on branch v3.2.x (Fix tuple markers) +* :ghpull:`16794`: DOC: Don't mention drawstyle in ``set_linestyle`` docs. +* :ghpull:`16795`: Backport PR #15199 on branch v3.2.x (MNT/TST: generalize check_figures_equal to work with pytest.marks) +* :ghpull:`16797`: Backport #15589 and #16693, fixes for check_figures_equal +* :ghpull:`16799`: Backport PR #16794 on branch v3.2.0-doc (DOC: Don't mention drawstyle in ``set_linestyle`` docs.) +* :ghpull:`16800`: Fix check_figures_equal for tests that use its fixtures. +* :ghpull:`16803`: Fix some doc issues +* :ghpull:`16806`: Backport PR #16803 on branch v3.2.0-doc (Fix some doc issues) +* :ghpull:`16809`: Backport PR #16779 on branch v3.2.0-doc (Documentation: make instructions for documentation contributions easier to find, add to requirements for building docs) + +Issues (11): + +* :ghissue:`12820`: [Annotations] ValueError: lines do not intersect when computing tight bounding box containing arrow with filled paths +* :ghissue:`16538`: xpdf distiller seems broken +* :ghissue:`16624`: Azure pipelines are broken on v3.2.x +* :ghissue:`16633`: Wrong drawing Poly3DCollection +* :ghissue:`16645`: Minor typo in API document of patches.ConnectionPatch +* :ghissue:`16670`: BLD: ascii codec decode on 3.2.0 in non-UTF8 locales +* :ghissue:`16704`: 3.2.0: ``setup.py clean`` fails with ``NameError: name 'long_description' is not defined`` +* :ghissue:`16721`: nbAgg backend does not allow saving figures as png +* :ghissue:`16731`: PGF backend + savefig.bbox results in I/O error in 3.2 +* :ghissue:`16743`: Breaking change in 3.2: quiver.set_UVC does not support single numbers any more +* :ghissue:`16801`: Doc: figure for colormaps off diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.2.2.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.2.2.rst new file mode 100644 index 0000000000000000000000000000000000000000..9026d518ce4d2a828eac4b19e2bdf09449aa6928 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.2.2.rst @@ -0,0 +1,167 @@ +.. _github-stats-3-2-2: + +GitHub statistics for 3.2.2 (Jun 17, 2020) +========================================== + +GitHub statistics for 2020/03/18 (tag: v3.2.1) - 2020/06/17 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 34 issues and merged 92 pull requests. +The full list can be seen `on GitHub `__ + +The following 19 authors contributed 183 commits. + +* Antony Lee +* Ben Root +* Clemens Brunner +* David Stansby +* Elliott Sales de Andrade +* Eric Firing +* Eric Wieser +* hannah +* Jody Klymak +* Lawrence D'Anna +* Leo Singer +* Luke Davis +* Matt Newville +* Max +* Ryan May +* Sidharth Bansal +* Stefan Mitic +* Thomas A Caswell +* Tim Hoffmann + +GitHub issues and pull requests: + +Pull Requests (92): + +* :ghpull:`17655`: Auto backport of pr 17564 on v3.2.x +* :ghpull:`17564`: FIX: correctly handle large arcs +* :ghpull:`17641`: Qt backports +* :ghpull:`17640`: More qt fractional DPI fixes +* :ghpull:`17638`: V3.2.1 doc +* :ghpull:`15656`: Support fractional HiDpi scaling with Qt backends +* :ghpull:`17600`: FIX: work with PyQt 5.15 +* :ghpull:`17598`: DOC: remove banner +* :ghpull:`17618`: Doc event loop +* :ghpull:`17614`: DOC: Remove duplicated line. +* :ghpull:`17611`: Backport #17606 to v3.2.x +* :ghpull:`17609`: Backport PR #17602: FIX: propagate _is_saving state when changing can… +* :ghpull:`17606`: Move codecov.yml to .github. +* :ghpull:`17602`: FIX: propagate _is_saving state when changing canvases +* :ghpull:`17605`: Backport PR #17560: FIX: do not let no-op monkey patches to renderer … +* :ghpull:`17601`: Backport PR #16948 on branch v3.2.x (solution: All subclasses of LocationEvent could be used in cbook.callbacks before being fully initialized - issue 15139) +* :ghpull:`17560`: FIX: do not let no-op monkey patches to renderer leak out +* :ghpull:`16948`: solution: All subclasses of LocationEvent could be used in cbook.callbacks before being fully initialized - issue 15139 +* :ghpull:`17588`: Backport PR #17565: FIX: support Qt 5.15 +* :ghpull:`17593`: Backport PR #17587 on branch v3.2.x (Add a docstring to toolkit's BezierPath.__init__.) +* :ghpull:`17587`: Add a docstring to toolkit's BezierPath.__init__. +* :ghpull:`17565`: FIX: support Qt 5.15 +* :ghpull:`17562`: Backport PR #17470 on branch v3.2.x (FIX: add guardrails for too big tk figures) +* :ghpull:`17470`: FIX: add guardrails for too big tk figures +* :ghpull:`17553`: Backport PR #17552 on branch v3.2.x (ci: Add xcb libraries that were removed from PyQt5.) +* :ghpull:`17552`: ci: Add xcb libraries that were removed from PyQt5. +* :ghpull:`17533`: Backport PR #17408 on branch v3.2.x +* :ghpull:`17408`: FIX: cancel pending autoscale on manually setting limits +* :ghpull:`17501`: Backport PR #17499: Fix scatter singlecolor +* :ghpull:`17499`: Fix scatter singlecolor +* :ghpull:`17468`: v3.2.x: Fix leaks in C++ code +* :ghpull:`17457`: Backport PR #17391 on branch v3.2.x +* :ghpull:`17391`: tk/wx: Fix saving after the window is closed +* :ghpull:`17435`: Backport PR #17422: Unstale viewlims before draw()ing polar axes. +* :ghpull:`17422`: Unstale viewlims before draw()ing polar axes. +* :ghpull:`17407`: FIX: don't try to use non-standard functions on standard status bars +* :ghpull:`17346`: Backport #17084 and #17210 to v3.2.x +* :ghpull:`17084`: Fix macosx segfault +* :ghpull:`17300`: Backport PR #17263 on branch v3.2.x (you can't call CGDataProviderCreateWithData on a stack pointer) +* :ghpull:`17263`: you can't call CGDataProviderCreateWithData on a stack pointer +* :ghpull:`17272`: Backport PR #17271 on branch v3.2.x (MNT: do not try to import xml.etree.cElementTree) +* :ghpull:`17271`: MNT: do not try to import xml.etree.cElementTree +* :ghpull:`17268`: Backport PR #17261 on branch v3.2.x (avoid calling wx.Bitmap() if width or height is zero) +* :ghpull:`17261`: avoid calling wx.Bitmap() if width or height is zero +* :ghpull:`17257`: Backport eps work +* :ghpull:`17255`: Fix eps + usetex combo. +* :ghpull:`17254`: Backport PR #17252 on branch v3.2.x (Fix bug where matplotlib.style('default') resets the backend) +* :ghpull:`17252`: Fix bug where matplotlib.style('default') resets the backend +* :ghpull:`17250`: Merge pull request #17206 from jklymak/fix-bypass-inverse-collection +* :ghpull:`17206`: FIX: bypass inverse in collection +* :ghpull:`17241`: Backport PR #17240 on branch v3.2.x (CI: Download wx wheels for the correct Ubuntu version.) +* :ghpull:`17240`: CI: Download wx wheels for the correct Ubuntu version. +* :ghpull:`17210`: Fix missing attribute in _SVGConverter. +* :ghpull:`17186`: Backport PR #17131 on branch v3.2.x +* :ghpull:`17188`: Backport PR #16958: MAINT: Replace uses of tostring with tobytes +* :ghpull:`17187`: Backport PR #17076: Fix SyntaxErrors when running setup in old Python +* :ghpull:`16913`: Fix use of psfrags in ps backend + usetex. +* :ghpull:`16476`: Fix baseline alignment when using usetex. +* :ghpull:`17131`: BUG: Fix formatting error in GridSpec.__repr__ +* :ghpull:`17132`: Backport PR #17126 on branch v3.2.x (Remove Python2/3 info box) +* :ghpull:`17126`: Remove Python2/3 info box +* :ghpull:`17076`: Fix SyntaxErrors when running setup in old Python +* :ghpull:`17071`: Backport PR #17065 on branch v3.2.x (Fix macOS CI test failure) +* :ghpull:`17065`: Fix macOS CI test failure +* :ghpull:`17051`: Backport PR #17045: Fix missing-references.json. +* :ghpull:`17045`: Fix missing-references.json. +* :ghpull:`17020`: Merge pull request #17017 from jklymak/fix-blended-transform +* :ghpull:`17017`: FIX: force blended transforms with data to be in data space +* :ghpull:`16989`: Backport PR #16980 on branch v3.2.x (Correctly disable more drawing methods in tight_bboxing renderer.) +* :ghpull:`16980`: Correctly disable more drawing methods in tight_bboxing renderer. +* :ghpull:`16974`: Backport PR #16940 on branch v3.2.x (DOC/FIX: clarify the docs for check_figures_equal) +* :ghpull:`16979`: Backport PR #16970 on branch v3.2.x (tk: Don't resize toolbar during resize event.) +* :ghpull:`16970`: tk: Don't resize toolbar during resize event. +* :ghpull:`16940`: DOC/FIX: clarify the docs for check_figures_equal +* :ghpull:`16969`: Backport PR #16966 on branch v3.2.x (Fix animation writer fallback.) +* :ghpull:`16966`: Fix animation writer fallback. +* :ghpull:`16958`: MAINT: Replace uses of tostring with tobytes +* :ghpull:`16950`: Backport PR #16949 on branch v3.2.x (TST: Don't modify actual pyplot file for boilerplate test.) +* :ghpull:`16949`: TST: Don't modify actual pyplot file for boilerplate test. +* :ghpull:`16932`: Backport PR #16929 on branch v3.2.x (tk: Resize the canvas, not the figure.) +* :ghpull:`16929`: tk: Resize the canvas, not the figure. +* :ghpull:`16880`: Backport PR #16870: Unbreak CI by xfailing wxAgg test on macOS +* :ghpull:`16870`: Unbreak CI by xfailing wxAgg test on macOS +* :ghpull:`16869`: Backport PR #16867 on branch v3.2.x (BLD: Auto-trigger macOS/Linux wheels on tags.) +* :ghpull:`16867`: BLD: Auto-trigger macOS/Linux wheels on tags. +* :ghpull:`16852`: Backport PR #16851 on branch v3.2.x (DOC: Fix docstring of Axes.secondary_yaxis.) +* :ghpull:`16855`: Fix typo in deprecation warning +* :ghpull:`16851`: DOC: Fix docstring of Axes.secondary_yaxis. +* :ghpull:`16842`: Backport PR #16835 on branch v3.2.x (Don't forget to export isdeleted on Qt4.) +* :ghpull:`16835`: Don't forget to export isdeleted on Qt4. +* :ghpull:`15695`: Define \mathdefault as a noop in the usetex preamble. +* :ghpull:`14694`: Vectorize Arc.draw. + +Issues (34): + +* :ghissue:`17547`: Arcs with large radii in small +* :ghissue:`17440`: Low quality window plots on hidpi display +* :ghissue:`17104`: input() caused _tkinter.TclError: invalid command name XXX after plot.close() +* :ghissue:`17613`: Matplotlib.pdf duplication +* :ghissue:`15139`: All subclasses of LocationEvent could be used in cbook.callbacks before being fully initialized +* :ghissue:`17004`: Output regression in 3.2 that affects SymPy's plotting +* :ghissue:`17599`: Saving issue with pdf backend +* :ghissue:`17542`: Matplotlib 3.2.1 savefig empty image when fig size matches data size exactly +* :ghissue:`17594`: Cannot use Qt4Agg backend in mpl 3.2.1 +* :ghissue:`17460`: set_size_inches with a width over 14090 crashes Xorg +* :ghissue:`17331`: Surprising/changed axis limit (autoscale) behavior +* :ghissue:`17423`: Scatter produce multiple colors for a single RGB/RGBA input +* :ghissue:`17385`: Matplotlib memory leaks when save figure in a file with qt5 backend +* :ghissue:`15474`: Memory leak with log scale in pcolorfast, pcolormesh, imshow ... +* :ghissue:`17388`: savefig error: tkinter.TclError: invalid command name "." +* :ghissue:`16909`: plot save and plot show +* :ghissue:`17085`: set_function not working properly in backend_wx +* :ghissue:`17418`: Issue rendering polar plot (agg backend?) with rorigin set +* :ghissue:`17061`: Segmentation fault with macosx backend +* :ghissue:`17253`: EPS + usetex is broken +* :ghissue:`16700`: Deprecation warnings from stylelib +* :ghissue:`17203`: Subplots using bad axis limits in 3.2 +* :ghissue:`16898`: EPS and ``usetex`` give blank output +* :ghissue:`16409`: Confusing error on fully commented-out usetex strings +* :ghissue:`17075`: Installation error downloading jquery on python3 on Ubuntu +* :ghissue:`17037`: Travis Failing in many PRs +* :ghissue:`17033`: Using a ``TextBox`` in current master produces a seemingly unrelated warning. +* :ghissue:`17016`: Issues with autoscaling and transforms with 3.2+ +* :ghissue:`16978`: savefig("myplot.svgz", bbox_inches="tight") fails +* :ghissue:`16965`: FuncAnimation.save throws TypeError +* :ghissue:`16916`: check_figures_equal regression from 3.2.0 to 3.2.1 +* :ghissue:`10566`: blocking UI functions cause figure size to change +* :ghissue:`10083`: Wrong figure height after set_size_inches within event handler +* :ghissue:`16834`: Error importing FigureCanvas diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.3.0.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.3.0.rst new file mode 100644 index 0000000000000000000000000000000000000000..c2e6cd132c2d7b311744f63b73a8bef0497a7e69 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.3.0.rst @@ -0,0 +1,1430 @@ +.. _github-stats-3-3-0: + +GitHub statistics for 3.3.0 (Jul 16, 2020) +========================================== + +GitHub statistics for 2020/03/03 (tag: v3.2.0) - 2020/07/16 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 198 issues and merged 1066 pull requests. +The full list can be seen `on GitHub `__ + +The following 144 authors contributed 3829 commits. + +* Adam +* Adam Paszke +* Adam Ruszkowski +* Alex Henrie +* Alexander Rudy +* Amy Roberts +* andrzejnovak +* Antony Lee +* Ardie Orden +* Asaf Maman +* Avni Sharma +* Ben Root +* Bruno Beltran +* Bruno Pagani +* chaoyi1 +* Cho Yin Yong +* Chris +* Christoph Pohl +* Cimarron Mittelsteadt +* Clemens Brunner +* Dan Hickstein +* Dan Stromberg +* David Chudzicki +* David Stansby +* Dennis Tismenko +* Dominik Schmidt +* donchanee +* Dora Fraeman Caswell +* Edoardo Pizzigoni +* Elan Ernest +* Elliott Sales de Andrade +* Emlyn Price +* Eric Firing +* Eric Larson +* Eric Relson +* Eric Wieser +* Fabien Maussion +* Frank Sauerburger +* Gal Avineri +* Generated images +* Georg Raiser +* Gina +* Greg Lucas +* hannah +* Hanno Rein +* Harshal Prakash Patankar +* henryhu123 +* Hugo van Kemenade +* Ian Hincks +* ImportanceOfBeingErnest +* Inception95 +* Ingo Fründ +* Jake Lee +* Javad +* jbhopkins +* Jeroonk +* jess +* Jess Tiu +* jfbu +* Jiahao Chen +* Jody Klymak +* Jon Haitz Legarreta Gorroño +* Jose Manuel Martí +* Joshua Taillon +* Juanjo Bazán +* Julian Mehne +* Kacper Kowalik (Xarthisius) +* Kevin Mader +* kolibril13 +* kopytjuk +* ksafran +* Kyle Sunden +* Larry Bradley +* Laurent Thomas +* Lawrence D'Anna +* Leo Singer +* lepuchi +* Luke Davis +* Manan Kevadiya +* Manuel Nuno Melo +* Maoz Gelbart +* Marat K +* Marco Gorelli +* Matt Newville +* Matthias Bussonnier +* Max +* Max Chen +* Max Humber +* Maximilian Nöthe +* Michaël Defferrard +* Michele Mastropietro +* mikhailov +* MuhammadFarooq1234 +* Mykola Dvornik +* Nelle Varoquaux +* Nelson Darkwah Oppong +* Nick Pope +* Nico Schlömer +* Nikita Kniazev +* Olivier Castany +* Omar Chehab +* Paul Gierz +* Paul Hobson +* Paul Ivanov +* Pavel Fedin +* Peter Würtz +* Philippe Pinard +* pibion +* Po +* Pradeep Reddy Raamana +* Ram Rachum +* ranjanm +* Raphael +* Ricardo Mendes +* Riccardo Di Maio +* Ryan May +* Sadie Louise Bartholomew +* Sairam Pillai +* Samesh Lakhotia +* SamSchott +* Sandro Tosi +* Siddhesh Poyarekar +* Sidharth Bansal +* Snowhite +* SojiroFukuda +* Spencer McCoubrey +* Stefan Mitic +* Stephane Raynaud +* Steven G. Johnson +* Steven Munn +* Ted Drain +* Terence Honles +* Thomas A Caswell +* Thomas Robitaille +* Till Stensitzki +* Tim Hoffmann +* Todd Jennings +* Tyrone Xiong +* Umar Javed +* Venkada +* vishalBindal +* Vitaly Buka +* Yue Zhihan +* Zulko + +GitHub issues and pull requests: + +Pull Requests (1066): + +* :ghpull:`17943`: Backport PR #17942 on branch v3.3.x (Increase heading level for 3.3 What's New) +* :ghpull:`17942`: Increase heading level for 3.3 What's New +* :ghpull:`17941`: Backport PR #17938 on branch v3.3.x (Don't allow 1D lists as subplot_moasic layout.) +* :ghpull:`17940`: Backport PR #17885 on branch v3.3.x (BF: ignore CLOSEPOLY after NaN in PathNanRemover) +* :ghpull:`17937`: Backport PR #17877 on branch v3.3.x (Fix drawing zoom rubberband on GTK backends.) +* :ghpull:`17938`: Don't allow 1D lists as subplot_moasic layout. +* :ghpull:`17885`: BF: ignore CLOSEPOLY after NaN in PathNanRemover +* :ghpull:`17877`: Fix drawing zoom rubberband on GTK backends. +* :ghpull:`17933`: Backport PR #17858 on branch v3.3.x (Refresh what's new page for 3.3.0) +* :ghpull:`17858`: Refresh what's new page for 3.3.0 +* :ghpull:`17919`: Backport PR #17913 on branch v3.3.x (Revert using SVG inheritance diagrams) +* :ghpull:`17913`: Revert using SVG inheritance diagrams +* :ghpull:`17911`: Backport PR #17907 on branch v3.3.x (Fix release() method name in macosx backend) +* :ghpull:`17907`: Fix release() method name in macosx backend +* :ghpull:`17903`: Backport PR #17859 on branch v3.3.x (API: resolve unset vmin / vmax in all ScalarMapple based methods) +* :ghpull:`17859`: API: resolve unset vmin / vmax in all ScalarMapple based methods +* :ghpull:`17898`: Backport PR #17882 on branch v3.3.x (Fix FFMpegBase.isAvailable with detached terminals.) +* :ghpull:`17882`: Fix FFMpegBase.isAvailable with detached terminals. +* :ghpull:`17881`: Backport PR #17871 on branch v3.3.x (Mention single char colors shading in more places) +* :ghpull:`17871`: Mention single char colors shading in more places +* :ghpull:`17872`: Backport PR #17800 on branch v3.3.x (Increase tolerance for alternate architectures) +* :ghpull:`17800`: Increase tolerance for alternate architectures +* :ghpull:`17861`: Revert "Fix linewidths and colors for scatter() with unfilled markers" +* :ghpull:`17864`: Backport PR #17862 on branch v3.3.x (CI: Install, or upgrade, Python 3 on homebrew.) +* :ghpull:`17846`: Backport PR #17844 on branch v3.3.x (Explain why Qt4 backends are deprecated) +* :ghpull:`17844`: Explain why Qt4 backends are deprecated +* :ghpull:`17833`: Backport PR #17831 on branch v3.3.x (BLD: default to system freetype on AIX) +* :ghpull:`17831`: BLD: default to system freetype on AIX +* :ghpull:`17823`: Backport PR #17821 on branch v3.3.x (FIX: Keep lists of lists of one scalar each 2D in _reshape_2D) +* :ghpull:`17821`: FIX: Keep lists of lists of one scalar each 2D in _reshape_2D +* :ghpull:`17811`: Backport PR #17797 on branch v3.3.x (Fix running contour's test_internal_cpp_api directly.) +* :ghpull:`17812`: Backport PR #17772 on branch v3.3.x (Partially fix rubberbanding in GTK3.) +* :ghpull:`17815`: Backport PR #17814 on branch v3.3.x (Don't duplicate deprecated parameter addendum.) +* :ghpull:`17814`: Don't duplicate deprecated parameter addendum. +* :ghpull:`17772`: Partially fix rubberbanding in GTK3. +* :ghpull:`17797`: Fix running contour's test_internal_cpp_api directly. +* :ghpull:`17809`: Backport PR #17801 on branch v3.3.x (BUG: Fix implementation of _is_closed_polygon) +* :ghpull:`17801`: BUG: Fix implementation of _is_closed_polygon +* :ghpull:`17796`: Backport PR #17764 on branch v3.3.x (FIX: be more careful about not importing pyplot early) +* :ghpull:`17795`: Backport PR #17781 on branch v3.3.x (Fix limit setting after plotting empty data) +* :ghpull:`17764`: FIX: be more careful about not importing pyplot early +* :ghpull:`17781`: Fix limit setting after plotting empty data +* :ghpull:`17787`: Backport PR #17784 on branch v3.3.x (Allow passing empty list of ticks to FixedLocator) +* :ghpull:`17784`: Allow passing empty list of ticks to FixedLocator +* :ghpull:`17766`: Backport PR #17752 on branch v3.3.x (Numpydoc-ify various functions) +* :ghpull:`17752`: Numpydoc-ify various functions +* :ghpull:`17762`: Backport PR #17742 on branch v3.3.x (Update tricontour[f] docs) +* :ghpull:`17742`: Update tricontour[f] docs +* :ghpull:`17760`: Backport PR #17756 on branch v3.3.x (Fix tk tooltips for dark themes.) +* :ghpull:`17756`: Fix tk tooltips for dark themes. +* :ghpull:`17747`: Backport PR #17731 on branch v3.3.x ("Fix" tight_layout for template backend.) +* :ghpull:`17731`: "Fix" tight_layout for template backend. +* :ghpull:`17739`: Backport PR #17734 on branch v3.3.x (Oversample thumbnail x2) +* :ghpull:`17734`: Oversample thumbnail x2 +* :ghpull:`17738`: Backport PR #17729 on branch v3.3.x (Fix type doc for scroll event "step" attribute.) +* :ghpull:`17729`: Fix type doc for scroll event "step" attribute. +* :ghpull:`17724`: Backport PR #17720 on branch v3.3.x (Fix check for manager = None.) +* :ghpull:`17720`: Fix check for manager = None. +* :ghpull:`17719`: Backport PR #17693 on branch v3.3.x (DOC: Add svg2pdf converter for generating PDF docs.) +* :ghpull:`17693`: DOC: Add svg2pdf converter for generating PDF docs. +* :ghpull:`17718`: Backport PR #17715 on branch v3.3.x (Clarify gridspec error message for non-integer inputs.) +* :ghpull:`17717`: Backport PR #17705 on branch v3.3.x (Keep cachedRenderer as None when pickling Figure.) +* :ghpull:`17715`: Clarify gridspec error message for non-integer inputs. +* :ghpull:`17705`: Keep cachedRenderer as None when pickling Figure. +* :ghpull:`17701`: Backport PR #17687 on branch v3.3.x (Mention keyboard modifiers in toolbar tooltip texts.) +* :ghpull:`17687`: Mention keyboard modifiers in toolbar tooltip texts. +* :ghpull:`17698`: Backport PR #17686 on branch v3.3.x (Fix tooltip for wx toolbar.) +* :ghpull:`17686`: Fix tooltip for wx toolbar. +* :ghpull:`17692`: Backport PR #17680 on branch v3.3.x (MNT: migrate away from deprecated c-api) +* :ghpull:`17680`: MNT: migrate away from deprecated c-api +* :ghpull:`17688`: Backport PR #17676 on branch v3.3.x (FIX: correctly process the tick label size) +* :ghpull:`17676`: FIX: correctly process the tick label size +* :ghpull:`17677`: Backport PR #17664 on branch v3.3.x (Clarify docs of AutoDateLocator.intervald) +* :ghpull:`17678`: Backport PR #17665 on branch v3.3.x (Document that some single char colors are shaded) +* :ghpull:`17679`: Backport PR #17675 on branch v3.3.x (DOC: specify that the LaTeX installation needs to include cm-super) +* :ghpull:`17675`: DOC: specify that the LaTeX installation needs to include cm-super +* :ghpull:`17665`: Document that some single char colors are shaded +* :ghpull:`17664`: Clarify docs of AutoDateLocator.intervald +* :ghpull:`17672`: Backport PR #17668 on branch v3.3.x (Don't pass "wrong" ``indent=False`` in SVG generation.) +* :ghpull:`17671`: Backport PR #17667 on branch v3.3.x (Don't linewrap css in svg header.) +* :ghpull:`17668`: Don't pass "wrong" ``indent=False`` in SVG generation. +* :ghpull:`17667`: Don't linewrap css in svg header. +* :ghpull:`17666`: Prepare for 3.3.0 rc1 +* :ghpull:`17663`: DOC: update the gh stats for v3.3.0 +* :ghpull:`17656`: Fix default colouring of Shadows +* :ghpull:`17657`: V3.2.x mergeup +* :ghpull:`17623`: Add a flag for disabling LTO. +* :ghpull:`17569`: Delay \usepackage{textcomp} until after the custom tex preamble. +* :ghpull:`17416`: Reorder NavigationToolbar2 methods. +* :ghpull:`17604`: DOC: Clarify offset notation and scientific notation +* :ghpull:`17617`: Rewrite pdf test to use check_figures_equal. +* :ghpull:`17654`: Small fixes to recent What's New +* :ghpull:`17649`: MNT: make _setattr_cm more forgiving +* :ghpull:`17644`: Doc 33 whats new consolidation +* :ghpull:`17647`: Fix example in docstring of cbook._unfold. +* :ghpull:`10187`: DOC: add a blitting tutorial +* :ghpull:`17471`: Removed idiomatic constructs from interactive figures docs +* :ghpull:`17639`: DOC: Update colormap deprecation warning to use Python's copy function. +* :ghpull:`17223`: Warn on invalid savefig keyword arguments +* :ghpull:`17625`: Give _DummyAxis instances a __name__ +* :ghpull:`17636`: Fix image vlim clipping again +* :ghpull:`17635`: Fix autoscaling with tiny sticky values. +* :ghpull:`17620`: MNT: make _setattr_cm more conservative +* :ghpull:`17621`: FIX: restore ability to pass a tuple to axes_class in axes_grid +* :ghpull:`16603`: axes collage +* :ghpull:`17622`: Fix typo in description of savefig.bbox. +* :ghpull:`17619`: Skip test_tmpconfigdir_warning when running as root. +* :ghpull:`17610`: MNT: allow 0 sized figures +* :ghpull:`17163`: Fix clipping of markers in PDF backend. +* :ghpull:`17556`: DOC: Update contributor listing in credits +* :ghpull:`17221`: Add metadata saving support to SVG. +* :ghpull:`17603`: Replace image comparison in test_axes_grid1 by geometry checks. +* :ghpull:`17428`: Doc start 33 merges +* :ghpull:`17607`: Convert adjust_bbox to use ExitStack. +* :ghpull:`17575`: DOCS: update collections.py docstrings to current doc conventions +* :ghpull:`15826`: Fix bar3d bug with matching color string and array x lengths +* :ghpull:`14507`: Simplify handling of Qt modifier keys. +* :ghpull:`17589`: Fix doc build with Sphinx < 3. +* :ghpull:`17590`: Clarify docs of set_powerlimits() +* :ghpull:`17597`: MNT: cleanup minor style issues +* :ghpull:`17183`: Update configuration of CircleCI builds +* :ghpull:`17592`: Improve docstrings of ScalarFormatter +* :ghpull:`17456`: Improve stackplot example +* :ghpull:`17545`: Improve docs of markers +* :ghpull:`17233`: Improve PDF metadata support in PGF +* :ghpull:`17086`: Remove jQuery & jQuery UI +* :ghpull:`17580`: Fix same_color() for 'none' color +* :ghpull:`17582`: Fix link in doc +* :ghpull:`17491`: DOC: Only link to overall Zenodo DOI. +* :ghpull:`17515`: FIX: add set_box_aspect, improve tight bounding box for Axes3D + fix bbox_inches support with fixed box_aspect +* :ghpull:`17581`: DOC: Remove duplicate Returns in subplot2grid. +* :ghpull:`17550`: Update subplot2grid doc to use Figure.add_gridspec, not GridSpec. +* :ghpull:`17544`: markerfacecolor should not override fillstyle='none' in plot() +* :ghpull:`15672`: Remove mention that tkagg was derived from PIL. +* :ghpull:`17573`: Examples: fix formatting issue in 'Errorbar limit selection' +* :ghpull:`17543`: Fix linewidths and colors for scatter() with unfilled markers +* :ghpull:`17448`: Add example for drawing an error band around a curve +* :ghpull:`17572`: Examples: clarity for 'set and get' example page +* :ghpull:`17276`: Allow numpy arrays in markevery +* :ghpull:`17536`: Consolidate some tests and fix a couple typos +* :ghpull:`17558`: Simplify plot_date() +* :ghpull:`17534`: Fmaussion extended boundary norm +* :ghpull:`17540`: Fix help window on GTK. +* :ghpull:`17535`: Update docs on subplot2grid / SubplotBase +* :ghpull:`17510`: Fix exception handling in FT2Font init. +* :ghpull:`16953`: Changed 'colors' paramater in PyPlot vlines/hlines and Axes vlines/hlines to default to configured rcParams 'lines.color' option +* :ghpull:`17459`: Use light icons on dark themes for wx and gtk, too. +* :ghpull:`17539`: Use symbolic icons for buttons in GTK toolbar. +* :ghpull:`15435`: Reuse png metadata handling of imsave() in FigureCanvasAgg.print_png(). +* :ghpull:`5034`: New "extend" keyword to colors.BoundaryNorm +* :ghpull:`17532`: DOC: correct legend.title_fontsize docstring +* :ghpull:`17531`: Remove unneeded check/comment re: multiprocessing in setup.py. +* :ghpull:`17522`: Privatize ttconv module. +* :ghpull:`17517`: Make sure _parent is in sync with Qt parent in NavigationToolbar2QT +* :ghpull:`17525`: DOC/API: set __qualname__ when using class factory +* :ghpull:`17511`: Fix offset legend tightbbox +* :ghpull:`16203`: Port fontconfig's font weight detection to font_manager. +* :ghpull:`17485`: Support marking a single artist as not-usetex. +* :ghpull:`17338`: Support url on more Artists in svg +* :ghpull:`17519`: Prefer demo'ing rcParams rather than rc in examples. +* :ghpull:`13457`: Give ``AnnotationBbox`` an opinion about its extent +* :ghpull:`15037`: Simplifications to errorbar(). +* :ghpull:`17493`: Update SVGs that use interpolation='none'. +* :ghpull:`15221`: Don't fallback to agg in tight_layout.get_renderer. +* :ghpull:`17512`: DOC: remove inkscape restriction in doc +* :ghpull:`17484`: Deprecate ismath parameter to draw_tex and ismath="TeX!". +* :ghpull:`17492`: Correctly set default linewidth for unfilled markers. +* :ghpull:`16908`: Adding 2d support to quadmesh set_array +* :ghpull:`17506`: Fix dicts unpacking for ``.plot`` +* :ghpull:`17496`: Fix some incorrect image clipping +* :ghpull:`17340`: convert some sample plots to use plt.subplots() instead of other methods +* :ghpull:`17504`: Undocument parameter orientation of bar() +* :ghpull:`13884`: Add some documentation for axisartist's ExtremeFinder, plus some cleanups. +* :ghpull:`17495`: Fix Pillow import in testing. +* :ghpull:`17462`: Inline FigureCanvasGtkFoo._render_figure. +* :ghpull:`17474`: Numpydocify RectangleSelector docstring. +* :ghpull:`17003`: Optimize extensions with LTO and hidden visibility +* :ghpull:`17489`: BUG: Picking vertical line broken +* :ghpull:`17486`: Simplify handling of fontproperties=None. +* :ghpull:`17478`: Add support for blitting in qt5cairo. +* :ghpull:`15641`: Make get_sample_data autoload npy/npz files. +* :ghpull:`17481`: Fix LightSource.shade on fully unmasked array. +* :ghpull:`17289`: Prepare for ragged array warnings in NumPy 1.19 +* :ghpull:`17358`: Fix masked CubicTriInterpolator +* :ghpull:`17477`: DOC: Use Sphinx-gallery animation capture +* :ghpull:`17482`: Shorten RectangleSelector._release. +* :ghpull:`17475`: Cleanup RectangleSelector example. +* :ghpull:`17461`: Deprecate the private FigureCanvasGTK3._renderer_init. +* :ghpull:`17464`: Fold _make_nseq_validator into _listify_validator. +* :ghpull:`17469`: Use qVersion, not QT_VERSION_STR -- the latter doesn't exist in PySide2. +* :ghpull:`4779`: DOC: Start to document interactive figures +* :ghpull:`17458`: Cleanup C++ code +* :ghpull:`17466`: DOC: clarify that milestones are intentions not approvals +* :ghpull:`17062`: Fix to "exported SVG files blurred in viewers" +* :ghpull:`17443`: Fix rcParams validator for dashes. +* :ghpull:`17350`: Move integerness checks to SubplotSpec._from_subplot_args. +* :ghpull:`17444`: Support odd-length dash patterns in Agg. +* :ghpull:`17405`: Show the failing line in bad-rcparams warnings. +* :ghpull:`17452`: Make validate_date throw ValueError, not RuntimeError. +* :ghpull:`17439`: Remove comment re: validation of datetime format strings. +* :ghpull:`17438`: Discourage use of proprietary Matplotlib names for freetype hinting +* :ghpull:`16990`: update testing helpers +* :ghpull:`16340`: Make set_x/ymargin() update axes limits, just like margins(). +* :ghpull:`15029`: Get default params from matplotlibrc.template. +* :ghpull:`17363`: Fix toolbar separators in wx+toolmanager. +* :ghpull:`17348`: Avoid creating a Tick in Axis.get_tick_space. +* :ghpull:`15725`: Changed line color of boxplot for dark_background +* :ghpull:`17362`: Remove status bars in toolmanager mode as well. +* :ghpull:`16551`: DOC: be more opinionated about flags passed to pip +* :ghpull:`17328`: Fixes icon clipping issue with WxAgg NavigationToolbar2 for wxpython 4.1.0 +* :ghpull:`17425`: fix typo in stem doc +* :ghpull:`17415`: Cygwin fixes +* :ghpull:`17401`: FIX: Fix for FFmpeg + GIF +* :ghpull:`16569`: MNT: improve the error message in Path init +* :ghpull:`17404`: Don't forget to dlclose() main_program in tkagg init. +* :ghpull:`17414`: Keep validate_date private. +* :ghpull:`17413`: Revert "DOC: drop the experimental tag constrained_layout and tight_layout" +* :ghpull:`17394`: Deprecate passing keys to update_keymap as single comma-separated string +* :ghpull:`17395`: TexManager fixes. +* :ghpull:`17399`: Remove qt4 backends from backend fallback candidates. +* :ghpull:`17392`: Clarify deprecation message re: tex/pgf preambles as list-of-strings. +* :ghpull:`17400`: Cleanup wx examples. +* :ghpull:`17378`: Fix marker overlap +* :ghpull:`17351`: Fix running the test suite with inkscape>=1. +* :ghpull:`17382`: FIX: properly check figure on gridspec +* :ghpull:`17390`: Small updates to troubleshooting guide. +* :ghpull:`15104`: Simplify file handling in ft2font. +* :ghpull:`17380`: Support standard names for freetype hinting flags. +* :ghpull:`15594`: Fix marker overlap +* :ghpull:`17372`: Auto-set artist.mouseover based on if get_cursor_data is overridden. +* :ghpull:`17377`: Remove code for sphinx < 1.8 +* :ghpull:`17266`: Keep explicit ticklabels in sync with ticks from FixedLocator +* :ghpull:`17359`: Fix running test_internal_cpp_api directly. +* :ghpull:`17355`: Change subprocess for inkscape version detection +* :ghpull:`17369`: CI: Add eslint for JS linting +* :ghpull:`17226`: Replace backend_driver by new example runner. +* :ghpull:`17365`: Also use light color tool buttons in qt+toolmanager+dark theme. +* :ghpull:`17366`: Restrict Qt toolbars to top/bottom of canvas. +* :ghpull:`17361`: Remove randomness from test_colorbar_get_ticks_2. +* :ghpull:`17151`: Cleanup colors.py docstrings. +* :ghpull:`17287`: Make API of get_tightbbox more consistent between Axes and Axis. +* :ghpull:`17092`: Don't create a statusbar in Qt, wx backends. +* :ghpull:`17220`: Simplify Annotation and Text bbox drawing. +* :ghpull:`17353`: Make zooming work in qt-embedding example. +* :ghpull:`16727`: Update xtick.alignment parameter in rcsetup to validate against correct values +* :ghpull:`17236`: Add the "contour.linewidths" configuration option +* :ghpull:`16328`: Make Artist.set() apply properties in the order in which they are given. +* :ghpull:`9696`: FIX: set_url() without effect in the plot for instances of Tick +* :ghpull:`17002`: Fix AnnotationBbox picking and a bit of cleanup +* :ghpull:`17256`: Improve ps handling of individual usetex strings. +* :ghpull:`17267`: Improve image comparison decorator +* :ghpull:`17332`: Cleanup docstring of subplots(). +* :ghpull:`16843`: Deprecate is_pyqt5. +* :ghpull:`15898`: New textcolor kwarg for legend +* :ghpull:`17333`: Make sharex, etc. args of subplots() keyword-only. +* :ghpull:`17329`: Improve docs of eventplot() +* :ghpull:`17330`: Remove pnpoly license. +* :ghpull:`13656`: For single datasets, don't wrap artist added by Axes.hist in silent_list +* :ghpull:`16247`: DOC added kwargs and tight_layout description in plt.figure +* :ghpull:`16992`: Implement FigureManager.resize for macosx backend +* :ghpull:`17324`: DOC: add offset axes to secondary_axes +* :ghpull:`17311`: Make pyplot signatures of rgrids() and thetagrids() explicit +* :ghpull:`17302`: Fix alignment of offset text on top axis. +* :ghpull:`14421`: Add GridSpec.subplots() +* :ghpull:`15111`: By default, don't change the figure face/edgecolor on savefig(). +* :ghpull:`17318`: both x and y should multiply the radius +* :ghpull:`17309`: Cleanup parameter types in docstrings +* :ghpull:`17308`: Improve docs of bar() and barh() +* :ghpull:`17312`: changed axis to axes in lifecycle tutorial +* :ghpull:`16715`: Automatically create tick formatters for str and callable inputs. +* :ghpull:`16959`: Simplify and robustify ConnectionPatch coordinates conversion. +* :ghpull:`17306`: FIX: CL more stable +* :ghpull:`17301`: Use deprecate_privatize_attribute more. +* :ghpull:`16985`: Adds normalize kwarg to pie function +* :ghpull:`5243`: Enhancement of tick label offset text positioning +* :ghpull:`17292`: Deprecate various wx Toolbar attributes. +* :ghpull:`17297`: Simplify pickling support. +* :ghpull:`17298`: Fix rubberband in tk. +* :ghpull:`17299`: Avoid "dash motion" in qt zoom box. +* :ghpull:`17200`: Implement set_history_buttons for Tk toolbar. +* :ghpull:`16798`: Make the Qt interactive zoom rectangle black & white. +* :ghpull:`17296`: Fix doc wording +* :ghpull:`17282`: Don't divide by zero in Line2D.segment_hits. +* :ghpull:`17293`: Fix incorrect deprecation. +* :ghpull:`17285`: V32 mergeup +* :ghpull:`15933`: Warn if a temporary config/cache dir must be created. +* :ghpull:`15911`: Use os.getpid() in configdir, to avoid multiprocess concurrency issues +* :ghpull:`17277`: Move slow FontManager warning to FontManager constructor. +* :ghpull:`17222`: FIX: long titles x/ylabel layout +* :ghpull:`14960`: Don't generate individual doc entries for inherited Axes/Axis/Tick methods +* :ghpull:`17175`: Further sync axes_grid colorbars with standard colorbars. +* :ghpull:`17030`: Move widget functions into matplotlib.testing.widgets. +* :ghpull:`16975`: Fix "out of bounds" undefined behavior +* :ghpull:`17111`: Deprecate NavigationToolbar2._init_toolbar. +* :ghpull:`15275`: adds turbo colormap +* :ghpull:`17174`: Inline RGBAxes._config_axes to its only call site. +* :ghpull:`17156`: Deprecate text.latex.preview rcParam. +* :ghpull:`17242`: Make deprecations versions explicit +* :ghpull:`17165`: Small optimizations to scale and translate of Affine2D +* :ghpull:`17181`: Inline some private helper methods in ColorbarBase + small refactors. +* :ghpull:`17264`: Don't trigger save when gtk save dialog is closed by escape. +* :ghpull:`17262`: fix typo in set_clip_on doc +* :ghpull:`17234`: Shorten and privatize qt's UiSubplotTool. +* :ghpull:`17137`: Deprecate Toolbar.press/release; add helper to find overridden methods. +* :ghpull:`17245`: Improve error handling in _parse_scatter_color_args +* :ghpull:`15008`: ENH: add variable epoch +* :ghpull:`17260`: Text Rotation Example: Correct roation_mode typo +* :ghpull:`17258`: Improve info logged by tex subsystem. +* :ghpull:`17211`: Deprecate support for running svg converter from path contaning newline. +* :ghpull:`17078`: Improve nbAgg & WebAgg toolbars +* :ghpull:`17191`: Inline unsampled-image path; remove renderer kwarg from _check_unsampled_image. +* :ghpull:`17213`: Replace use of Bbox.bounds by appropriate properties. +* :ghpull:`17219`: Add support for suptitle() in tight_layout(). +* :ghpull:`17235`: More axisartist cleanups +* :ghpull:`17239`: Remove deprecations that expire in 3.3 +* :ghpull:`13696`: Deprecate offset_position="data". +* :ghpull:`16991`: Begin warning on modifying global state of colormaps +* :ghpull:`17053`: Replace most jQuery with vanilla JavaScript +* :ghpull:`17228`: Make params to pyplot.tight_layout keyword-only. +* :ghpull:`17225`: Remove Patch visibility tracking by Legend & OffsetBox. +* :ghpull:`17027`: Fix saving nbAgg figure after a partial blit +* :ghpull:`16847`: Ticks are not markers +* :ghpull:`17229`: Autogenerate subplots_adjust with boilerplate.py. +* :ghpull:`17209`: Simplify some axisartist code. +* :ghpull:`17204`: Draw unfilled hist()s with the zorder of lines. +* :ghpull:`17205`: Shorten tight_layout code. +* :ghpull:`17218`: Document ``Transform.__add__`` and ``.__sub__``. +* :ghpull:`17215`: Small cleanups. +* :ghpull:`17212`: Cleanup text.py. +* :ghpull:`17196`: Move polar tests to their own module. +* :ghpull:`14747`: Deprecate AxisArtist.dpi_transform. +* :ghpull:`13144`: Deprecate NavigationToolbar2GTK3.ctx. +* :ghpull:`17202`: DOC: Remove extra word +* :ghpull:`17194`: Small cleanups/simplifications/fixes to pie(). +* :ghpull:`17102`: Switch tk pan/zoom to use togglable buttons. +* :ghpull:`16832`: Correctly compute path extents +* :ghpull:`17193`: Document docstring quote convention +* :ghpull:`17195`: Fix polar tests. +* :ghpull:`17189`: Make all parameters of ColorbarBase, except ``ax``, keyword-only. +* :ghpull:`16717`: Bugfix for issue 16501 raised ValueError polar subplot with (thetamax - thetamin) > 2pi +* :ghpull:`17180`: Doc: spines arrows example +* :ghpull:`17184`: Fix various small typos. +* :ghpull:`17143`: Move linting to GitHub Actions with reviewdog. +* :ghpull:`17160`: Correctly go through property setter when init'ing Timer interval. +* :ghpull:`17166`: Deprecate ScalarMappable.check_update and associated machinery. +* :ghpull:`17177`: Manually linewrap PS hexlines. Fixes #17176 +* :ghpull:`17162`: Update docs of rc_context() +* :ghpull:`17170`: Convert SubplotZero example into centered-spines-with-arrows recipe. +* :ghpull:`17164`: Fix Figure.add_axes(rect=...). +* :ghpull:`17154`: DOC: Fix some warning and unreproducibility +* :ghpull:`17169`: Clarify that draw_event occurs after the canvas draw. +* :ghpull:`17089`: Cleanup some imports in tests +* :ghpull:`17040`: Improve docs on automated tests +* :ghpull:`17145`: CI: run pydocstyle with our custom options +* :ghpull:`16864`: Check parameter type for legend(labels) +* :ghpull:`17146`: FigureManager/NavigationToolbar2 cleanups. +* :ghpull:`16933`: Add tests for toolmanager. +* :ghpull:`17127`: ENH: allow title autopositioning to be turned off +* :ghpull:`17150`: Many docstring cleanups. +* :ghpull:`17148`: Fix most instances of D404 ("docstring should not start with 'this'"). +* :ghpull:`17142`: BUGFIX: conditional for add_axes arg deprecation +* :ghpull:`17032`: Fold table.CustomCell into Cell. +* :ghpull:`17117`: TextBox improvements. +* :ghpull:`17108`: Make widgets.TextBox work also when embedding. +* :ghpull:`17135`: Simplify pan/zoom toggling. +* :ghpull:`17134`: Don't override update() in NavigationToolbar2Tk. +* :ghpull:`17129`: In docs remove 'optional' if 'default' can be given +* :ghpull:`16963`: Deprecate Locator.refresh and associated helpers. +* :ghpull:`17133`: Fix Button widget motion callback. +* :ghpull:`17125`: Make multiline docstrings start with a newline. +* :ghpull:`17124`: Widgets cleanup. +* :ghpull:`17123`: Cleanup/Simplify Cell._set_text_position. +* :ghpull:`16862`: FIX: turn off title autopos if pad is set +* :ghpull:`15214`: Inline wx icon loading. +* :ghpull:`16831`: Simplify interactive zoom handling. +* :ghpull:`17094`: DOC: drop the experimental tag constrained_layout and tight_layout +* :ghpull:`17101`: Avoid "wrapped C/C++ object has been deleted" when closing wx window. +* :ghpull:`17028`: Changed return type of get_{x,y}ticklabels to plain list +* :ghpull:`16058`: Deprecate {ContourSet,Quiver}.ax in favor of .axes. +* :ghpull:`15349`: Use checkboxes as bullet points for the PR review checklists +* :ghpull:`17112`: Fix some link redirects in docs +* :ghpull:`17090`: DOCS: add examples of how one "should" use Bbox +* :ghpull:`17110`: Simplify connection of the default key_press and button_press handlers. +* :ghpull:`17070`: Cleanups to Qt backend. +* :ghpull:`16776`: Make cursor text precision actually correspond to pointing precision. +* :ghpull:`17026`: Add eslint & prettier, and re-format JS +* :ghpull:`17091`: Make sure slider uses "x" sign before multiplicative factor. +* :ghpull:`17082`: Cleanup TextBox implementation. +* :ghpull:`17067`: Simplify and generalize _set_view_from_bbox. +* :ghpull:`17081`: Update animation_api.rst +* :ghpull:`17077`: Improve default formatter for Slider values. +* :ghpull:`17079`: Use True instead of 1 for boolean parameters. +* :ghpull:`17074`: Fixed a typo in Lifecycle of a Plot +* :ghpull:`17072`: Cleanup multi_image example. +* :ghpull:`15287`: Allow sharex/y after axes creation. +* :ghpull:`16987`: Deprecate case-insensitive properties. +* :ghpull:`17059`: More missing refs fixes, and associated doc rewordings. +* :ghpull:`17057`: Simplify subgridspec example/tutorial. +* :ghpull:`17058`: Fix minor doc typos. +* :ghpull:`17024`: Clarify docs of Rectangle +* :ghpull:`17043`: Avoid spurious deprecation warning in TextBox. +* :ghpull:`17047`: Highlighted .cbook.warn_deprecated() in contributing.rst +* :ghpull:`17054`: Use slope in axline example +* :ghpull:`17048`: More missing refs fixes. +* :ghpull:`17021`: File name made more understandable +* :ghpull:`16903`: Shorten implementation of Axes methods that just wrap Axis methods. +* :ghpull:`17039`: Cleanups to contour docs. +* :ghpull:`17011`: ci: Publish result images as Azure artifacts. +* :ghpull:`17038`: Improve readability of documenting_mpl.rst +* :ghpull:`16996`: Clean up get_proj() docstring (used view_init docstring as reference) +* :ghpull:`17019`: Add return field to documentation of 'get_major_ticks' +* :ghpull:`16999`: Add section on artifacts to imshow docs +* :ghpull:`17029`: Fix table.Cell docstrings. +* :ghpull:`17025`: Fix RecursionError when closing nbAgg figures. +* :ghpull:`16971`: Don't change Figure DPI if value unchanged +* :ghpull:`16972`: Fix resize bugs in GTK +* :ghpull:`17008`: Change the description of Rectangle's xy parameter +* :ghpull:`16337`: Create axline() using slope +* :ghpull:`16947`: Fix missing parameter initialization in Axes.specgram() +* :ghpull:`17001`: Cleanup imshow_extent tutorial. +* :ghpull:`17000`: More stringent eventplot orientations. +* :ghpull:`16771`: Deprecate non-string values as legend labels +* :ghpull:`15910`: Simplify init of EventCollection. +* :ghpull:`16998`: Made INSTALL.rst consistent +* :ghpull:`15393`: Cleanup shape manipulations. +* :ghpull:`10924`: Clear() methods to Radio and CheckButtons and other improvements +* :ghpull:`16988`: Make plt.{r,theta}grids act as setters even when all args are kwargs. +* :ghpull:`16986`: update tox.ini to match pythons supported and allow flags for pytest +* :ghpull:`16111`: Move locking of fontlist.json *into* json_dump. +* :ghpull:`13110`: Slightly tighten the Bbox/Transform API. +* :ghpull:`16973`: TST: don't actually render 1k+ date ticks +* :ghpull:`16967`: Simplify animation writer fallback. +* :ghpull:`16812`: Bezier/Path API Cleanup: fix circular import issue +* :ghpull:`16968`: Add link to 3.2 min-supported-requirements. +* :ghpull:`16957`: Remove unused, private aliases Polygon._{get,set}_xy. +* :ghpull:`16960`: Improve error for quoted values in matplotlibrc. +* :ghpull:`16530`: Fix violinplot support list of pandas.Series +* :ghpull:`16939`: Cleanup/tighten axes_grid. +* :ghpull:`16942`: Cleanup and avoid refleaks OSX Timer__timer_start. +* :ghpull:`16944`: TST: update default junit_family +* :ghpull:`16823`: Dedupe implementation of axes grid switching in toolmanager. +* :ghpull:`16951`: Cleanup dates docstrings. +* :ghpull:`16769`: Fix some small style issues +* :ghpull:`16936`: FIX: Plot is now rendered with correct inital value +* :ghpull:`16937`: Making sure to keep over/under/bad in cmap resample/reverse. +* :ghpull:`16915`: Tighten/cleanup wx backend. +* :ghpull:`16923`: Test the macosx backend on Travis. +* :ghpull:`15369`: Update style docs +* :ghpull:`16893`: Robustify ``AffineBase.__eq__`` against comparing to other classes. +* :ghpull:`16904`: Turn fontdict & minor into kwonly parameters for set_{x,y}ticklabels. +* :ghpull:`16917`: Add test for close_event. +* :ghpull:`16920`: Remove unused _read_ppm_image from macosx.m. +* :ghpull:`16877`: Cleanup new_fixed_axis examples. +* :ghpull:`15049`: Annotate argument in axes class match upstream +* :ghpull:`16774`: Cleanup demo_axes_hbox_divider. +* :ghpull:`16873`: More fixes to pydocstyle D403 (First word capitalization) +* :ghpull:`16896`: set_tick_params(label1On=False) should also make offset text invisible. +* :ghpull:`16907`: Fix typo in implementation of quit_all_keys. +* :ghpull:`16900`: Document and test common_texification() +* :ghpull:`16902`: Remove dot from suffix in testing.compare. +* :ghpull:`16828`: Use more _setattr_cm, thus fix Text('').get_window_extent(dpi=...) +* :ghpull:`16901`: Cleanup many docstrings. +* :ghpull:`16840`: Deprecate support for Qt4. +* :ghpull:`16899`: Remove optional returns from TriAnalyzer._get_compressed_triangulation. +* :ghpull:`16618`: Use SubplotSpec row/colspans more, and deprecate get_rows_columns. +* :ghpull:`15392`: Autoscale for ax.arrow() +* :ghpull:`14626`: Add support for minor ticks in 3d axes. +* :ghpull:`16897`: Add back missing import. +* :ghpull:`14725`: Move the debug-mode TransformNode.write_graphviz out. +* :ghpull:`15437`: Improve handling of alpha when saving to jpeg. +* :ghpull:`15606`: Simplify OldAutoLocator and AutoDateLocator. +* :ghpull:`16863`: Shortcut for closing all figures +* :ghpull:`16876`: Small cleanups to dviread. +* :ghpull:`15680`: Use more kwonly arguments, less manual kwargs-popping. +* :ghpull:`15318`: Deprecate unused rcParams["animation.html_args"]. +* :ghpull:`15303`: Make it possible to use rc_context as a decorator. +* :ghpull:`16890`: Enables hatch alpha on SVG +* :ghpull:`16887`: Shorter event mocking in tests. +* :ghpull:`16881`: Validate tickdir strings +* :ghpull:`16846`: Disconnect manager when resizing figure for animation saving. +* :ghpull:`16871`: Shorter Path import in setupext. +* :ghpull:`16892`: Warn in the docs that MouseEvent.key can be wrong. +* :ghpull:`16209`: Dedupe boilerplate for "adoption" of figure into pyplot. +* :ghpull:`16098`: Deprecate parameter props of Shadow +* :ghpull:`15747`: Move Text init to end of Annotation init. +* :ghpull:`15679`: np.concatenate cleanups. +* :ghpull:`16778`: Remove more API deprecated in 3.1(part 7) +* :ghpull:`16886`: Finish removing mentions of idle_event. +* :ghpull:`16882`: Fix trivial docstring typos. +* :ghpull:`16874`: Fix pydocstyle D209 (Multi-line docstring closing separate line) +* :ghpull:`14044`: Remove font preamble caching in TexManager. +* :ghpull:`16724`: Fixed incorrect colour in ErrorBar when Nan value is presented +* :ghpull:`15254`: Propagate signature-modifying decorators to pyplot wrappers. +* :ghpull:`16868`: Update release guide +* :ghpull:`14442`: In the build, declare all (compulsory) extension modules together. +* :ghpull:`16866`: Cleanup/update deprecations. +* :ghpull:`16850`: use validate_[cap/join]style +* :ghpull:`16858`: Fix various numpydoc style issues +* :ghpull:`16848`: Cleanup CI setup +* :ghpull:`16845`: Fix checking of X11 builds with PySide2. +* :ghpull:`14199`: Deprecate Path helpers in bezier.py +* :ghpull:`16838`: Inline some more kwargs into setup.py's setup() call. +* :ghpull:`16841`: Cleanup errorbar subsampling example +* :ghpull:`16839`: spines doc cleanup +* :ghpull:`16844`: fix example hist(density=...) +* :ghpull:`16827`: Fix warnings in doc examples +* :ghpull:`16772`: Remove more API deprecated in 3.1 +* :ghpull:`16822`: fix bug where make_compound_path kept all STOPs +* :ghpull:`16819`: Destroy figures by manager instance, not by number. +* :ghpull:`16824`: Deprecate NavigationToolbar2QT.parent. +* :ghpull:`16825`: Don't use deprecated Gtk add_with_viewport. +* :ghpull:`16816`: Merge v3.2.x into master +* :ghpull:`16786`: Simple cleanups to formatters. +* :ghpull:`16807`: Update barchart_demo. +* :ghpull:`16804`: Deprecate some mathtext glue helper classes. +* :ghpull:`16808`: One more instance of check_in_list. +* :ghpull:`16802`: Fix incorrect super class of VCentered. +* :ghpull:`16789`: Update markup for collections docstrings. +* :ghpull:`16781`: Update image tutorial wrt. removal of native png handler. +* :ghpull:`16787`: Avoid vstack() when possible. +* :ghpull:`16689`: Add a fast path for NumPy arrays to Collection.set_verts +* :ghpull:`15373`: Further shorten quiver3d computation... +* :ghpull:`16780`: Don't import rcParams but rather use mpl.rcParams (part 3) +* :ghpull:`16775`: Cleanup axes_divider examples. +* :ghpull:`15949`: Simplify implementation of SubplotTool. +* :ghpull:`14869`: Deduplicate code for text-to-path conversion in svg backend. +* :ghpull:`16527`: Validate positional parameters of add_subplot() +* :ghpull:`15622`: Cleanup mpl_toolkits locators. +* :ghpull:`16744`: Reword axes_divider tutorial. +* :ghpull:`16746`: Reword colorbar-with-axes-divider example. +* :ghpull:`15211`: Various backend cleanups. +* :ghpull:`15890`: Remove API deprecated in 3.1 (part 2) +* :ghpull:`16757`: Simplify interactive zoom handling. +* :ghpull:`15515`: Combine withEffect PathEffect definitions. +* :ghpull:`15977`: pgf backend cleanups. +* :ghpull:`15981`: Reuse colorbar outline and patch when updating the colorbar. +* :ghpull:`14852`: Use Path.arc() to interpolate polar arcs. +* :ghpull:`16686`: Deprecate Substitution.from_params. +* :ghpull:`16675`: Vectorize patch extraction in Axes3D.plot_surface +* :ghpull:`15846`: Standardize signature mismatch error messages. +* :ghpull:`16740`: Fix type of ``dpi`` in docstrings. +* :ghpull:`16741`: Dedupe RGBAxes examples. +* :ghpull:`16755`: Reword docstring of panning callbacks, and pass them a MouseButton. +* :ghpull:`16749`: Document behavior of savefig("extensionless-name"). +* :ghpull:`16754`: Cleanup image.py. +* :ghpull:`14606`: Generic cleanup to hist(). +* :ghpull:`16692`: Allow MarkerStyle instances as input for lines +* :ghpull:`15479`: Cleanup axes_rgb. +* :ghpull:`16617`: Use Path(..., closed=True) more. +* :ghpull:`16710`: Make format_coord messagebox resize with the window and the content in osx backend +* :ghpull:`16681`: Simplify docstring interpolation for Box/Arrow/ConnectionStyles. +* :ghpull:`16576`: Deprecate arg-less calls to subplot_class_factory (and similar factories) +* :ghpull:`16652`: Deprecate {Locator,Axis}.{pan,zoom}. +* :ghpull:`16596`: Deprecate dviread.Encoding. +* :ghpull:`16231`: Deprecate JPEG-specific kwargs and rcParams to savefig. +* :ghpull:`16636`: Deprecate autofmt_xdate(which=None) to mean which="major". +* :ghpull:`16644`: Deprecate validate_webagg_address. +* :ghpull:`16619`: Fix overindented lines. +* :ghpull:`15233`: backend_ps cleanup. +* :ghpull:`16604`: Deprecate more rc validators. +* :ghpull:`16601`: Small unrelated cleanups. +* :ghpull:`16584`: Rename font_bunch to psfont in textpath. +* :ghpull:`16023`: Dedupe implementations of fill_between & fill_betweenx. +* :ghpull:`16485`: Simplify validate_color_for_prop_cycle. +* :ghpull:`16285`: Deprecate RendererCairo.font{weights,angles} +* :ghpull:`16410`: Fix support for empty usetex strings. +* :ghpull:`11644`: Add feature to fallback to stix font in mathtext +* :ghpull:`16537`: Delay checking for existence of postscript distillers. +* :ghpull:`16351`: Group all init of Legend.legendPatch together. +* :ghpull:`15988`: Refactor Annotation properties. +* :ghpull:`16421`: Shorten the type1-to-unicode name table. +* :ghpull:`16200`: Deprecate Artist.{set,get}_contains. +* :ghpull:`15828`: Deprecate support for dash-offset = None. +* :ghpull:`16338`: Document SymmetricalLogLocator parameters. +* :ghpull:`16504`: DOC: more pcolor fixes +* :ghpull:`15996`: Cleanup axes_size. +* :ghpull:`16108`: Deprecate DraggableBase.on_motion_blit. +* :ghpull:`16706`: Fix exception causes all over the codebase +* :ghpull:`15855`: Simplify 3d axes callback setup. +* :ghpull:`16219`: Simplify CallbackRegistry pickling. +* :ghpull:`16002`: relax two test tolerances on x86_64 +* :ghpull:`16063`: Make the signature of Axes.draw() consistent with Artist.draw(). +* :ghpull:`16177`: Further simplify setupext. +* :ghpull:`16191`: Make Figure._axobservers a CallbackRegistry. +* :ghpull:`16698`: Small edits to toolkits docs. +* :ghpull:`15430`: Simplify setupext.download_or_cache. +* :ghpull:`16694`: Lower Text's FontProperties priority when updating +* :ghpull:`16511`: Add more detailed kwargs docstrings to Axes methods. +* :ghpull:`16653`: Tutorials: make path/URL option clearer in matplotlibrc tutorial +* :ghpull:`16697`: Update docstrings for plot_directive. +* :ghpull:`16684`: Fix exception causes in 19 modules +* :ghpull:`16674`: Docstring + import cleanups to legend.py. +* :ghpull:`16683`: Turn mathtext.GlueSpec into a (private) namedtuple. +* :ghpull:`16660`: Cleanup fancybox_demo. +* :ghpull:`16691`: Clarify tiny comment re: AnnotationBbox constructor. +* :ghpull:`16676`: Cleanup animation docstrings. +* :ghpull:`16673`: DOC: correct title_fontsize docstring +* :ghpull:`16669`: DOC: update doc release guide +* :ghpull:`16563`: Parametrize imshow antialiased tests. +* :ghpull:`16658`: In docs, add multi-axes connectionpatches to Figure, not Axes. +* :ghpull:`16647`: Update annotation tutorial. +* :ghpull:`16638`: Remove unused, outdated division operators on jpl_units. +* :ghpull:`16509`: Add custom math fallback +* :ghpull:`16609`: Fix exception causes in rcsetup.py +* :ghpull:`16637`: Update docstrings in figure.py. +* :ghpull:`16534`: DOC: MaxNLocator and contour/contourf doc update (replaces #16428) +* :ghpull:`16597`: close #16593: setting ecolor turns off color cycling +* :ghpull:`16615`: Update custom boxstyles example. +* :ghpull:`16610`: Added graphviz_docs to conf.py +* :ghpull:`16608`: Stricter validation of rcParams["axes.axisbelow"]. +* :ghpull:`16614`: Cleanup quiver3d examples. +* :ghpull:`16556`: Make backend_ps test robust against timestamp changes in ghostscript. +* :ghpull:`16602`: Cleanup testing.compare. +* :ghpull:`16575`: Style fix for dynamic axes subclass generation in mpl_toolkits. +* :ghpull:`16587`: Remove warnings control from tests.py. +* :ghpull:`16599`: Cleanup dolphin example. +* :ghpull:`16586`: Deprecate recursionlimit kwarg to matplotlib.test(). +* :ghpull:`16595`: Minor docstring/references update. +* :ghpull:`16579`: Update usetex_fonteffects example. +* :ghpull:`16578`: Use rc() less often in examples/tutorials. +* :ghpull:`16572`: Remove some remnants of hist{,2d}(normed=...). +* :ghpull:`16491`: Expire the _rename_parameters API changes. +* :ghpull:`14592`: In SecondaryAxis.set_functions, reuse _set_scale's parent scale caching. +* :ghpull:`16279`: STY: Fix underindented continuation lines. +* :ghpull:`16549`: Improve documentation for examples/widgets/textbox.py +* :ghpull:`16560`: Update URL to pyparsing. +* :ghpull:`16292`: More edits to Normalize docstrings. +* :ghpull:`16536`: API/TST: minimum versions +* :ghpull:`16559`: 3D example avoid using statefull .gca() +* :ghpull:`16553`: DOC: clarify the expected shapes of eventplot input +* :ghpull:`16535`: Clarify docs of num parameter of plt.figure() +* :ghpull:`16547`: Reformat/reword mathtext docstrings. +* :ghpull:`16545`: Add a smoketest for ps.usedistiller="xpdf". +* :ghpull:`16529`: Deprecate toggling axes navigatability using the keyboard. +* :ghpull:`16521`: Remove more API deprecated in 3.1. +* :ghpull:`16481`: Update set_thetalim documentation +* :ghpull:`16524`: Cleanup docstrings +* :ghpull:`16540`: Cleanup imports +* :ghpull:`16429`: CI: update codecov +* :ghpull:`16533`: Recommend to amend pull requests +* :ghpull:`16531`: Also deprecate ignorecase ValidateInStrings. +* :ghpull:`16428`: DOC: MaxNLocator and contour/contourf doc update +* :ghpull:`16525`: Don't import rcParams but rather use mpl.rcParams (part 2) +* :ghpull:`16528`: Improve test failure messages on warnings. +* :ghpull:`16393`: Shorten PyFT2Font_get_charmap. +* :ghpull:`16483`: Deprecate most ValidateInStrings validators. +* :ghpull:`16523`: Reorder mathtext rcparams in matplotlibrc template. +* :ghpull:`16520`: Update a comment re: minimum version of numpy working around bug. +* :ghpull:`16522`: Fix deprecation warning +* :ghpull:`16515`: Fix doc for set_{x,y}label, and then some more. +* :ghpull:`16516`: Fixes to boxplot() docstring & error messages. +* :ghpull:`16508`: Multi-dim transforms are non-separable by default. +* :ghpull:`16507`: Factor out common parts of ``__str__`` for Transform subclasses. +* :ghpull:`16514`: Various delayed PR reviews +* :ghpull:`16512`: Fix a bunch of random typos. +* :ghpull:`16510`: Doc markup cleanups. +* :ghpull:`16500`: Dedupe timer attribute docs. +* :ghpull:`16503`: DOC: suppress warning on pcolor demo +* :ghpull:`16495`: Deemphasize basemap in user-facing docs. +* :ghpull:`16484`: Don't forget to set stretch when exporting font as svg reference. +* :ghpull:`16486`: Simplify validate_color, and make it slightly stricter. +* :ghpull:`16246`: Avoid using FontProperties when not needed. +* :ghpull:`16432`: Prefer geomspace() to logspace(). +* :ghpull:`16099`: Consistently name callback arguments event instead of evt +* :ghpull:`16477`: Remove some APIs deprecated in mpl3.1. +* :ghpull:`16475`: Use vlines() and plot(), not stem(), in timeline example. +* :ghpull:`16474`: Switch default of stem(use_line_collection=...) to True. +* :ghpull:`16467`: Convert named_colors example to use Rectangle +* :ghpull:`16047`: Remove more API deprecated in 3.1 +* :ghpull:`16373`: Fix usetex_baseline_test. +* :ghpull:`16433`: Simplify demo_curvelinear_grid2. +* :ghpull:`16472`: Fix mplot3d projection +* :ghpull:`16092`: Deprecate clear_temp param/attr of FileMovieWriter. +* :ghpull:`15504`: Warn when trying to start a GUI event loop out of the main thread. +* :ghpull:`15023`: Simplify formatting of matplotlibrc.template. +* :ghpull:`13535`: Validate inputs to ScalarMappable constructor +* :ghpull:`16469`: FIX: colorbar minorticks when rcParams['x/ytick.minor.visible'] = True +* :ghpull:`16401`: BLD: Auto-detect PlatformToolset +* :ghpull:`16024`: Keep parameter names in preprocess_data. +* :ghpull:`13390`: Make sure that scatter3d copies its inputs. +* :ghpull:`16107`: Deprecate DraggableBase.artist_picker. +* :ghpull:`16455`: Update some docstrings in colors.py +* :ghpull:`16456`: Enable more font_manager tests to be run locally. +* :ghpull:`16459`: Update backend dependency docs. +* :ghpull:`16444`: Dedupe spectral plotting tests. +* :ghpull:`16460`: Remove some mentions of avconv, following its deprecation. +* :ghpull:`16443`: Parametrize some spectral tests. +* :ghpull:`16204`: Expire deprecation of \mathcircled +* :ghpull:`16446`: Replace matshow baseline test by check_figures_equal. +* :ghpull:`16418`: Backend timer simplifications. +* :ghpull:`16454`: Use pytest.raises(match=...) +* :ghpull:`14916`: Make kwargs names in scale.py not include the axis direction. +* :ghpull:`16258`: ENH: add shading='nearest' and 'auto' to ``pcolormesh`` +* :ghpull:`16228`: Allow directly passing explicit font paths. +* :ghpull:`16445`: Remove a bunch of imports-within-tests. +* :ghpull:`16440`: Expire deprecation of \stackrel. +* :ghpull:`16439`: Rework pylab docstring. +* :ghpull:`16441`: Rework pylab docstring. +* :ghpull:`16442`: Expire deprecation of \stackrel. +* :ghpull:`16365`: TST: test_acorr (replaced image comparison with figure comparion) +* :ghpull:`16206`: Expire deprecation of \stackrel +* :ghpull:`16437`: Rework pylab docstring. +* :ghpull:`8896`: Fix mplot3d projection +* :ghpull:`16430`: Remove unnecessary calls to np.array in examples. +* :ghpull:`16407`: Remove outdated comment re: PYTHONHASHSEED and pytest. +* :ghpull:`16225`: Cleanup animation examples. +* :ghpull:`16336`: Include axline() in infinite lines example +* :ghpull:`16395`: Add set/get for ellipse width/height +* :ghpull:`16431`: CI: add py38 to azure matrix +* :ghpull:`16415`: Expire some APIs deprecated in mpl3.1. +* :ghpull:`16425`: MNT: rename internal variable +* :ghpull:`16427`: Style-fix some examples and update .flake8 per-file-ignores. +* :ghpull:`16423`: Slightly improve streamplot code legibility. +* :ghpull:`16414`: DOC: Fix ``axes:plot`` method docstring verb tense +* :ghpull:`16408`: Deprecate avconv animation writers. +* :ghpull:`16406`: Don't import rcParams but rather use mpl.rcParams. +* :ghpull:`16326`: Cleanup stack +* :ghpull:`16193`: Catch shadowed imports in style checks. +* :ghpull:`16374`: Log about font manager generation beforehand. +* :ghpull:`16372`: Dedupe ImageGrid doc from tutorial and docstring. +* :ghpull:`16380`: "gif" third-party package added to the extension page +* :ghpull:`16327`: Cleanup list copying +* :ghpull:`16366`: Special-case usetex minus to zero depth. +* :ghpull:`16350`: TST: Improved test (getting rid of image comparison test for test_titletwiny) +* :ghpull:`16359`: Make Text.update_from copy usetex state. +* :ghpull:`16355`: typo in ``ticker.ScalarFormatter`` doc +* :ghpull:`15440`: Use rcParams to control default "raise window" behavior (Qt,Gtk,Tk,Wx) +* :ghpull:`16302`: Cleanup Legend._auto_legend_data. +* :ghpull:`16329`: ENH: add zorder kwarg to contour clabel (and a better default value for zorder) +* :ghpull:`16341`: Remove mention of now-removed --verbose-foo flags. +* :ghpull:`16265`: Fix spy(..., marker=, origin="lower") +* :ghpull:`16333`: Document animation HTML writer. +* :ghpull:`16334`: Fix doc regarding deprecation of properties. +* :ghpull:`16335`: Fix some more missing references. +* :ghpull:`16304`: Simplify Legend.get_children. +* :ghpull:`16309`: Remove duplicated computations in Axes.get_tightbbox. +* :ghpull:`16314`: Avoid repeatedly warning about too many figures open. +* :ghpull:`16319`: Put doc for XAxis befor YAxis and likewise for XTick, YTick. +* :ghpull:`16313`: Cleanup constrainedlayout_guide. +* :ghpull:`16312`: Remove unnecessary Legend._approx_text_height. +* :ghpull:`16307`: Cleanup axes_demo. +* :ghpull:`16303`: Dedupe Legend.draw_frame which is the same as set_frame_on. +* :ghpull:`16261`: TST: move the Qt-specific handling to conftest +* :ghpull:`16297`: DOC: fix description of vmin/vmax in scatter +* :ghpull:`16288`: Remove the private, unused _csv2rec. +* :ghpull:`16281`: Update/cleanup pgf tutorial. +* :ghpull:`16283`: Cleanup backend_agg docstrings. +* :ghpull:`16282`: Replace "unicode" by "str" in docs, messages when referring to the type. +* :ghpull:`16289`: axisartist tutorial markup fixes. +* :ghpull:`16293`: Revert "Fix doc CI by pointing to dev version of scipy docs." +* :ghpull:`16287`: Improve markup for rcParams in docs. +* :ghpull:`16271`: Clean up and clarify Normalize docs +* :ghpull:`16290`: Fix doc CI by pointing to dev version of scipy docs. +* :ghpull:`16276`: Cleanup docstring of print_figure, savefig. +* :ghpull:`16277`: Prefer using MouseButton to numeric values in docs and defaults. +* :ghpull:`16270`: numpydoc-ify SymLogNorm +* :ghpull:`16274`: Tiny cleanups to set_xlabel(..., loc=...). +* :ghpull:`16273`: DOC: Changing the spelling of co-ordinates. +* :ghpull:`15974`: Enable set_{x|y|}label(loc={'left'|'right'|'center'}...) +* :ghpull:`16248`: Update matplotlib.__doc__. +* :ghpull:`16262`: Dedupe update of rcParams["backend"] in use() and in switch_backend() +* :ghpull:`9629`: Make pcolor(mesh) preserve all data +* :ghpull:`16254`: DOC: pdf.preamble --> pgf.preamble +* :ghpull:`16245`: Cleanup image docs +* :ghpull:`16117`: CI: Unify required dependencies installation +* :ghpull:`16240`: Cleanup custom_scale example. +* :ghpull:`16227`: Make Animation.repeat_delay an int, not an int-or-None. +* :ghpull:`16242`: CI: Remove PYTHONUNBUFFERED=1 on Appveyor +* :ghpull:`16183`: Remove some baseline images for plot() tests. +* :ghpull:`16229`: And more missing refs. +* :ghpull:`16215`: Concise dates test +* :ghpull:`16233`: Reword ScalarFormatter docstrings. +* :ghpull:`16218`: Cleanup animation docs. +* :ghpull:`16172`: And more missing references. +* :ghpull:`16205`: Deprecate the empty matplotlib.compat. +* :ghpull:`16214`: Fix overindented line in AnchoredOffsetbox doc. +* :ghpull:`15943`: Deprecate the TTFPATH & AFMPATH environment variables. +* :ghpull:`16039`: Deprecate unused features of normalize_kwargs. +* :ghpull:`16202`: Remove outdated statement in tight_layout guide. +* :ghpull:`16201`: UnCamelCase examples. +* :ghpull:`16194`: Numpydoc ticklabel_format. +* :ghpull:`16195`: Numpydoc ContourSet.find_nearest_contour. +* :ghpull:`16198`: Remove em dash +* :ghpull:`16199`: Do not use camel case for variables in examples +* :ghpull:`15644`: Rewrite cursor example to include speedup possibilities +* :ghpull:`16196`: Cleanup patches docstrings. +* :ghpull:`16184`: Expire a mpl2.2-deprecated API +* :ghpull:`16188`: Remove ref. to non-existent method in animation tests. +* :ghpull:`16170`: Deprecate old and little used formatters. +* :ghpull:`16187`: Fix overly long lines in examples & tutorials. +* :ghpull:`15982`: Colorbar cleanup. +* :ghpull:`16154`: Deprecate setting pickradius via set_picker +* :ghpull:`16174`: Numpydocify artist.getp(). +* :ghpull:`16165`: Remove rcParams deprecated in mpl3.0/3.1. +* :ghpull:`16141`: Update _base.py +* :ghpull:`16169`: Add missing spaces after commas. +* :ghpull:`15847`: Remove some dead branches from texmanager code. +* :ghpull:`16125`: Fix more missing references again. +* :ghpull:`16150`: Simplify transforms addition. +* :ghpull:`16152`: Inline _init_axes_pad into Grid.__init__. +* :ghpull:`16129`: Deprecate some Transform aliases in scale.py. +* :ghpull:`16162`: (Mostly) avoid the term "command" in the docs. +* :ghpull:`16159`: Simple cleanups for contour.py. +* :ghpull:`16164`: Fix trivial typo in deprecation warning message. +* :ghpull:`16160`: Cleanup hist() docstring. +* :ghpull:`16149`: DOC: reword density desc in ``ax.hist`` +* :ghpull:`16151`: Remove outdated comment re: blended transforms. +* :ghpull:`16102`: Rework example "Scatter Star Poly" to "Marker examples" +* :ghpull:`16134`: Validate Line2D pickradius when setting it, not when reading it. +* :ghpull:`15019`: Add step option where='edges' to facilitate pre-binned hist plots +* :ghpull:`16142`: Avoid using np.r\_, np.c\_. +* :ghpull:`16146`: Remove LICENSE_CONDA. +* :ghpull:`16133`: Reword docstring of Line2D.contains. +* :ghpull:`16120`: Minor fontproperty fixes. +* :ghpull:`15670`: Reuse Grid.__init__ in ImageGrid.__init__. +* :ghpull:`16025`: Deprecate update_datalim_bounds. +* :ghpull:`16001`: Remove parameters deprecated in 3.1 +* :ghpull:`16049`: Add __repr__ to SubplotSpec. +* :ghpull:`16100`: Consistently name event callbacks on_[event] +* :ghpull:`16106`: In DraggableLegend, inherit DraggableBase.artist_picker. +* :ghpull:`16109`: Name Axes variables ax instead of a +* :ghpull:`16115`: Fix more missing references. +* :ghpull:`16096`: Deprecate unused parameters +* :ghpull:`16085`: Improve docstrings in offsetbox.py +* :ghpull:`16097`: Cleanup unused variables +* :ghpull:`16101`: Fix incorrect doc regarding projections. +* :ghpull:`16095`: Deprecate MovieWriter.{exec,args}_key, making them private. +* :ghpull:`16078`: Refactor a bit animation start/save interaction. +* :ghpull:`16081`: Delay resolution of animation extra_args. +* :ghpull:`16088`: Use C++ true/false in ttconv. +* :ghpull:`16082`: Defaut to writing animation frames to a temporary directory. +* :ghpull:`16070`: Make animation blit cache robust against 3d viewpoint changes. +* :ghpull:`5056`: MNT: more control of colorbar with CountourSet +* :ghpull:`16051`: Deprecate parameters to colorbar which have no effect. +* :ghpull:`16045`: Use triple-double-quotes for docstrings +* :ghpull:`16076`: Cleanup path_editor example. +* :ghpull:`16059`: Simplify colorbar test. +* :ghpull:`16072`: Cleanup category.py docstrings. +* :ghpull:`15769`: scatter() should not rescale if norm is given +* :ghpull:`16060`: Cleanup pcolor_demo. +* :ghpull:`16057`: Trivial docstring fix for cbook.deprecated. +* :ghpull:`16043`: Simplify some comparisons +* :ghpull:`16044`: Code style cleanup +* :ghpull:`15894`: rcsetup cleanups. +* :ghpull:`16050`: Unbreak CI. +* :ghpull:`16034`: Update comments re: colors._vector_magnitude. +* :ghpull:`16035`: Make eventplot use the standard alias resolution mechanism. +* :ghpull:`15798`: Better default behavior for boxplots when rcParams['lines.marker'] is set +* :ghpull:`16004`: Improve documentation of text module +* :ghpull:`15507`: Use FixedFormatter only with FixedLocator +* :ghpull:`16008`: Remove unused imports +* :ghpull:`16036`: Rely on pytest to record warnings, rather than doing it manually. +* :ghpull:`15734`: Fix home/forward/backward buttons for 3d plots. +* :ghpull:`16038`: Cleanup contour_demo. +* :ghpull:`15998`: Join marker reference and marker fiillstyle reference +* :ghpull:`15976`: Cleanup span_where. +* :ghpull:`15990`: Remove deprecated support for setting single property via multiple aliases +* :ghpull:`15940`: Some unicode-support related cleanups. +* :ghpull:`15836`: Compactify a bit the EventCollection tests. +* :ghpull:`16013`: Relayout some conditions in axes_grid. +* :ghpull:`16010`: Inherit the Artist.draw docstring in subclasses. +* :ghpull:`16017`: Document support for no-args plt.subplot() call. +* :ghpull:`16014`: Simplify calls to AxesGrid/ImageGrid. +* :ghpull:`16012`: Normalize aspect="equal" to aspect=1 in the setter. +* :ghpull:`15997`: Shorten wx _onMouseWheel. +* :ghpull:`15993`: Style fixes for axes_divider. +* :ghpull:`15989`: Simplify Artist.update. +* :ghpull:`16015`: Some small extension cleanups +* :ghpull:`16011`: Replace axes_size.Fraction by multiplication. +* :ghpull:`15719`: Templatize spectral helpers. +* :ghpull:`15995`: Remove toolkit functions deprecated in 3.1 +* :ghpull:`16003`: prevent needless float() conversion +* :ghpull:`16000`: De-deprecate \*min/\*max parameters to set_x/y/zlim() +* :ghpull:`15684`: Avoid RuntimeError at wx exit. +* :ghpull:`15992`: Avoid using np.matrix. +* :ghpull:`15961`: Be more opinionated for setting up a dev env. +* :ghpull:`15991`: Avoid setting dtypes as strings... +* :ghpull:`15985`: Remove unnecessary :func:, :meth: from examples markup. +* :ghpull:`15983`: Fix some examples docstrings. +* :ghpull:`15979`: Remove references to scipy cookbook. +* :ghpull:`15966`: FIX: check subplot kwargs +* :ghpull:`15947`: Merge the two usetex demos. +* :ghpull:`15939`: Exceptions should start with a capital letter +* :ghpull:`15948`: Use rc_context more. +* :ghpull:`15962`: Add tests for IndexFormatter +* :ghpull:`15965`: Test registering cmaps +* :ghpull:`15950`: Remove deprecated TextWithDash +* :ghpull:`15942`: Update docs of type1font +* :ghpull:`15927`: Trying to set the labels without setting ticks through pyplot now raises TypeError* +* :ghpull:`15944`: Minor doc cleanups +* :ghpull:`15945`: Do not use "object" or "instance" when documenting types +* :ghpull:`15897`: Cleanup TriAnalyzer docs +* :ghpull:`15777`: Don't bother disconnecting idle_draw at gtk shutdown. +* :ghpull:`15929`: Remove unused cbook._lockstr. +* :ghpull:`15935`: Raise an ValueError when Axes.pie accepts negative values #15923 +* :ghpull:`15895`: Deprecate unused illegal_s attribute. +* :ghpull:`15900`: Rewrite test_cycles to avoid image comparison tests. +* :ghpull:`15892`: Update docs of backend_manager +* :ghpull:`15878`: Remove API deprecated in 3.1 +* :ghpull:`15928`: DOC: use markers as slanted breaks in broken axis example +* :ghpull:`14659`: Update some widget docstrings. +* :ghpull:`15919`: Remove mod_python specific code. +* :ghpull:`15883`: Improve error when passing 0d array to scatter(). +* :ghpull:`15907`: More docstrings cleanup. +* :ghpull:`15906`: Cleanup legend docstrings. +* :ghpull:`15776`: Improve doc for data kwarg. +* :ghpull:`15904`: Deemphasize ACCEPTS blocks in documenting_mpl docs. +* :ghpull:`15891`: Mark self.* expressions in docstrings as literal +* :ghpull:`15875`: Deprecate implicit creation of colormaps in register_cmap() +* :ghpull:`15885`: Cleanup text.py docstrings. +* :ghpull:`15888`: Cleanup backend_bases docs. +* :ghpull:`15887`: Fix AnnotationBbox docstring. +* :ghpull:`15858`: Avoid some uses of len-1 tuples. +* :ghpull:`15873`: Standardize parameter types in docs +* :ghpull:`15874`: Cleanup backend_bases docs +* :ghpull:`15876`: Deprecate case-insensitive capstyles and joinstyles. +* :ghpull:`15877`: Suppress exception chaining on rc validator failure. +* :ghpull:`15880`: Use True/False instead of 0/1 as booleans in backend_ps. +* :ghpull:`15827`: Fix validation of linestyle in rcparams and cycler. +* :ghpull:`15850`: Docstrings cleanup in matplotlib.axes +* :ghpull:`15853`: np.abs -> (builtins).abs +* :ghpull:`15854`: Simplify Axes3D init. +* :ghpull:`15822`: More cleanup defaults in docstrings +* :ghpull:`15838`: Remove some references to Py2. +* :ghpull:`15834`: Optimize colors.to_rgba. +* :ghpull:`15830`: Allow failure on nightly builds. +* :ghpull:`15788`: Fixes pyplot xticks() and yticks() by allowing setting only the labels +* :ghpull:`15805`: Improve docs on figure size +* :ghpull:`15783`: Fix stepfilled histogram polygon bottom perimeter +* :ghpull:`15812`: Cleanup defaults in docstrings +* :ghpull:`15804`: Cleanup many docstrings. +* :ghpull:`15790`: Update docs of PolyCollection +* :ghpull:`15792`: Cleanup dviread docs. +* :ghpull:`15801`: Cleanup some references to rcParams in docs. +* :ghpull:`15787`: Cleanup ``Colormap.__call__``. +* :ghpull:`15766`: Shorten description on search page +* :ghpull:`15786`: Slightly clarify the implementation of safe_masked_invalid. +* :ghpull:`15767`: Update badges in README.rst +* :ghpull:`15778`: Fix typos and comma splices in legend guide +* :ghpull:`15775`: Some pathlibification. +* :ghpull:`15772`: Directly dedent the spectral parameter docs. +* :ghpull:`15765`: Reword some docstrings. +* :ghpull:`15686`: Simplify and unify character tracking in pdf and ps backends (with linked fonts) +* :ghpull:`9321`: Add Axes method for drawing infinite lines +* :ghpull:`15749`: Fix travis links in README +* :ghpull:`15673`: Rely on findfont autofallback-to-default in pdf/ps backends. +* :ghpull:`15740`: Small animation cleanup. +* :ghpull:`15739`: ImageMagick animators now can use extra_args +* :ghpull:`15591`: Remove FAQ on 'Search' -- already referenced in search file +* :ghpull:`15629`: Consistently use realpaths to build XObject names +* :ghpull:`15696`: Improve mathtext.fontset docs and fix :mathmpl: cache bug. +* :ghpull:`15721`: Render default values in :rc: directive as literal +* :ghpull:`15720`: Suppress triage_tests warning on Py3.8. +* :ghpull:`15709`: Make 3d plot accept scalars as arguments. +* :ghpull:`15711`: Don't explicitly list scalez kwarg in Axes3D constructor and docs. +* :ghpull:`14948`: Simplify Tick and Axis initialization. +* :ghpull:`15693`: Also test PySide2 on CI. +* :ghpull:`15701`: Tried to solve Issue #15650: Print URL when webbrowser.open Fails +* :ghpull:`15704`: Fix more broken refs. +* :ghpull:`15687`: Add tooltips to HTML animation controls +* :ghpull:`15592`: Offset text position +* :ghpull:`15697`: Fix some broken doc refs. +* :ghpull:`15700`: Parametrize some spectral tests. +* :ghpull:`15699`: Fix some incorrect ValueErrors. +* :ghpull:`15698`: Bump numpy dependency to >=1.15. +* :ghpull:`15694`: Handle upcoming deprecation of np.float. +* :ghpull:`15691`: Correctly handle high dpi in Pillow animation writer. +* :ghpull:`15676`: Doc adopt nep29 +* :ghpull:`15692`: Update FUNDING.yml +* :ghpull:`15645`: Bump minimal numpy version to 1.12. +* :ghpull:`15646`: Hide sphinx-gallery config comments +* :ghpull:`15642`: Remove interpolation="nearest" from most examples. +* :ghpull:`15671`: Don't mention tcl in tkagg commments anymore. +* :ghpull:`15607`: Simplify tk loader. +* :ghpull:`15651`: Simplify axes_pad handling in axes_grid. +* :ghpull:`15652`: Remove mention of Enthought Canopy from the docs. +* :ghpull:`15655`: Remove outdated license files. +* :ghpull:`15639`: Simplify axes_grid.Grid/axes_grid.ImageGrid construction. +* :ghpull:`15640`: Remove some commented-out code from axes_grid. +* :ghpull:`15643`: Fix examples claiming matplotlib can't plot np.datetime64. +* :ghpull:`15375`: Add note to hist docstring about speed +* :ghpull:`15461`: Fix invalid checks for axes_class parameter in ImageGrid. +* :ghpull:`15635`: Deprecate "U" mode passed to cbook.to_filehandle(). +* :ghpull:`15563`: In backend_pgf, directly open subprocess in utf8 mode. +* :ghpull:`15462`: Simplify azure setup. +* :ghpull:`13075`: Remove logic for optionally building Agg and TkAgg. +* :ghpull:`15262`: Declare qt figureoptions tool in toolitems. +* :ghpull:`15292`: Shorten RendererWx.get_wx_font. +* :ghpull:`15569`: Allow linking against a system qhull as well. +* :ghpull:`15589`: Make sure that figures are closed when check_figures_equal finishes +* :ghpull:`15465`: Validate and simplify set_tick_params(which=...) +* :ghpull:`15090`: Coerce MxNx1 images into MxN images for imshow +* :ghpull:`15578`: BLD: set the max line length on the flake8 config +* :ghpull:`15564`: Use True instead of 1 as filternorm default +* :ghpull:`15536`: Add a backend kwarg to savefig. +* :ghpull:`15571`: Cleanup following using Pillow as universal image reader +* :ghpull:`15476`: Default to local_freetype builds. +* :ghpull:`15557`: Skip failing pgf test when sfmath.sty is not present. +* :ghpull:`15555`: Add pgf to list of builtin backends in docs. +* :ghpull:`15534`: BLD: update pillow dependency +* :ghpull:`15427`: Separate plots using #### in demo_fixed_size_axes.py +* :ghpull:`15505`: Cleanup axisartist tutorial. +* :ghpull:`15506`: Rename locator.den to the clearer locator.nbins in mpl_toolkits. +* :ghpull:`15502`: Get rid of trivial compiler warning. +* :ghpull:`15451`: Ci py38 +* :ghpull:`15484`: Cleanup docs regarding compilers. +* :ghpull:`15467`: Validate locator_params(axis=...) +* :ghpull:`15330`: Add axes method for drawing infinite lines. +* :ghpull:`15482`: Trivial style fixes to constrained_layout. +* :ghpull:`15418`: Use correct pip/pytest on azure +* :ghpull:`15466`: Update tick_params() docs +* :ghpull:`15463`: Remove staticbuild option from setup.cfg.template. +* :ghpull:`15378`: Don't link ft2font to zlib by default. +* :ghpull:`15270`: When no gui event loop is running, propagate callback exceptions. +* :ghpull:`15447`: Move testing of Py3.8 to Travis. +* :ghpull:`15431`: Fix range(len()) usages +* :ghpull:`15390`: Simplify implementation of vectorized date operations. +* :ghpull:`15403`: Fix DeprecationWarning in nightly testing +* :ghpull:`15394`: Deprecate {NonUniformImage,PcolorImage}.is_grayscale. +* :ghpull:`15400`: Updated INSTALL.rst to correct install commands +* :ghpull:`13788`: Autoscale for ax.arrow() +* :ghpull:`15367`: Update the readme on providing API changes +* :ghpull:`15193`: Switch to using pillow for png as well. +* :ghpull:`15346`: vectorized calc_arrow loop in quiver +* :ghpull:`15011`: Adding example for drawstyle +* :ghpull:`15371`: Deprecate Colorbar.config_axis() +* :ghpull:`15361`: Update next API changes to new structure +* :ghpull:`15274`: NavigationToolbar2Tk: make packing optional. +* :ghpull:`15158`: Change the way API changes are documented +* :ghpull:`15356`: Fix broken imports. +* :ghpull:`15200`: Simplify SubplotParams.update(). +* :ghpull:`15210`: Explicitly list allowed "unused" imports, remove the rest. +* :ghpull:`15348`: Some figure and related docs cleanup +* :ghpull:`13355`: Simplify and generalize BezierSegment. +* :ghpull:`14917`: ENH: box aspect for axes +* :ghpull:`14949`: Use fix_minus in format_data_short. +* :ghpull:`15341`: Move non-gui warning message to backend_bases. +* :ghpull:`15335`: Add discourse link to readme +* :ghpull:`15293`: Fixes for wx savefig dialog. +* :ghpull:`15324`: Update PR guidelines +* :ghpull:`15301`: Update colorbar docs +* :ghpull:`15340`: Always attach a manager attribute (possibly None) on canvas. +* :ghpull:`15319`: Make validate_movie_writer actually check registered writers. +* :ghpull:`10973`: PGF: Replace \pgfimage by \includegraphics to fix \import regression +* :ghpull:`15302`: fix warning used by cbook.warn_deprecated() +* :ghpull:`15321`: Sort missing_references.json. +* :ghpull:`15290`: Unify fig.delaxes(ax) and ax.remove(). +* :ghpull:`15309`: Simplify sca(). +* :ghpull:`15201`: Autogenerate gca(), gci() from boilerplate.py. +* :ghpull:`15305`: Autogenerate footer Copyright year +* :ghpull:`15294`: Replace custom logging in wx by stdlib logging. +* :ghpull:`15288`: More properties aliases. +* :ghpull:`15286`: throw deprecation warning on empty call to fig.add_axes() +* :ghpull:`15282`: Colorbar cleanup. +* :ghpull:`15250`: Cleanup font_manager. +* :ghpull:`13581`: Cleanup _pylab_helpers. +* :ghpull:`15273`: DOC: don't use term units in transform tutorial +* :ghpull:`15263`: Correctly setup comparisons in test_compare_images. +* :ghpull:`15226`: Turn gtk3 pan/zoom button into togglable buttons. +* :ghpull:`14609`: Simplify implementation of set_{x,y}bound. +* :ghpull:`15261`: Change layout of test_triager to avoid cropping images. +* :ghpull:`15236`: Dedupe SubplotSpec construction in mpl_toolkits. +* :ghpull:`14130`: Add decorator to inherit keyword-only deprecations +* :ghpull:`15249`: In findfont(fallback_to_default=False), throw if default font is missing +* :ghpull:`15175`: Simplify pdf image output. +* :ghpull:`7506`: [WIP] Add Axes method for drawing infinite lines. + +Issues (198): + +* :ghissue:`16501`: Setting a thetalim > 2pi gives odd results +* :ghissue:`15035`: security exposure in the packaged jquery library +* :ghissue:`10375`: Coordinate text wrapping in navigation toolbar +* :ghissue:`10720`: Option to set the text color in legend to be same as the line +* :ghissue:`17868`: plt.bar with nan input fails rendering in notebook using 3.3.0rc1 +* :ghissue:`17773`: gtk3 rubberband is invisible +* :ghissue:`5726`: Cursor displays x, y coordinates with too much or too little precision +* :ghissue:`5164`: Sort out qt_compat +* :ghissue:`17905`: macosx backend warns when using the zoom method +* :ghissue:`17703`: QuadMesh.get_clim changed behavior in 3.3.0rc1 +* :ghissue:`17875`: animation.writers['ffmpeg']" is hung when run in background. +* :ghissue:`17591`: Single-character colors do not match long names +* :ghissue:`16905`: if pie normalizes depends on input values +* :ghissue:`17829`: trunk fails to build in AIX +* :ghissue:`17820`: Regression: _reshape_2D no longer preserves the shape of lists of lists of one scalar each +* :ghissue:`17807`: "%matplotlib notebook" Download is Noise After Interacting with Plot +* :ghissue:`17763`: matplotlib.use('agg', force=True) does not ignore unavailable configured backend +* :ghissue:`17586`: Surprising datetime autoscaling after passing empty data +* :ghissue:`17792`: when using plt.tight_layout(), figure title overlaps subplot titles +* :ghissue:`17736`: ax.set_xticklabels([]) for categorical plots is broken in 3.3.0rc1 +* :ghissue:`17757`: Plotting Hist with histtype 'stepfilled' does not respect bottom correctly +* :ghissue:`17744`: BUG: AttributeError: 'FigureCanvasBase' object has no attribute 'print_png' in 3.3rc0 +* :ghissue:`17730`: Using backend Template and plt.tight_layout raises UnboundLocalError +* :ghissue:`17716`: Error using "set_window_title" for canvas via backend_qt5agg +* :ghissue:`17681`: PDF cannot be built due to Zenodo SVGs +* :ghissue:`17627`: AttributeError: 'Figure' object has no attribute '_cachedRenderer' +* :ghissue:`17658`: Feature request: Add advanced zoom and inspect feature to GUI for more productivity +* :ghissue:`17629`: Use of Python deprecated APIs. +* :ghissue:`17670`: BUG: Setting ticksize xx-small broken by #17348 +* :ghissue:`17673`: RuntimeError: latex was not able to process the following string: b'$\\\\mathdefault{-2}$' +* :ghissue:`17412`: Document the dependency on the type1ec LaTeX package +* :ghissue:`17643`: AutoDateLocator docs has a typo +* :ghissue:`9118`: make TeXManager more user-configurable +* :ghissue:`11131`: Make pyplot.pause not give focus to the figure window +* :ghissue:`17646`: more conservative setattr_cm broke mplcairo +* :ghissue:`17634`: Cannot copy LinearSegmentedColormap +* :ghissue:`16496`: Single path optimisation for Collection w/ offsets broken +* :ghissue:`192`: Savefig does not issue a warning on a non-existent keyword n +* :ghissue:`17624`: _DummyAxis needs a __name__ attribute for ScalarFormatter +* :ghissue:`16910`: Axes.imshow draws invalid color at value is 0 when max of 'X' not equal to vmax +* :ghissue:`17637`: streamplot and sticky edges interaction +* :ghissue:`17633`: Stackplot fails for small numbers +* :ghissue:`17616`: waitforbuttonpress in Linux +* :ghissue:`17615`: small bug in documentation of backend.FigureCanvasBase.start_event_loop +* :ghissue:`17093`: Zero size figure use case +* :ghissue:`17608`: How avoid PyQt5 to crash when I move Qslitter to the edge with a matplotlib figure in it? +* :ghissue:`9829`: Vertices clipped for certain markers when plotting more than two points and saving as pdf +* :ghissue:`15815`: bar3d color length bug +* :ghissue:`15376`: ScalarFormatter.set_powerlimits documentation seems inconsistent +* :ghissue:`17595`: Master doc builds broken +* :ghissue:`16482`: Pyplot hlines and vlines do not use the 'lines.color' property in rcParams by default +* :ghissue:`16388`: rethink how we display DOI svg badges +* :ghissue:`17172`: set_aspect for 3D plots +* :ghissue:`16463`: Jupyter "inline" backend seems to misinterpret "figsize" with Axes3D +* :ghissue:`17527`: The markers are not hollow when I use ax.scatter() and set markers.MarkerStyle()'s fillstyle to 'none'. My usage is wrong? +* :ghissue:`7491`: sort out if the high-resolution ellipse code still works +* :ghissue:`17398`: Plotting an error band along a curve +* :ghissue:`8550`: Matplotlib chooses the wrong font for unrecognized weights +* :ghissue:`8788`: Font issue: findfonts should differentiate between thin and regular ttf fonts +* :ghissue:`10194`: legend is not present in the generated image if I use 'tight' for bbox_inches +* :ghissue:`17336`: set_url without effect for instances of Line2D +* :ghissue:`9695`: set_url() without effect in the plot for instances of Tick +* :ghissue:`17192`: How to change the thickness of the marker "x" when using scatter? +* :ghissue:`17507`: pyplot.savefig() throwing warning suggesting a bug (possibly in figManger) +* :ghissue:`17502`: dict unpacking broken for ``.plot`` in 3.2 +* :ghissue:`15546`: plt.imshow: clip_on=False has no effect +* :ghissue:`17023`: DOC: Tutorial/Sample plots should use same fig/axis creation method +* :ghissue:`7537`: Conflict between different AGG static libraries in a same binary +* :ghissue:`16836`: Dropping support for PyQt4; preparing support for PyQt6. +* :ghissue:`17455`: LightSource.shade fails on a masked array +* :ghissue:`16353`: BUG: VisibleDeprecationWarning in boxplot +* :ghissue:`11820`: Compressed Triangulation Masking in CubicTriInterpolator +* :ghissue:`11823`: Animation Examples +* :ghissue:`15410`: Change in OSX Catalina makes matplotlib + multiprocessing crash +* :ghissue:`17467`: Bug Report: saved Figure ignores figure.facecolor +* :ghissue:`17343`: Regression in add_subplot.. +* :ghissue:`7093`: ordering issues between ``set_xmargin`` and ``set_xscale`` +* :ghissue:`13971`: Unnecessary drawing with NbAgg +* :ghissue:`17432`: Scatter accepts marker=MarkerStyle(), but plot does not +* :ghissue:`15675`: Boxplot line color with style dark_background should be bright +* :ghissue:`5962`: No output from pyplot on cygwin64 python3 virtualenv +* :ghissue:`17393`: TexManager.get_rgba fails +* :ghissue:`5830`: Incorrect overlap of markers in scatter3D +* :ghissue:`11937`: Limiting ticks on colorbar axes falsify tick labels. +* :ghissue:`17354`: Converter detection fails for inkscape if on headless system without DISPLAY +* :ghissue:`17352`: Zoom In-Out not behaving as expected in QT backend example +* :ghissue:`15409`: Datetime plot fails with 'Agg' backend in interactive mode +* :ghissue:`14155`: Adding GridSpec.subplots? +* :ghissue:`16583`: matplotlibrc validates some parameters wrongly +* :ghissue:`16946`: Pick_event on AnnotationBbox fires at wrong position +* :ghissue:`15131`: set_size_inches doesn't resize window on macosx backend +* :ghissue:`7619`: Figure background colors +* :ghissue:`15899`: Describe possible kwargs that may be input into a function +* :ghissue:`17304`: constrained-layout gives wrong results when explicitly equal width ratios are set +* :ghissue:`17295`: DOC: https://matplotlib.org/api/_as_gen/matplotlib.quiver.Quiver.html +* :ghissue:`17294`: DOC: matplotlib.axes.Axes.annotate.html +* :ghissue:`17290`: backend_svg fails with dashed line style +* :ghissue:`16677`: tmp_config_or_cache_dir atexit cleanup fails after forks() +* :ghissue:`15091`: Turbo color map +* :ghissue:`7372`: Moving get_ax and do_event to testing +* :ghissue:`15225`: Show offset text on subplots after sharing axis +* :ghissue:`7138`: misplaced spines in dates plot +* :ghissue:`17243`: Misleading error message in _parse_scatter_color_args +* :ghissue:`16461`: Hexbin if singular and mincnt used +* :ghissue:`14596`: forward port jquery removal from ipympl +* :ghissue:`17217`: Transform operators are not publicly documented.... +* :ghissue:`2253`: matplotlib makes python lose focus +* :ghissue:`7184`: margins does not handle bézier curves +* :ghissue:`16830`: ``_path.get_extents`` does not correctly handle bezier curves +* :ghissue:`17176`: Print figure using PS backend is needlessly slow +* :ghissue:`17141`: flake8-docstrings does not check all of our requirements +* :ghissue:`16567`: Let legend get the handles from the provided objects if not specified explicitly. +* :ghissue:`16805`: Titles cannot be padded to negative numbers anymore. +* :ghissue:`17114`: ``add_axes`` shows deprecation warning when called with only ``kwarg``\s +* :ghissue:`16885`: Change return type get_{x,y}ticklabels to plain list +* :ghissue:`17044`: widgets.TextBox continuously creates new text objects and linecollection objects. +* :ghissue:`17066`: documentation of animation contains non-working code example +* :ghissue:`16588`: Rename next_api_changes to api_changes_3.x (whatever number makes sense) +* :ghissue:`17015`: ``get_major_ticks`` docs missing return type +* :ghissue:`16976`: Thin line color distortion on large scale +* :ghissue:`16934`: gtk3 window immediately resizes down to zero-height upon showing up. +* :ghissue:`16941`: test_determinism_check is failing (sometimes) +* :ghissue:`16982`: pyplot.rgrids don't do anything +* :ghissue:`16952`: How to solve an error of "ValueError: Key backend: Unrecognized backend string '"agg"' +* :ghissue:`15272`: Axes.violinplot has small issue in using pandas.DataFrame without index 0. +* :ghissue:`16926`: tk window immediately resizes down to zero-height upon showing up. +* :ghissue:`16919`: wx backends don't send close_event if window is closed via "q" keypress +* :ghissue:`16854`: small typo in the documentation +* :ghissue:`16895`: offset text still visible with ImageGrid axis "L" +* :ghissue:`12712`: Autoscale does not work for ax.arrow() +* :ghissue:`14208`: shift + w does not close all figures (has no effect) +* :ghissue:`15745`: Failed to add annotate to figure +* :ghissue:`11432`: Pressing the "1" key kills the zoom/pan tool +* :ghissue:`13799`: BUG: incorrect error bar colors when NaN values are present +* :ghissue:`16185`: hist demo appears to incorrectly mention ``normed`` and something odd about ``density`` as well. +* :ghissue:`15203`: Closing figures is done by number +* :ghissue:`16016`: Better argument checking of subplot definition in ``add_subplot()`` +* :ghissue:`15980`: Is the reset of the colorbar's edgecolor when updating the corresponding image clim wanted behaviour? +* :ghissue:`16718`: Float figure DPI +* :ghissue:`16498`: long string of format_coord in osx backend +* :ghissue:`8405`: BUG: PDF export seems wrong with dash sequences that include a None offset +* :ghissue:`8619`: Feature request: allow mathtext fallback font other than Computer Modern for custom mathtext setup +* :ghissue:`14996`: format error saving eps figure using custom linestyle +* :ghissue:`16493`: Example/tutorials warn due to new pcolormesh shading +* :ghissue:`16022`: Cleanup Artist.draw() signatures +* :ghissue:`16389`: “Size” ignored if placed before fontproperties +* :ghissue:`16687`: Creating a figure of size (0, 0) raises an error +* :ghissue:`12729`: Docs for contour levels argument is incorrect +* :ghissue:`16593`: specifying ecolor in errobar turns off cycling +* :ghissue:`15621`: secondary_xaxis doesn't seem to use formatters +* :ghissue:`16116`: travis36minver.txt needs an update +* :ghissue:`16546`: Problem with eventplot - error message claims events & lineoffsets are unequal sizes +* :ghissue:`16462`: Allow wedges of polar plots to include theta = 0. +* :ghissue:`15142`: pyplot.annotate() API deprecation +* :ghissue:`16479`: font-stretch property missing in svg export +* :ghissue:`14304`: 'NSWindow drag regions should only be invalidated on the Main Thread!' - macos/python +* :ghissue:`12085`: Tcl_AsyncDelete: async handler deleted by the wrong thread +* :ghissue:`14669`: cm.ScalarMappable should fail early when norm input is wrong +* :ghissue:`16468`: incorrect cbar minor ticks for extend regions when x/ytick.minor.visible is True +* :ghissue:`16243`: windows builds: devenv freetype /update appears not to have an effect +* :ghissue:`11525`: Axes3D scatter plot for Numpy arrays in F-order does not give correct z-values +* :ghissue:`8894`: mplot3d projection results in non-orthogonal axes +* :ghissue:`1104`: Resizing a GUI window with Axes3D +* :ghissue:`16371`: Incomplete documentation in axes_grid1 +* :ghissue:`6323`: Vertical alignment of tick labels with usetex=True +* :ghissue:`7957`: clabel not respecting zorder parameter +* :ghissue:`16252`: axes.spy plotting function doesn't respect origin='lower' kwarg when marker is not None +* :ghissue:`16299`: The interactive polar plot animation's axis label won't scale. +* :ghissue:`15182`: More tests ``ConciseDateFormatter`` needed +* :ghissue:`16140`: Unclear Documentation for get_xticklabels +* :ghissue:`16147`: pp.hist parmeter 'density' does not scale data appropriately +* :ghissue:`16069`: matplotlib glitch when rotating interactively a 3d animation +* :ghissue:`14603`: Scatterplot: should vmin/vmax be ignored when a norm is specified? +* :ghissue:`15730`: Setting lines.marker = s in matplotlibrc also sets markers in boxplots +* :ghissue:`11178`: home/back/forward buttons do nothing in 3d mode +* :ghissue:`14520`: pylab with wx backend not exiting cleanly +* :ghissue:`15964`: Guard ``plt.subplot`` kwargs a bit better? +* :ghissue:`15404`: Add python 3.8 tests +* :ghissue:`15773`: Warning:... GLib.source_remove(self._idle_draw_id) when using plt.savefig() +* :ghissue:`15923`: pie takes negative values +* :ghissue:`10317`: Setting plt.rc('text', usetex=True) after ticker.ScalarFormatter(useMathText=True) causes Error +* :ghissue:`15825`: Customised dashed linstyle in matplotlib.cycler throws ValueError when using in Axes.set_prop_cycle +* :ghissue:`9792`: Error with linestyles rcParams entries under the form (on, off, ...) and a style context manager +* :ghissue:`15782`: Invalid polygon in stepfilled histogram when bottom is set +* :ghissue:`15628`: Invalid unicode characters in PDF when font is a symlink +* :ghissue:`8577`: mplot3D scalar arguments for plot function +* :ghissue:`15650`: URL is not shown when webagg failed to open the browser. +* :ghissue:`5238`: the offset of the scientific notation in xaxis stays at bottom when axis is set to top +* :ghissue:`15678`: Error at save animation with pillow +* :ghissue:`15079`: check_figures_equal decorator reuses figures if called multiple times inside a single test. +* :ghissue:`15089`: Coerce MxNx1 images into MxN images for imshow +* :ghissue:`5253`: abline() - for drawing arbitrary lines on a plot, given specifications. +* :ghissue:`15165`: Switch to requiring Pillow rather than having our own png wrapper? +* :ghissue:`15280`: Add pull request checklist to Reviewers Guidlines +* :ghissue:`15289`: cbook.warn_deprecated() should warn with a MatplotlibDeprecationWarning not a UserWarning +* :ghissue:`15285`: DOC: make copy right year auto-update +* :ghissue:`15059`: fig.add_axes() with no arguments silently does nothing +* :ghissue:`14546`: Setting lines.markeredgecolor in rcParams affects the ticks' mark color too diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.3.1.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.3.1.rst new file mode 100644 index 0000000000000000000000000000000000000000..3fa2d39a4d903a45839189dcaf36f05cb2ae88b9 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.3.1.rst @@ -0,0 +1,137 @@ +.. _github-stats-3-3-1: + +GitHub statistics for 3.3.1 (Aug 13, 2020) +========================================== + +GitHub statistics for 2020/07/16 (tag: v3.3.0) - 2020/08/13 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 25 issues and merged 73 pull requests. +The full list can be seen `on GitHub `__ + +The following 17 authors contributed 131 commits. + +* Antony Lee +* Ben Root +* Bruno Beltran +* David Stansby +* Elliott Sales de Andrade +* Isuru Fernando +* jbhopkins +* Jody Klymak +* Jouni K. Seppänen +* Lee Johnston +* linchiwei123 +* Neilzon Viloria +* Ryan May +* Thomas A Caswell +* Tim Hoffmann +* Tom Neep +* Yichao Yu + +GitHub issues and pull requests: + +Pull Requests (73): + +* :ghpull:`18243`: Fix reshape list of strings +* :ghpull:`18240`: Backport PR #18235 on branch v3.3.x +* :ghpull:`18239`: Backport PR #18233 on branch v3.3.x (Fix cibuildwheel trigger condition.) +* :ghpull:`18235`: FIX: check we have a back button in tk toolbar before we touch it +* :ghpull:`18233`: Fix cibuildwheel trigger condition. +* :ghpull:`18231`: Backport PR #18224 on branch v3.3.x (Try out cibuildwheel.) +* :ghpull:`18224`: Try out cibuildwheel. +* :ghpull:`18230`: Backport PR #18225 on branch v3.3.x (Use certifi when downloading bundled build requirements.) +* :ghpull:`18225`: Use certifi when downloading bundled build requirements. +* :ghpull:`18229`: Backport PR #18219 on branch v3.3.x (Fixes an issue where WxAgg NavigationToolbar2 broke custom toolbars) +* :ghpull:`18219`: Fixes an issue where WxAgg NavigationToolbar2 broke custom toolbars +* :ghpull:`18228`: Backport PR #18227 on branch v3.3.x (Set pipefail when running flake8 linter.) +* :ghpull:`18227`: Set pipefail when running flake8 linter. +* :ghpull:`18215`: Backport PR #18185 on branch v3.3.x (FIX: fix reading from http/https urls via imread) +* :ghpull:`18214`: Backport PR #18184 on branch v3.3.x (Go back to checking figures for their manager in destroy.) +* :ghpull:`18185`: FIX: fix reading from http/https urls via imread +* :ghpull:`18184`: Go back to checking figures for their manager in destroy. +* :ghpull:`18183`: Backport PR #17995 on branch v3.3.x (Avoid using Bbox machinery in Path.get_extents; special case polylines.) +* :ghpull:`18182`: Backport PR #17994 on branch v3.3.x (Special case degree-1 Bezier curves.) +* :ghpull:`18179`: Backport PR #18175 on branch v3.3.x (Downgrade symbol substitution log to info level.) +* :ghpull:`18177`: Backport PR #18092 on branch v3.3.x (Use same Make as FreeType's configure to build it.) +* :ghpull:`18174`: Backport PR #18167 on branch v3.3.x (Catch Pandas AssertionError on deprecated multidimensional indexing. Closes #18158) +* :ghpull:`18176`: Backport PR #18173 on branch v3.3.x (Fix the return value of Axes.get_navigate_mode.) +* :ghpull:`18175`: Downgrade symbol substitution log to info level. +* :ghpull:`18092`: Use same Make as FreeType's configure to build it. +* :ghpull:`18173`: Fix the return value of Axes.get_navigate_mode. +* :ghpull:`18167`: Catch Pandas AssertionError on deprecated multidimensional indexing. Closes #18158 +* :ghpull:`18162`: Backport PR #18156 on branch v3.3.x (Fix IndexError when using scatter3d and depthshade=False) +* :ghpull:`18156`: Fix IndexError when using scatter3d and depthshade=False +* :ghpull:`18153`: Backport PR #18142 on branch v3.3.x (Fix nbagg in Chrome 84) +* :ghpull:`18146`: Backport PR #17989 on branch v3.3.x (gtk/tk: Ensure no flicker when hovering over images.) +* :ghpull:`18142`: Fix nbagg in Chrome 84 +* :ghpull:`18147`: Backport PR #18136 on branch v3.3.x (Sort 3d sizes along with other properties) +* :ghpull:`18136`: Sort 3d sizes along with other properties +* :ghpull:`17989`: gtk/tk: Ensure no flicker when hovering over images. +* :ghpull:`18102`: Fix linting on v3.3.x +* :ghpull:`18111`: Backport PR #18089 on branch v3.3.x +* :ghpull:`18109`: Backport PR #18093 on branch v3.3.x (Improve saving animated GIF with ffmpeg) +* :ghpull:`18089`: Revert "Convert adjust_bbox to use ExitStack." +* :ghpull:`18093`: Improve saving animated GIF with ffmpeg +* :ghpull:`18104`: Backport PR #18101 on branch v3.3.x (FIX: catch all multi-dim warnings pandas) +* :ghpull:`18101`: FIX: catch all multi-dim warnings pandas +* :ghpull:`18091`: ci: Fix linting being ignored by reviewdog +* :ghpull:`18083`: Backport PR #18079 on branch v3.3.x (Set shading='auto' if invalid value passed to pcolormesh) +* :ghpull:`18079`: Set shading='auto' if invalid value passed to pcolormesh +* :ghpull:`18067`: Backport PR #17956 on branch v3.3.x (ENH: Add version check for mac sdk version) +* :ghpull:`17956`: ENH: Add version check for mac sdk version +* :ghpull:`18053`: Backport PR #18021: FIX: update num2julian and julian2num +* :ghpull:`18021`: FIX: update num2julian and julian2num +* :ghpull:`18041`: Backport PR #18038 on branch v3.3.x (FIX: use internal _set_postion, not external) +* :ghpull:`18038`: FIX: use internal _set_postion, not external +* :ghpull:`18036`: Backport PR #18030 on branch v3.3.x (Fix PolyCollection.set_verts optimization.) +* :ghpull:`18030`: Fix PolyCollection.set_verts optimization. +* :ghpull:`18032`: Backport PR #18026 on branch v3.3.x (FIX: Be sure matplotlib.backends is imported before we use it) +* :ghpull:`18026`: FIX: Be sure matplotlib.backends is imported before we use it +* :ghpull:`18027`: Backport PR #17981 on branch v3.3.x (gtk: Fix ``draw`` on unmapped windows.) +* :ghpull:`17981`: gtk: Fix ``draw`` on unmapped windows. +* :ghpull:`18024`: Backport PR #17963 on branch v3.3.x (TST: Ignore deprecations when switching backends.) +* :ghpull:`18023`: Backport PR #18014 on branch v3.3.x (Fix flipped paths in non-writable config dir warning.) +* :ghpull:`17963`: TST: Ignore deprecations when switching backends. +* :ghpull:`18014`: Fix flipped paths in non-writable config dir warning. +* :ghpull:`18008`: Backport PR #17969 on branch v3.3.x (Honor ``'Date': None`` in metadata) +* :ghpull:`18009`: Backport PR #17982 on branch v3.3.x (BF: for degenerate polygons, add CLOSEPOLY vertex) +* :ghpull:`17982`: BF: for degenerate polygons, add CLOSEPOLY vertex +* :ghpull:`17969`: Honor ``'Date': None`` in metadata +* :ghpull:`17995`: Avoid using Bbox machinery in Path.get_extents; special case polylines. +* :ghpull:`17994`: Special case degree-1 Bezier curves. +* :ghpull:`17990`: Manual backport of pr 17983 on v3.3.x +* :ghpull:`17984`: Backport PR #17972 on branch v3.3.x (Fix PyPy compatiblity issue) +* :ghpull:`17985`: Backport PR #17976 on branch v3.3.x (Fixed #17970 - Docstrings should not accessed with -OO) +* :ghpull:`17983`: FIX: undeprecate and update num2epoch/epoch2num +* :ghpull:`17976`: Fixed #17970 - Docstrings should not accessed with -OO +* :ghpull:`17972`: Fix PyPy compatiblity issue + +Issues (25): + +* :ghissue:`18234`: _reshape_2D function behavior changed, breaks hist for some cases in 3.3.0 +* :ghissue:`18232`: different behaviour between 3.3.0 and 3.2.2 (and earlier) for ploting in a Tk canvas +* :ghissue:`18212`: Updated WxAgg NavigationToolbar2 breaks custom toolbars +* :ghissue:`18129`: Error reading png image from URL with imread in matplotlib 3.3 +* :ghissue:`18163`: Figure cannot be closed if it has associated Agg canvas +* :ghissue:`17974`: Major speed regression introduced in "plt.bar" definition clipping between 3.0.3 and 3.3.0. +* :ghissue:`17998`: New warning: Substituting symbol \perp from STIXGeneral +* :ghissue:`18057`: Fails to install in FreeBSD +* :ghissue:`18150`: Regression in get_navigate_mode() return value +* :ghissue:`18158`: X-axis that is Pandas Series time zone aware timestamps raises AssertionError +* :ghissue:`18037`: Scatter3D: depthshade=False causes IndexError for Tkinter when plotting more than one point. +* :ghissue:`18169`: When running python with -OO option, an empty matplotlib docstring causes an exception. +* :ghissue:`18165`: fig.colorbar() and using bbox='tight' in PDF export mess up figure dimensions +* :ghissue:`18132`: A simple 3D scatter plot with %matplotlib notebook is not working +* :ghissue:`18135`: Point size array in the Axes3D scatter() does not follow the same order as in the data points +* :ghissue:`18061`: 3.3.0 regression in png backend with colorbar() +* :ghissue:`18076`: pcolormesh + gourand shading + polar axes is broken +* :ghissue:`18010`: 3.3.0: possible regression/bug with DateFormatter? +* :ghissue:`18033`: v. 3.3.0: horizontal colorbar broken +* :ghissue:`18017`: Optimisation in set_verts causes error if ``verts`` have irregular sizes +* :ghissue:`18022`: AttributeError: module 'matplotlib' has no attribute 'backends' +* :ghissue:`18011`: Confusing error message when home config directory not writable +* :ghissue:`17975`: Computing the bounding box of a degenerate polygon throws an error +* :ghissue:`17968`: Setting ``Date`` metadata to ``None`` does not remove the date metadata from the SVG file +* :ghissue:`17970`: AttributeError when using PYTHONOPTIMIZE (due to stripped docstring) diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.3.2.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.3.2.rst new file mode 100644 index 0000000000000000000000000000000000000000..0bc03cbc83eeb0b8502273f22ba023367d4039ac --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.3.2.rst @@ -0,0 +1,89 @@ +.. _github-stats-3-3-2: + +GitHub statistics for 3.3.2 (Sep 15, 2020) +========================================== + +GitHub statistics for 2020/08/14 - 2020/09/15 (tag: v3.3.1) + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 15 issues and merged 39 pull requests. +The full list can be seen `on GitHub `__ + +The following 13 authors contributed 61 commits. + +* Antony Lee +* Bruno Beltran +* David Stansby +* David Young +* Elliott Sales de Andrade +* Greg Lucas +* Jody Klymak +* johnthagen +* Jouni K. Seppänen +* Richard Sheridan +* Ryan May +* Thomas A Caswell +* Tim Hoffmann + +GitHub issues and pull requests: + +Pull Requests (39): + +* :ghpull:`18488`: Backport PR #18483 on branch v3.3.x (DOC: reword non-monotonic cell center warning) +* :ghpull:`18483`: DOC: reword non-monotonic cell center warning +* :ghpull:`18485`: Backport PR #18475 on branch v3.3.x (BF: ensure exception caught if no kpeswitch) +* :ghpull:`18482`: Backport PR #18398 on branch v3.3.x (Warn on non-increasing/decreasing pcolor coords) +* :ghpull:`18484`: Backport PR #18458: Fix huge imshow range +* :ghpull:`18475`: BF: ensure exception caught if no kpeswitch +* :ghpull:`18458`: Fix huge imshow range +* :ghpull:`18398`: Warn on non-increasing/decreasing pcolor coords +* :ghpull:`18479`: Nbagg backports +* :ghpull:`18454`: nbagg: Use OutputArea event to trigger figure close. +* :ghpull:`18469`: Backport PR #18464 on branch v3.3.x (Remove extra stickies in barstacked histogram.) +* :ghpull:`18464`: Remove extra stickies in barstacked histogram. +* :ghpull:`18459`: Backport PR #18393 on branch v3.3.x (Fix Axis scale on twinned Axes.) +* :ghpull:`18393`: Fix Axis scale on twinned Axes. +* :ghpull:`18441`: Backport PR #18395: TkAgg bugfix: deselect buttons that are not the current _Mode +* :ghpull:`18395`: TkAgg bugfix: deselect buttons that are not the current _Mode +* :ghpull:`18380`: Backport PR #18374 on branch v3.3.x (FIX: make _reshape_2D accept pandas df with string indices) +* :ghpull:`18374`: FIX: make _reshape_2D accept pandas df with string indices +* :ghpull:`18376`: Backport PR #18298 on branch v3.3.x (Include license files in built distribution) +* :ghpull:`18375`: Backport PR #18293 on branch v3.3.x (Fix scatter3d color/linewidth re-projection) +* :ghpull:`18298`: Include license files in built distribution +* :ghpull:`18293`: Fix scatter3d color/linewidth re-projection +* :ghpull:`18361`: nbagg: Store DPI ratio on figure instead of window. +* :ghpull:`18354`: Backport PR #18352 on branch v3.3.x (Avoid triggering backend resolution during qt initial import.) +* :ghpull:`18352`: Avoid triggering backend resolution during qt initial import. +* :ghpull:`18335`: Backport PR #18322 on branch v3.3.x (Disable FH4 so that we don't require VCRUNTIME140_1.dll.) +* :ghpull:`18322`: Disable FH4 so that we don't require VCRUNTIME140_1.dll. +* :ghpull:`18333`: Backport PR #18328 on branch v3.3.x (Add missing check for None in Qt toolmanager.) +* :ghpull:`18328`: Add missing check for None in Qt toolmanager. +* :ghpull:`18309`: Backport PR #18304 on branch v3.3.x (Fix canvas redraws during motion in figures with a Button or TextBox) +* :ghpull:`18304`: Fix canvas redraws during motion in figures with a Button or TextBox +* :ghpull:`18297`: Backport PR #18288 on branch v3.3.x (FIX: check if axes is off page before repositioning title) +* :ghpull:`18288`: FIX: check if axes is off page before repositioning title +* :ghpull:`18269`: Backport PR #18266 on branch v3.3.x (Fix Path.get_extents for empty paths.) +* :ghpull:`18266`: Fix Path.get_extents for empty paths. +* :ghpull:`18263`: Backport PR #18260 on branch v3.3.x (Add parent widget to IntVar) +* :ghpull:`18260`: Add parent widget to IntVar +* :ghpull:`18253`: Backport PR #18245 on branch v3.3.x +* :ghpull:`18245`: MNT: do a better job guessing the GUI framework in use + +Issues (15): + +* :ghissue:`18415`: imshow with LogNorm crashes with certain inputs +* :ghissue:`18447`: nbagg: Closing a figure from the notebook does not close the python figure +* :ghissue:`18470`: interactive plots slow with matplotlib 3.3.1 +* :ghissue:`18457`: Incorrect log y-scale for histogram with partitioned and barstacked data +* :ghissue:`18385`: twinx not respecting log-scale +* :ghissue:`18371`: Plotting a pandas DataFrame with string MultiIndex +* :ghissue:`18296`: LICENSE file(s) not included in published PyPI package +* :ghissue:`18287`: scatter3D assigns wrong color to points for some plot orientations +* :ghissue:`18292`: ImportError: DLL load failed with Matplotlib 3.3.1 on Windows +* :ghissue:`18327`: Tool Manager: adding buttons to toolbar fails with matplotlib version 3.3.1 using Qt backend +* :ghissue:`18324`: Poor UI responsiveness of 3.3.1 compared with 3.2.2 for interactive mode UI using widgets +* :ghissue:`18303`: Canvas redraws during any motion when Button is present +* :ghissue:`18283`: Automatic title placement wrong if parent axes is off the page +* :ghissue:`18254`: scatter(..., marker='') raises on drawing with mpl3.3.1 +* :ghissue:`18259`: New IntVar needs a parent widget diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.3.3.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.3.3.rst new file mode 100644 index 0000000000000000000000000000000000000000..5475a5209eeda1d9091db5a267ed3599391c407a --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.3.3.rst @@ -0,0 +1,93 @@ +.. _github-stats-3-3-3: + +GitHub statistics for 3.3.3 (Nov 11, 2020) +========================================== + +GitHub statistics for 2020/09/15 (tag: v3.3.2) - 2020/11/11 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 14 issues and merged 46 pull requests. +The full list can be seen `on GitHub `__ + +The following 11 authors contributed 73 commits. + +* Antony Lee +* David Stansby +* Elliott Sales de Andrade +* Eric Larson +* Jody Klymak +* Jouni K. Seppänen +* Ryan May +* shevawen +* Stephen Sinclair +* Thomas A Caswell +* Tim Hoffmann + +GitHub issues and pull requests: + +Pull Requests (46): + +* :ghpull:`18936`: Backport PR #18929 on branch v3.3.x +* :ghpull:`18929`: FIX: make sure scalarmappable updates are handled correctly in 3D +* :ghpull:`18928`: Backport PR #18842 on branch v3.3.x (Add CPython 3.9 wheels.) +* :ghpull:`18842`: Add CPython 3.9 wheels. +* :ghpull:`18921`: Backport PR #18732 on branch v3.3.x (Add a ponyfill for ResizeObserver on older browsers.) +* :ghpull:`18732`: Add a ponyfill for ResizeObserver on older browsers. +* :ghpull:`18886`: Backport #18860 on branch v3.3.x +* :ghpull:`18860`: FIX: stop deprecation message colorbar +* :ghpull:`18845`: Backport PR #18839 on branch v3.3.x +* :ghpull:`18843`: Backport PR #18756 on branch v3.3.x (FIX: improve date performance regression) +* :ghpull:`18850`: Backport CI fixes to v3.3.x +* :ghpull:`18839`: MNT: make sure we do not mutate input in Text.update +* :ghpull:`18838`: Fix ax.set_xticklabels(fontproperties=fp) +* :ghpull:`18756`: FIX: improve date performance regression +* :ghpull:`18787`: Backport PR #18769 on branch v3.3.x +* :ghpull:`18786`: Backport PR #18754 on branch v3.3.x (FIX: make sure we have more than 1 tick with small log ranges) +* :ghpull:`18754`: FIX: make sure we have more than 1 tick with small log ranges +* :ghpull:`18769`: Support ``ax.grid(visible=)``. +* :ghpull:`18778`: Backport PR #18773 on branch v3.3.x (Update to latest cibuildwheel release.) +* :ghpull:`18773`: Update to latest cibuildwheel release. +* :ghpull:`18755`: Backport PR #18734 on branch v3.3.x (Fix deprecation warning in GitHub Actions.) +* :ghpull:`18734`: Fix deprecation warning in GitHub Actions. +* :ghpull:`18725`: Backport PR #18533 on branch v3.3.x +* :ghpull:`18723`: Backport PR #18584 on branch v3.3.x (Fix setting 0-timeout timer with Tornado.) +* :ghpull:`18676`: Backport PR #18670 on branch v3.3.x (MNT: make certifi actually optional) +* :ghpull:`18670`: MNT: make certifi actually optional +* :ghpull:`18665`: Backport PR #18639 on branch v3.3.x (nbagg: Don't close figures for bubbled events.) +* :ghpull:`18639`: nbagg: Don't close figures for bubbled events. +* :ghpull:`18640`: Backport PR #18636 on branch v3.3.x (BLD: certifi is not a run-time dependency) +* :ghpull:`18636`: BLD: certifi is not a run-time dependency +* :ghpull:`18629`: Backport PR #18621 on branch v3.3.x (Fix singleshot timers in wx.) +* :ghpull:`18621`: Fix singleshot timers in wx. +* :ghpull:`18607`: Backport PR #18604 on branch v3.3.x (Update test image to fix Ghostscript 9.53.) +* :ghpull:`18604`: Update test image to fix Ghostscript 9.53. +* :ghpull:`18584`: Fix setting 0-timeout timer with Tornado. +* :ghpull:`18550`: backport pr 18549 +* :ghpull:`18545`: Backport PR #18540 on branch v3.3.x (Call to ExitStack.push should have been ExitStack.callback.) +* :ghpull:`18549`: FIX: unit-convert pcolorargs before interpolating +* :ghpull:`18540`: Call to ExitStack.push should have been ExitStack.callback. +* :ghpull:`18533`: Correctly remove support for \stackrel. +* :ghpull:`18509`: Backport PR #18505 on branch v3.3.x (Fix depth shading when edge/facecolor is none.) +* :ghpull:`18505`: Fix depth shading when edge/facecolor is none. +* :ghpull:`18504`: Backport PR #18500 on branch v3.3.x (BUG: Fix all-masked imshow) +* :ghpull:`18500`: BUG: Fix all-masked imshow +* :ghpull:`18476`: CI: skip qt, cairo, pygobject related installs on OSX on travis +* :ghpull:`18134`: Build on xcode9 + +Issues (14): + +* :ghissue:`18885`: 3D Scatter Plot with Colorbar is not saved correctly with savefig +* :ghissue:`18922`: pyplot.xticks(): Font property specification is not effective except 1st tick label. +* :ghissue:`18481`: "%matplotlib notebook" not working in firefox with matplotlib 3.3.1 +* :ghissue:`18595`: Getting internal "MatplotlibDeprecationWarning: shading='flat' ..." +* :ghissue:`18743`: from mpl 3.2.2 to 3.3.0 enormous increase in creation time +* :ghissue:`18317`: pcolormesh: shading='nearest' and non-monotonic coordinates +* :ghissue:`18758`: Using Axis.grid(visible=True) results in TypeError for multiple values for keyword argument +* :ghissue:`18638`: ``matplotlib>=3.3.2`` breaks ``ipywidgets.interact`` +* :ghissue:`18337`: Error installing matplotlib-3.3.1 using pip due to old version of certifi on conda environment +* :ghissue:`18620`: wx backend assertion error with fig.canvas.timer.start() +* :ghissue:`18551`: test_transparent_markers[pdf] is broken on v3.3.x Travis macOS +* :ghissue:`18580`: Animation freezes in Jupyter notebook +* :ghissue:`18547`: pcolormesh x-axis with datetime broken for nearest shading +* :ghissue:`18539`: Error in Axes.redraw_in_frame in use of ExitStack: push() takes 2 positional arguments but 3 were given diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.3.4.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.3.4.rst new file mode 100644 index 0000000000000000000000000000000000000000..afff8b384b8ee5c591c4d5494e9dacc3a50e201b --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.3.4.rst @@ -0,0 +1,51 @@ +.. _github-stats-3-3-4: + +GitHub statistics for 3.3.4 (Jan 28, 2021) +========================================== + +GitHub statistics for 2020/11/12 (tag: v3.3.3) - 2021/01/28 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 2 issues and merged 20 pull requests. +The full list can be seen `on GitHub `__ + +The following 7 authors contributed 43 commits. + +* Antony Lee +* David Stansby +* Elliott Sales de Andrade +* Jody Klymak +* Mark Harfouche +* Thomas A Caswell +* Tim Hoffmann + +GitHub issues and pull requests: + +Pull Requests (20): + +* :ghpull:`19386`: Backport PR #19238 on branch v3.3.x (Fix build with LTO disabled in environment) +* :ghpull:`19238`: Fix build with LTO disabled in environment +* :ghpull:`19382`: Backport PR #19052 on branch v3.3.x (Always pass integers to wx.Size.) +* :ghpull:`19377`: Backport PR #19371 on branch v3.3.x (Fix specgram test on NumPy 1.20.) +* :ghpull:`19371`: Fix specgram test on NumPy 1.20. +* :ghpull:`19305`: Backport PR #19301 on branch v3.3.x +* :ghpull:`19301`: Fix several CI issues +* :ghpull:`19269`: Backport PR #19266 on branch v3.3.x (Don't update homebrew on GitHub Actions) +* :ghpull:`19266`: Don't update homebrew on GitHub Actions +* :ghpull:`19252`: Backport PR #19245 on branch v3.3.x (handle usecase where QT_API is specified with some capitals) +* :ghpull:`19245`: handle usecase where QT_API is specified with some capitals +* :ghpull:`19143`: Backport PR #19131 on branch v3.3.x (Fix WebAgg initialization) +* :ghpull:`19115`: Backport PR #19108 on branch v3.3.x +* :ghpull:`19165`: Backport PR #19163 on branch v3.3.x (Ignore missing _FancyAxislineStyle doc targets.) +* :ghpull:`19163`: Ignore missing _FancyAxislineStyle doc targets. +* :ghpull:`19131`: Fix WebAgg initialization +* :ghpull:`19052`: Always pass integers to wx.Size. +* :ghpull:`19108`: Fix failing animation test with pytest 6.2. +* :ghpull:`19062`: Backport PR #19036 on branch v3.3.x +* :ghpull:`19036`: Start testing using GitHub Actions + +Issues (2): + +* :ghissue:`19227`: Matplotlib generates invalid ft2font if -fno-lto gcc CFLAGS used +* :ghissue:`19129`: webAgg example broken - maybe mpl.js broken? diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.4.0.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.4.0.rst new file mode 100644 index 0000000000000000000000000000000000000000..fe49e673a6607662113ae7d38c56010af1cee886 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.4.0.rst @@ -0,0 +1,1174 @@ +.. _github-stats-3-4-0: + +GitHub statistics for 3.4.0 (Mar 26, 2021) +========================================== + +GitHub statistics for 2020/07/16 (tag: v3.3.0) - 2021/03/26 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 204 issues and merged 772 pull requests. +The full list can be seen `on GitHub `__ + +The following 177 authors contributed 3852 commits. + +* A N U S H +* Adam Brown +* Aditya Malhotra +* aflah02 +* Aitik Gupta +* Alejandro García +* Alex Henrie +* Alexander Schlüter +* Alexis de Almeida Coutinho +* Andreas C Mueller +* andrzejnovak +* Antony Lee +* Arthur Milchior +* bakes +* BAKEZQ +* BaoGiang HoangVu +* Ben Root +* BH4 +* Bradley Dice +* Braxton Lamey +* Brian McFee +* Bruno Beltran +* Bryan Kok +* Byron Boulton +* Carsten Schelp +* ceelo777 +* Charles +* CharlesHe16 +* Christian Baumann +* Contextualist +* DangoMelon +* Daniel +* Daniel Ingram +* David Meyer +* David Stansby +* David Young +* deep-jkl +* Diego Leal +* Dr. Thomas A Caswell +* Dylan Cutler +* Eben Pendleton +* EBenkler +* ebenp +* ecotner +* Elliott Sales de Andrade +* Emily FY +* Eric Firing +* Eric Larson +* Eric Prestat +* Erik Benkler +* Evan Berkowitz +* Ewan Sutherland +* Federico Ariza +* Forrest +* Frank Sauerburger +* FrankTheCodeMonkey +* Greg Lucas +* hannah +* Harry Knight +* Harsh Sharma +* Hassan Kibirige +* Hugo van Kemenade +* Iain-S +* Ian Hunt-Isaak +* Ian Thomas +* ianhi +* Ilya V. Schurov +* ImportanceOfBeingErnest +* Isuru Fernando +* ItsRLuo +* J. Scott Berg +* Jae-Joon Lee +* Jakub Klus +* Janakarajan Natarajan +* Jann Paul Mattern +* jbhopkins +* jeetvora331 +* Jerome F. Villegas +* Jerome Villegas +* jfbu +* Jirka Hladky +* Jody Klymak +* Johan von Forstner +* johan12345 +* john imperial +* John Losito +* John Peloquin +* johnthagen +* Jouni K. Seppänen +* Kate Perkins +* kate-perkins +* katrielester +* kolibril13 +* kwgchi +* Lee Johnston +* Leo Singer +* linchiwei123 +* Lucy Liu +* luz paz +* luzpaz +* Léonard Gérard +* majorwitty +* mansoor96g +* Maria Ilie +* Maria-Alexandra Ilie +* Marianne Corvellec +* Mark Harfouche +* Martin Spacek +* Mary Chris Go +* Matthew Petroff +* Matthias Bussonnier +* Matthias Geier +* Max Chen +* McToel +* Michael Grupp +* Michaël Defferrard +* Mihai Anton +* Mohammad Aflah Khan +* Neilzon Viloria +* neok-m4700 +* Nora Moseman +* Pamela Wu +* pankajchetry1168 +* Petar Mlinarić +* Peter Williams +* Phil Nagel +* philip-sparks +* Philipp Arras +* Philipp Nagel +* Pratyush Raj +* Péter Leéh +* rajpratyush +* Randall Ung +* reshamas +* Rezangyal +* Richard Sheridan +* richardsheridan +* Rob McDonald +* Rohit Rawat +* Ruben Verweij +* Ruth Comer +* Ryan May +* Sam Tygier +* shawnchen +* shawnchen1996 +* ShawnChen1996 +* Sidharth Bansal +* Srihitha Maryada +* Stephen Sinclair +* Struan Murray +* Theodor Athanasiadis +* Thomas A Caswell +* Thorvald Johannessen +* Tim Gates +* Tim Hoffmann +* Tobias Hangleiter +* tohc1 +* Tom Charrett +* Tom Neep +* Tomas Fiers +* ulijh +* Ulrich J. Herter +* Utkarshp1 +* Uwe F. Mayer +* Valentin Valls +* Vincent Cuenca +* Vineyard +* Vlas Sokolov +* Xianxiang Li +* xlilos +* Ye Chang +* Yichao Yu +* yozhikoff +* Yun Liu +* z0rgy +* zitorelova + +GitHub issues and pull requests: + +Pull Requests (772): + +* :ghpull:`19775`: Fix deprecation for imread on URLs. +* :ghpull:`19772`: Backport PR #19535 on branch v3.4.x (Fix example's BasicUnit array conversion.) +* :ghpull:`19771`: Backport PR #19757 on branch v3.4.x (Fixed python -mpip typo) +* :ghpull:`19770`: Backport PR #19739 on branch v3.4.x (Changed 'python -mpip' to 'python -m pip' for consistency) +* :ghpull:`19535`: Fix example's BasicUnit array conversion. +* :ghpull:`19767`: Backport PR #19766 on branch v3.4.x (Set colormap modification removal to 3.6.) +* :ghpull:`19766`: Set colormap modification removal to 3.6. +* :ghpull:`19764`: Backport PR #19762 on branch v3.4.x (FIX: do not report that webagg supports blitting) +* :ghpull:`19762`: FIX: do not report that webagg supports blitting +* :ghpull:`19689`: Prepare API docs for v3.4.0 +* :ghpull:`19761`: Backport PR #19746 on branch v3.4.x (Fix resizing in nbAgg.) +* :ghpull:`19746`: Fix resizing in nbAgg. +* :ghpull:`19757`: Fixed python -mpip typo +* :ghpull:`19739`: Changed 'python -mpip' to 'python -m pip' for consistency +* :ghpull:`19713`: DOC: Prepare What's new page for 3.4.0. +* :ghpull:`19742`: Backport PR #19741 on branch v3.4.x (Only override pickradius when picker is not a bool.) +* :ghpull:`19741`: Only override pickradius when picker is not a bool. +* :ghpull:`19726`: Backport PR #19505 on branch v3.4.x (Move some advanced documentation away from Installation Guide) +* :ghpull:`19505`: Move some advanced documentation away from Installation Guide +* :ghpull:`19712`: Backport PR #19707 on branch v3.4.x (DOC: fix dx in Arrow guide) +* :ghpull:`19711`: Backport PR #19709 on branch v3.4.x (Fix arrow_guide.py typo) +* :ghpull:`19709`: Fix arrow_guide.py typo +* :ghpull:`19707`: DOC: fix dx in Arrow guide +* :ghpull:`19699`: Backport PR #19695 on branch v3.4.x (DOC: Increase size of headings) +* :ghpull:`19695`: DOC: Increase size of headings +* :ghpull:`19697`: Backport PR #19690 on branch v3.4.x (Only warn about existing redirects if content differs.) +* :ghpull:`19690`: Only warn about existing redirects if content differs. +* :ghpull:`19696`: Backport PR #19665 on branch v3.4.x (Changed FormatStrFormatter documentation to include how to get unicode minus) +* :ghpull:`19680`: Backport PR #19402 on branch v3.4.x (Build aarch64 wheels) +* :ghpull:`19678`: Backport PR #19671 on branch v3.4.x (Fix crash in early window raise in gtk3.) +* :ghpull:`19671`: Fix crash in early window raise in gtk3. +* :ghpull:`19665`: Changed FormatStrFormatter documentation to include how to get unicode minus +* :ghpull:`19402`: Build aarch64 wheels +* :ghpull:`19669`: Backport PR #19661 on branch v3.4.x (Fix CoC link) +* :ghpull:`19668`: Backport PR #19663 on branch v3.4.x (ENH: add a copy method to colormaps) +* :ghpull:`19663`: ENH: add a copy method to colormaps +* :ghpull:`19661`: Fix CoC link +* :ghpull:`19652`: Backport PR #19649 on branch v3.4.x (Use globals() instead of locals() for adding colormaps as names to cm module) +* :ghpull:`19649`: Use globals() instead of locals() for adding colormaps as names to cm module +* :ghpull:`19651`: Backport PR #19618 on branch v3.4.x (FIX: make the cache in font_manager._get_font keyed by thread id) +* :ghpull:`19650`: Backport PR #19625 on branch v3.4.x (Restore _AxesStack to track a Figure's Axes order.) +* :ghpull:`19647`: Backport PR #19645 on branch v3.4.x (Fix comment in RectangleSelector) +* :ghpull:`19618`: FIX: make the cache in font_manager._get_font keyed by thread id +* :ghpull:`19648`: Backport PR #19643 on branch v3.4.x (Don't turn check_for_pgf into public API.) +* :ghpull:`19625`: Restore _AxesStack to track a Figure's Axes order. +* :ghpull:`19643`: Don't turn check_for_pgf into public API. +* :ghpull:`19645`: Fix comment in RectangleSelector +* :ghpull:`19644`: Backport PR #19611 on branch v3.4.x (Fix double picks.) +* :ghpull:`19611`: Fix double picks. +* :ghpull:`19640`: Backport PR #19639 on branch v3.4.x (FIX: do not allow single element list of str in subplot_mosaic) +* :ghpull:`19639`: FIX: do not allow single element list of str in subplot_mosaic +* :ghpull:`19638`: Backport PR #19632 on branch v3.4.x (Fix handling of warn keyword in Figure.show.) +* :ghpull:`19637`: Backport PR #19582 on branch v3.4.x (Add kerning to single-byte strings in PDFs) +* :ghpull:`19632`: Fix handling of warn keyword in Figure.show. +* :ghpull:`19582`: Add kerning to single-byte strings in PDFs +* :ghpull:`19629`: Backport PR #19548 on branch v3.4.x (Increase tolerances for other arches.) +* :ghpull:`19630`: Backport PR #19596 on branch v3.4.x (Fix for issue 17769: wx interactive figure close cause crash) +* :ghpull:`19596`: Fix for issue 17769: wx interactive figure close cause crash +* :ghpull:`19548`: Increase tolerances for other arches. +* :ghpull:`19616`: Backport PR #19577 on branch v3.4.x (Fix "return"->"enter" mapping in key names.) +* :ghpull:`19617`: Backport PR #19571 on branch v3.4.x (Fail early when setting Text color to a non-colorlike.) +* :ghpull:`19615`: Backport PR #19583 on branch v3.4.x (FIX: check for a set during color conversion) +* :ghpull:`19614`: Backport PR #19597 on branch v3.4.x (Fix IPython import issue) +* :ghpull:`19613`: Backport PR #19546 on branch v3.4.x (Move unrendered README.wx to thirdpartypackages/index.rst.) +* :ghpull:`19583`: FIX: check for a set during color conversion +* :ghpull:`19597`: Fix IPython import issue +* :ghpull:`19571`: Fail early when setting Text color to a non-colorlike. +* :ghpull:`19595`: Backport PR #19589 on branch v3.4.x (Changes linestyle parameter of flierprops) +* :ghpull:`19577`: Fix "return"->"enter" mapping in key names. +* :ghpull:`19589`: Changes linestyle parameter of flierprops +* :ghpull:`19592`: Backport PR #19587 on branch v3.4.x (DOC: fix plot_date doc) +* :ghpull:`19587`: DOC: fix plot_date doc +* :ghpull:`19580`: Backport PR #19456 on branch v3.4.x (Doc implement reredirects) +* :ghpull:`19579`: Backport PR #19567 on branch v3.4.x (DOC: fix typos) +* :ghpull:`19456`: Doc implement reredirects +* :ghpull:`19567`: DOC: fix typos +* :ghpull:`19542`: Backport PR #19532 on branch v3.4.x (Add note on interaction between text wrapping and bbox_inches='tight') +* :ghpull:`19549`: Backport PR #19545 on branch v3.4.x (Replace references to pygtk by pygobject in docs.) +* :ghpull:`19546`: Move unrendered README.wx to thirdpartypackages/index.rst. +* :ghpull:`19545`: Replace references to pygtk by pygobject in docs. +* :ghpull:`19532`: Add note on interaction between text wrapping and bbox_inches='tight' +* :ghpull:`19541`: MAINT: fix typo from #19438 +* :ghpull:`19480`: Fix CallbackRegistry memory leak +* :ghpull:`19539`: In scatter, fix single rgb edgecolors handling +* :ghpull:`19438`: FIX: restore creating new axes via plt.subplot with different kwargs +* :ghpull:`18436`: Sync 3D errorbar with 2D +* :ghpull:`19472`: Fix default label visibility for top-or-left-labeled shared subplots(). +* :ghpull:`19496`: MNT: Restore auto-adding Axes3D to their parent figure on init +* :ghpull:`19533`: Clarify the animated property and reword blitting tutorial a bit +* :ghpull:`19146`: Fix #19128: webagg reports incorrect values for non-alphanumeric key events on non-qwerty keyboards +* :ghpull:`18068`: Add note on writing binary formats to stdout using savefig() +* :ghpull:`19507`: FIX: ensure we import when the user cwd does not exist +* :ghpull:`19413`: FIX: allow add option for Axes3D(fig) +* :ghpull:`19498`: Dedupe implementations of {XAxis,YAxis}._get_tick_boxes_siblings. +* :ghpull:`19502`: Prefer projection="polar" over polar=True. +* :ghpull:`18480`: Clarify color priorities in collections +* :ghpull:`19501`: Fix text position with usetex and xcolor +* :ghpull:`19460`: Implement angles for bracket arrow styles. +* :ghpull:`18408`: FIX/API: ``fig.canvas.draw`` always updates internal state +* :ghpull:`19504`: Remove remaining references to Travis CI +* :ghpull:`13358`: 3D margins consistency for mplot3d (isometric projection) +* :ghpull:`19529`: Simplify checking for tex packages. +* :ghpull:`19516`: Ignore files from annotate coverage reports +* :ghpull:`19500`: Remove workaround for numpy<1.16, and update version check. +* :ghpull:`19518`: Skip setting up a tmpdir in tests that don't need one. +* :ghpull:`19514`: DOC: add fixed-aspect colorbar examples +* :ghpull:`19511`: Clarify axes.autolimit_mode rcParam. +* :ghpull:`19503`: Fix tight_layout() on "canvasless" figures. +* :ghpull:`19410`: Set the GTK background color to white. +* :ghpull:`19497`: Add overset/underset whatsnew entry +* :ghpull:`19490`: Fix error message in plt.close(). +* :ghpull:`19461`: Move ToolManager warnings to rcParam validator +* :ghpull:`19488`: Prefer ``tr1-tr2`` to ``tr1+tr2.inverted()``. +* :ghpull:`19485`: fix regression of axline behavior with non-linear scales +* :ghpull:`19314`: Fix over/under mathtext symbols +* :ghpull:`19468`: Include tex output in pdf LatexError. +* :ghpull:`19478`: Fix trivial typo in error message. +* :ghpull:`19449`: Switch array-like (M, N) to (M, N) array-like. +* :ghpull:`19459`: Merge v3.3.4 into master +* :ghpull:`18746`: Make figure parameter optional when constructing canvases. +* :ghpull:`19455`: Add note that pyplot cannot be used for 3D. +* :ghpull:`19457`: Use absolute link for discourse +* :ghpull:`19440`: Slightly reorganize api docs. +* :ghpull:`19344`: Improvements to Docs for new contributors +* :ghpull:`19435`: Replace gtk3 deprecated APIs that have simple replacements. +* :ghpull:`19452`: Fix the docstring of draw_markers to match the actual behavior. +* :ghpull:`19448`: Remove unnecessary facecolor cache in Patch3D. +* :ghpull:`19396`: CI: remove win prerelease azure + add py39 +* :ghpull:`19426`: Support empty stairs. +* :ghpull:`19399`: Fix empty Poly3DCollections +* :ghpull:`19416`: fixes TypeError constructor returned NULL in wayland session +* :ghpull:`19439`: Move cheatsheet focus to the cheatsheets away +* :ghpull:`19425`: Add units to bar_label padding documentation. +* :ghpull:`19422`: Style fixes to triintepolate docs. +* :ghpull:`19421`: Switch to documenting generic collections in lowercase. +* :ghpull:`19411`: DOC: fix incorrect parameter names +* :ghpull:`19387`: Fix CSS table header layout +* :ghpull:`18683`: Better document font. rcParams entries. +* :ghpull:`19418`: BF: DOCS: fix slash for windows in conf.py +* :ghpull:`18544`: REORG: JoinStyle and CapStyle classes +* :ghpull:`19415`: Make TaggedValue in basic_units a sequence +* :ghpull:`19412`: DOC: correct off by one indentation. +* :ghpull:`19407`: Improve doc of default labelpad. +* :ghpull:`19373`: test for align_ylabel bug with constrained_layout +* :ghpull:`19347`: os.environ-related cleanups. +* :ghpull:`19319`: DOC: make canonical version stable +* :ghpull:`19395`: wx: Use integers in more places +* :ghpull:`17850`: MNT: set the facecolor of nofill markers +* :ghpull:`19334`: Fix qt backend on mac big sur +* :ghpull:`19394`: Don't allow pyzmq 22.0.0 on AppVeyor. +* :ghpull:`19367`: Deprecate imread() reading from URLs +* :ghpull:`19341`: MarkerStyle is considered immutable +* :ghpull:`19337`: Move sphinx extension files into mpl-data. +* :ghpull:`19389`: Temporarily switch intersphinx to latest pytest. +* :ghpull:`19390`: Doc: Minor formatting +* :ghpull:`19383`: Always include sample_data in installs. +* :ghpull:`19378`: Modify indicate_inset default label value +* :ghpull:`19357`: Shorten/make more consistent the half-filled marker definitions. +* :ghpull:`18649`: Deprecate imread() reading from URLs +* :ghpull:`19370`: Force classic ("auto") date converter in classic style. +* :ghpull:`19364`: Fix trivial doc typos. +* :ghpull:`19359`: Replace use of pyplot with OO api in some examples +* :ghpull:`19342`: FIX: fix bbox_inches=tight and constrained layout bad interaction +* :ghpull:`19350`: Describe how to test regular installations of Matplotlib +* :ghpull:`19332`: Prefer concatenate to h/vstack in simple cases. +* :ghpull:`19340`: Remove the deprecated rcParams["datapath"]. +* :ghpull:`19326`: Whitespace in Choosing Colormaps tutorial plots +* :ghpull:`16417`: Deprecate rcParams["datapath"] in favor of mpl.get_data_path(). +* :ghpull:`19336`: Revert "Deprecate setting Line2D's pickradius via set_picker." +* :ghpull:`19153`: MNT: Remove deprecated axes kwargs collision detection (version 2) +* :ghpull:`19330`: Remove register storage class from Agg files. +* :ghpull:`19324`: Improve FT2Font docstrings. +* :ghpull:`19328`: Explain annotation behavior when used in conjunction with arrows +* :ghpull:`19329`: Fix building against system qhull +* :ghpull:`19331`: Skip an ImageMagick test if ffmpeg is unavailable. +* :ghpull:`19333`: Fix PGF with special character paths. +* :ghpull:`19322`: Improve docs of _path C-extension. +* :ghpull:`19317`: Pin to oldest supported PyQt on minver CI instance. +* :ghpull:`19315`: Update the markers part of matplotlib.pyplot.plot document (fix issue #19274) +* :ghpull:`18978`: API: Remove deprecated axes kwargs collision detection +* :ghpull:`19306`: Fix some packaging issues +* :ghpull:`19291`: Cleanup code for format processing +* :ghpull:`19316`: Simplify X11 checking for Qt. +* :ghpull:`19287`: Speedup LinearSegmentedColormap.from_list. +* :ghpull:`19293`: Fix some docstring interpolations +* :ghpull:`19313`: Add missing possible return value to docs of get_verticalalignment() +* :ghpull:`18916`: Add overset and underset support for mathtext +* :ghpull:`18126`: FIX: Allow deepcopy on norms and scales +* :ghpull:`19281`: Make all transforms copiable (and thus scales, too). +* :ghpull:`19294`: Deprecate project argument to Line3DCollection.draw. +* :ghpull:`19307`: DOC: remove stray assignment in "multiple legends" example +* :ghpull:`19303`: Extended the convolution filter for correct dilation +* :ghpull:`19261`: Add machinery for png-only, single-font mathtext tests. +* :ghpull:`16571`: Update Qhull to 2019.1 reentrant version +* :ghpull:`16720`: Download qhull at build-or-sdist time. +* :ghpull:`18653`: ENH: Add func norm +* :ghpull:`19272`: Strip irrelevant information from testing docs +* :ghpull:`19298`: Fix misplaced colon in bug report template. +* :ghpull:`19297`: Clarify return format of Line2D.get_data. +* :ghpull:`19277`: Warn on redundant definition of plot properties +* :ghpull:`19278`: Cleanup and document _plot_args() +* :ghpull:`19282`: Remove the unused TransformNode._gid. +* :ghpull:`19264`: Expand on slider_demo example +* :ghpull:`19244`: Move cbook._check_isinstance() to _api.check_isinstance() +* :ghpull:`19273`: Use proper pytest functionality for warnings and exceptions +* :ghpull:`19262`: more robust check for enter key in TextBox +* :ghpull:`19249`: Clarify Doc for Secondary axis, ad-hoc example +* :ghpull:`19248`: Make return value of _get_patch_verts always an array. +* :ghpull:`19247`: Fix markup for mplot3d example. +* :ghpull:`19216`: Ignore non-draw codes when calculating path extent +* :ghpull:`19215`: Collect information for setting up a development environment +* :ghpull:`19210`: Fix creation of AGG images bigger than 1024**3 pixels +* :ghpull:`18933`: Set clip path for PostScript texts. +* :ghpull:`19162`: Deprecate cbook.warn_deprecated and move internal calls to _api.warn_deprecated +* :ghpull:`16391`: Re-write sym-log-norm +* :ghpull:`19240`: FIX: process lists for inverse norms +* :ghpull:`18737`: Fix data cursor for images with additional transform +* :ghpull:`18642`: Propagate minpos from Collections to Axes.datalim +* :ghpull:`19242`: Update first occurrence of QT to show both 4 and 5 +* :ghpull:`19231`: Add reference section to all statistics examples +* :ghpull:`19217`: Request an autoscale at the end of ax.pie() +* :ghpull:`19176`: Deprecate additional positional args to plot_{surface,wireframe}. +* :ghpull:`19063`: Give plot_directive output a ``max-width: 100%`` +* :ghpull:`19187`: Support callable for formatting of Sankey labels +* :ghpull:`19220`: Remove one TOC level from the release guide +* :ghpull:`19212`: MNT: try to put more whitespace in welcome message +* :ghpull:`19155`: Consolidated the Install from Source docs +* :ghpull:`19208`: added version ask/hint to issue templates, grammar on pr bot +* :ghpull:`19185`: Document Triangulation.triangles +* :ghpull:`19181`: Remove unused imports +* :ghpull:`19207`: Fix Grouper example code +* :ghpull:`19204`: Clarify Date Format Example +* :ghpull:`19200`: Fix incorrect statement regarding test images cache size. +* :ghpull:`19198`: Fix link in contrbuting docs +* :ghpull:`19196`: Fix PR welcome action +* :ghpull:`19188`: Cleanup comparision between X11/CSS4 and xkcd colors +* :ghpull:`19194`: Fix trivial quiver doc typo. +* :ghpull:`19180`: Fix Artist.remove_callback() +* :ghpull:`19192`: Fixed part of Issue - #19100, changed documentation for axisartist +* :ghpull:`19179`: Check that no new figures are created in image comparison tests +* :ghpull:`19184`: Minor doc cleanup +* :ghpull:`19093`: DOCS: Specifying Colors tutorial format & arrange +* :ghpull:`17107`: Add Spines class as a container for all Axes spines +* :ghpull:`18829`: Create a RangeSlider widget +* :ghpull:`18873`: Getting Started GSoD +* :ghpull:`19175`: Fix axes direction for a floating axisartist +* :ghpull:`19130`: DOC: remove reference to 2.2.x branches from list of active branches +* :ghpull:`15212`: Dedupe window-title setting by moving it to FigureManagerBase. +* :ghpull:`19172`: Fix 3D surface example bug for non-square grid +* :ghpull:`19173`: Ensure backend tests are skipped if unavailable +* :ghpull:`19170`: Clarify meaning of facecolors for LineCollection +* :ghpull:`18310`: Add 3D stem plot +* :ghpull:`18127`: Implement lazy autoscaling in mplot3d. +* :ghpull:`16178`: Add multiple label support for Axes.plot() +* :ghpull:`19151`: Deprecate @cbook.deprecated and move internal calls to @_api.deprecated +* :ghpull:`19088`: Ignore CLOSEPOLY vertices when computing dataLim from patches +* :ghpull:`19166`: CI: add github action to post to first-time PRs openers +* :ghpull:`19124`: GOV/DOC: add section to docs on triaging and triage team +* :ghpull:`15602`: Add an auto-labeling helper function for bar charts +* :ghpull:`19164`: docs: fix simple typo, backslahes -> backslashes +* :ghpull:`19161`: Simplify test_backend_pdf::test_multipage_properfinalize. +* :ghpull:`19141`: FIX: suppress offset text in ConciseDateFormatter when largest scale is in years +* :ghpull:`19150`: Move from @cbook._classproperty to @_api.classproperty +* :ghpull:`19144`: Move from cbook._warn_external() to _api.warn_external() +* :ghpull:`19119`: Don't lose unit change handlers when pickling/unpickling. +* :ghpull:`19145`: Move from cbook._deprecate_*() to _api.deprecate_*() +* :ghpull:`19123`: Use Qt events to refresh pixel ratio. +* :ghpull:`19056`: Support raw/rgba frame format in FFMpegFileWriter +* :ghpull:`19140`: Fix the docstring of suptitle/subxlabel/supylabel. +* :ghpull:`19132`: Normalize docstring interpolation label for kwdoc() property lists +* :ghpull:`19134`: Switch internal API function calls from cbook to _api +* :ghpull:`19138`: Added non-code contributions to incubator docs +* :ghpull:`19125`: DOC: contributor incubator +* :ghpull:`18948`: DOC: Fix latexpdf build +* :ghpull:`18753`: Remove several more deprecations +* :ghpull:`19083`: Fix headless tests on Wayland. +* :ghpull:`19127`: Cleanups to webagg & friends. +* :ghpull:`19122`: FIX/DOC - make Text doscstring interp more easily searchable +* :ghpull:`19106`: Support setting rcParams["image.cmap"] to Colormap instances. +* :ghpull:`19085`: FIX: update a transfrom from transFigure to transSubfigure +* :ghpull:`19117`: Rename a confusing variable. +* :ghpull:`18647`: Axes.axline: implement support transform argument (for points but not slope) +* :ghpull:`16220`: Fix interaction with unpickled 3d plots. +* :ghpull:`19059`: Support blitting in webagg backend +* :ghpull:`19107`: Update pyplot.py +* :ghpull:`19044`: Cleanup Animation frame_formats. +* :ghpull:`19087`: FIX/TST: recursively remove ticks +* :ghpull:`19094`: Suppress -Wunused-function about _import_array when compiling tkagg.cpp. +* :ghpull:`19092`: Fix use transform mplot3d +* :ghpull:`19097`: DOC: add FuncScale to set_x/yscale +* :ghpull:`19089`: ENH: allow passing a scale instance to set_scale +* :ghpull:`19086`: FIX: add a default scale to Normalize +* :ghpull:`19073`: Mention in a few more places that artists default to not-pickable. +* :ghpull:`19079`: Remove incorrect statement about ``hist(..., log=True)``. +* :ghpull:`19076`: Small improvements to aitoff projection. +* :ghpull:`19071`: DOC: Add 'blackman' to list of imshow interpolations +* :ghpull:`17524`: ENH: add supxlabel and supylabel +* :ghpull:`18840`: Add tutorial about autoscaling +* :ghpull:`19042`: Simplify GridHelper invalidation. +* :ghpull:`19048`: Remove _draw_{ticks2,label2}; skip extents computation in _update_ticks. +* :ghpull:`18983`: Pass norm argument to spy +* :ghpull:`18802`: Add code of conduct +* :ghpull:`19060`: Fix broken link in Readme +* :ghpull:`18569`: More generic value snapping for Slider widgets +* :ghpull:`19055`: Fix kwargs handling in AnnotationBbox +* :ghpull:`19041`: Reword docs for exception_handler in CallbackRegistry. +* :ghpull:`19046`: Prepare inlining MovieWriter.cleanup() into MovieWriter.finish(). +* :ghpull:`19050`: Better validate tick direction. +* :ghpull:`19038`: Fix markup in interactive figures doc. +* :ghpull:`19035`: grid_helper_curvelinear cleanups. +* :ghpull:`19022`: Update event handling docs. +* :ghpull:`19025`: Remove individual doc entries for some methods Axes inherits from Artist +* :ghpull:`19018`: Inline and optimize ContourLabeler.get_label_coords. +* :ghpull:`19019`: Deprecate never used ``resize_callback`` param to FigureCanvasTk. +* :ghpull:`19023`: Cleanup comments/docs in backend_macosx, backend_pdf. +* :ghpull:`19020`: Replace mathtext assertions by unpacking. +* :ghpull:`19024`: Dedupe docs of GridSpec.subplots. +* :ghpull:`19013`: Improve docs of _get_packed_offsets, _get_aligned_offsets. +* :ghpull:`19009`: Compactify the implementation of ContourLabeler.add_label_near. +* :ghpull:`19008`: Deprecate event processing wrapper methods on FigureManagerBase. +* :ghpull:`19015`: Better document multilinebaseline (and other small TextArea fixes) +* :ghpull:`19012`: Common ``__init__`` for VPacker and HPacker. +* :ghpull:`19014`: Support normalize_kwargs(None) (== {}). +* :ghpull:`19010`: Inline _print_pdf_to_fh, _print_png_to_fh. +* :ghpull:`19003`: Remove reference to unicode-math in pgf preamble. +* :ghpull:`18847`: Cleanup interactive pan/zoom. +* :ghpull:`18868`: Expire _make_keyword_only deprecations from 3.2 +* :ghpull:`18903`: Move cbook._suppress_matplotlib_deprecation_warning() from cbook to _api +* :ghpull:`18997`: Micro-optimize check_isinstance. +* :ghpull:`18995`: Fix the doc of GraphicsContextBase.set_clip_rectangle. +* :ghpull:`18996`: Fix API change message from #18989 +* :ghpull:`18993`: Don't access private renderer attributes in tkagg blit. +* :ghpull:`18980`: DOC: fix typos +* :ghpull:`18989`: The Artist property rasterized cannot be None anymore +* :ghpull:`18987`: Fix punctuation in doc. +* :ghpull:`18894`: Use selectfont instead of findfont + scalefont + setfont in PostScript. +* :ghpull:`18990`: Minor cleanup of categorical example +* :ghpull:`18947`: Strictly increasing check with test coverage for streamplot grid +* :ghpull:`18981`: Cleanup Firefox SVG example. +* :ghpull:`18969`: Improve documentation on rasterization +* :ghpull:`18876`: Support fully-fractional HiDPI added in Qt 5.14. +* :ghpull:`18976`: Simplify contour_label_demo. +* :ghpull:`18975`: Fix typing error in pyplot's docs +* :ghpull:`18956`: Document rasterized parameter in pcolormesh() explicitly +* :ghpull:`18968`: Fix clabel() for backends without canvas.get_renderer() +* :ghpull:`18949`: Deprecate AxisArtist.ZORDER +* :ghpull:`18830`: Pgf plotting +* :ghpull:`18967`: Remove unnecessary calls to lower(). +* :ghpull:`18910`: Remove Artist.eventson and Container.eventson +* :ghpull:`18964`: Remove special-casing for PostScript dpi in pyplot.py. +* :ghpull:`18961`: Replace sphinx-gallery-specific references by standard :doc: refs. +* :ghpull:`18955`: added needs_ghostscript; skip test +* :ghpull:`18857`: Improve hat graph example +* :ghpull:`18943`: Small cleanup to StepPatch._update_path. +* :ghpull:`18937`: Cleanup stem docs and simplify implementation. +* :ghpull:`18895`: Introduce variable since which mpl version the minimal python version +* :ghpull:`18927`: Improve warning message for missing font family specified via alias. +* :ghpull:`18930`: Document limitations of Path.contains_point() and clarify its semantics +* :ghpull:`18892`: Fixes MIME type for svg frame_format in HTMLWriter. +* :ghpull:`18938`: Edit usetex docs. +* :ghpull:`18923`: Use lambdas to prevent gc'ing and deduplication of widget callbacks. +* :ghpull:`16171`: Contour fixes/improvements +* :ghpull:`18901`: Simplify repeat_delay and fix support for it when using iterable frames. +* :ghpull:`18911`: Added Aria-Labels to all inputs with tooltips for generated HTML animations: issue #17910 +* :ghpull:`18912`: Use CallbackRegistry for {Artist,Collection}.add_callback. +* :ghpull:`18919`: DOCS: fix contourf hatch demo legend +* :ghpull:`18905`: Make docs fail on Warning (and fix all existing warnings) +* :ghpull:`18763`: Single-line string notation for subplot_mosaic +* :ghpull:`18902`: Move ImageMagick version exclusion to _get_executable_info. +* :ghpull:`18915`: Remove hard-coded API removal version mapping. +* :ghpull:`18914`: Fix typo in error message: interable -> iterable. +* :ghpull:`15065`: step-between as drawstyle [Alternative approach to #15019] +* :ghpull:`18532`: Consistent behavior of draw_if_interactive across interactive backends. +* :ghpull:`18908`: Rework interactive backends tests. +* :ghpull:`18817`: MAINT: deprecate validCap, validJoin +* :ghpull:`18907`: Unmark wx-threading-test-failure as strict xfail. +* :ghpull:`18896`: Add note on keeping a reference to animation docstrings +* :ghpull:`18862`: Resolve mathtext.fontset at FontProperties creation time. +* :ghpull:`18877`: Remove fallback to nonexistent setDevicePixelRatioF. +* :ghpull:`18823`: Move from @cbook.deprecated to @_api.deprecated +* :ghpull:`18889`: Switch Tk to using PNG files for buttons +* :ghpull:`18888`: Update version of Matplotlib that needs Python 3.7 +* :ghpull:`18867`: Remove "Demo" from example titles (part 2) +* :ghpull:`18863`: Reword FontProperties docstring. +* :ghpull:`18866`: Fix RGBAxes docs markup. +* :ghpull:`18874`: Slightly compress down the pgf tests. +* :ghpull:`18565`: Make Tkagg blit thread safe +* :ghpull:`18858`: Remove "Demo" from example titles +* :ghpull:`15177`: Bind WX_CHAR_HOOK instead of WX_KEY_DOWN for wx key_press_event. +* :ghpull:`18821`: Simplification of animated histogram example +* :ghpull:`18844`: Fix sphinx formatting issues +* :ghpull:`18834`: Add cross-references to Artist tutorial +* :ghpull:`18827`: Update Qt version in event handling docs. +* :ghpull:`18825`: Warn in pgf backend when unknown font is requested. +* :ghpull:`18822`: Remove deprecate +* :ghpull:`18733`: Time series histogram plot example +* :ghpull:`18812`: Change LogFormatter coeff computation +* :ghpull:`18820`: Fix axes -> Axes changes in figure.py +* :ghpull:`18657`: Move cbook.deprecation to _api.deprecation +* :ghpull:`18818`: Clarify behavior of CallbackRegistry.disconnect with nonexistent cids. +* :ghpull:`18811`: DOC Use 'Axes' instead of 'axes' in figure.py +* :ghpull:`18814`: [Example] update Anscombe's Quartet +* :ghpull:`18806`: DOC Use 'Axes' in _axes.py docstrings +* :ghpull:`18799`: Remove unused wx private attribute. +* :ghpull:`18772`: BF: text not drawn shouldn't count for tightbbox +* :ghpull:`18793`: Consistently use axs to refer to a set of Axes (v2) +* :ghpull:`18792`: Cmap cleanup +* :ghpull:`18798`: Deprecate ps.useafm for mathtext +* :ghpull:`18302`: Remove 3D attributes from renderer +* :ghpull:`18795`: Make inset indicator more visible in the example +* :ghpull:`18781`: Update description of web application server example. +* :ghpull:`18791`: Fix documentation of edgecolors precedence for scatter() +* :ghpull:`14645`: Add a helper to copy a colormap and set its extreme colors. +* :ghpull:`17709`: Enh: SymNorm for normalizing symmetrical data around a center +* :ghpull:`18780`: CI: pydocstyle>=5.1.0, flake8-docstrings>=1.4.0 verified to work +* :ghpull:`18200`: Unpin pydocstyle +* :ghpull:`18767`: Turn "How to use Matplotlib in a web application server" into a sphinx-gallery example +* :ghpull:`18765`: Remove some unused tick private attributes. +* :ghpull:`18688`: Shorter property deprecation. +* :ghpull:`18748`: Allow dependabot to check GitHub actions daily +* :ghpull:`18529`: Synchronize view limits of shared axes after setting ticks +* :ghpull:`18575`: Colorbar grid position +* :ghpull:`18744`: DOCS: document log locator's ``numticks`` +* :ghpull:`18687`: Deprecate GraphicsContextPS. +* :ghpull:`18706`: Consistently use 3D, 2D, 1D for dimensionality +* :ghpull:`18702`: _make_norm_from_scale fixes. +* :ghpull:`18558`: Support usetex in date Formatters +* :ghpull:`18493`: MEP22 toolmanager set axes navigate_mode +* :ghpull:`18730`: TST: skip if known-bad version of imagemagick +* :ghpull:`18583`: Support binary comms in nbagg. +* :ghpull:`18728`: Disable mouseover info for NonUniformImage. +* :ghpull:`18710`: Deprecate cla() methods of Axis and Spines in favor of clear() +* :ghpull:`18719`: Added the trace plot of the end point +* :ghpull:`18729`: Use ax.add_image rather than ax.images.append in NonUniformImage example +* :ghpull:`18707`: Use "Return whether ..." docstring for functions returning bool +* :ghpull:`18724`: Remove extra newlines in contour(f) docs. +* :ghpull:`18696`: removed glossary +* :ghpull:`18721`: Remove the use_cmex font fallback mechanism. +* :ghpull:`18680`: wx backend API cleanups. +* :ghpull:`18709`: Use attributes Axes.x/yaxis instead of Axes.get_x/yaxis() +* :ghpull:`18712`: Shorten GraphicsContextWx.get_wxcolour. +* :ghpull:`18708`: Individualize contour and contourf docstrings +* :ghpull:`18663`: fix: keep baseline scale to baseline 0 even if set to None +* :ghpull:`18704`: Fix docstring of Axes.cla() +* :ghpull:`18675`: Merge ParasiteAxesAuxTransBase into ParasiteAxesBase. +* :ghpull:`18651`: Allow Type3 subsetting of otf fonts in pdf backend. +* :ghpull:`17396`: Improve headlessness detection for backend selection. +* :ghpull:`17737`: Deprecate BoxStyle._Base. +* :ghpull:`18655`: Sync SubplotDivider API with SubplotBase API changes. +* :ghpull:`18582`: Shorten mlab tests. +* :ghpull:`18599`: Simplify wx rubberband drawing. +* :ghpull:`18671`: DOC: fix autoscale docstring +* :ghpull:`18637`: BLD: sync build and run time numpy pinning +* :ghpull:`18693`: Also fix tk key mapping, following the same strategy as for gtk. +* :ghpull:`18691`: Cleanup sample_data. +* :ghpull:`18697`: Catch TypeError when validating rcParams types. +* :ghpull:`18537`: Create security policy +* :ghpull:`18356`: ENH: Subfigures +* :ghpull:`18694`: Document limitations on ``@deprecated`` with multiple-inheritance. +* :ghpull:`18669`: Rework checks for old macosx +* :ghpull:`17791`: More accurate handling of unicode/numpad input in gtk3 backends. +* :ghpull:`18679`: Further simplify pgf tmpdir cleanup. +* :ghpull:`18685`: Cleanup pgf examples +* :ghpull:`18682`: Small API cleanups to plot_directive. +* :ghpull:`18686`: Numpydocify setp. +* :ghpull:`18684`: Small simplification to triage_tests.py. +* :ghpull:`17832`: pdf: Support setting URLs on Text objects +* :ghpull:`18674`: Remove accidentally added swapfile. +* :ghpull:`18673`: Small cleanups to parasite axes. +* :ghpull:`18536`: axes3d panning +* :ghpull:`18667`: TST: Lock cache directory during cleanup. +* :ghpull:`18672`: Created Border for color examples +* :ghpull:`18661`: Define GridFinder.{,inv\_}transform_xy as normal methods. +* :ghpull:`18656`: Fix some missing references. +* :ghpull:`18659`: Small simplifications to BboxImage. +* :ghpull:`18511`: feat: StepPatch to take array as baseline +* :ghpull:`18646`: Support activating figures with plt.figure(figure_instance). +* :ghpull:`18370`: Move PostScript Type3 subsetting to pure python. +* :ghpull:`18645`: Simplify Colorbar.set_label, inline Colorbar._edges. +* :ghpull:`18633`: Support linestyle='none' in Patch +* :ghpull:`18527`: Fold ColorbarPatch into Colorbar, deprecate colorbar_factory. +* :ghpull:`17480`: Regenerate background when RectangleSelector active-flag is set back on. +* :ghpull:`18626`: Specify case when parameter is ignored. +* :ghpull:`18634`: Fix typo in warning message. +* :ghpull:`18603`: bugfix #18600 by using the MarkerStyle copy constructor +* :ghpull:`18628`: Remove outdate comment about canvases with no manager attribute. +* :ghpull:`18591`: Deprecate MathTextParser("bitmap") and associated APIs. +* :ghpull:`18617`: Remove special styling of sidebar heading +* :ghpull:`18616`: Improve instructions for building the docs +* :ghpull:`18623`: Provide a 'cursive' font present in Windows' default font set. +* :ghpull:`18579`: Fix stairs() tests +* :ghpull:`18618`: Correctly separate two fantasy font names. +* :ghpull:`18610`: DOCS: optional doc building dependencies +* :ghpull:`18601`: Simplify Rectangle and RegularPolygon. +* :ghpull:`18573`: add_subplot(..., axes_class=...) for more idiomatic mpl_toolkits usage. +* :ghpull:`18605`: Correctly sync state of wx toolbar buttons when triggered by keyboard. +* :ghpull:`18606`: Revert "FIX: pin pytest" +* :ghpull:`18587`: Fix docstring of zaxis_date. +* :ghpull:`18589`: Factor out pdf Type3 glyph drawing. +* :ghpull:`18586`: Text cleanups. +* :ghpull:`18594`: FIX: pin pytest +* :ghpull:`18577`: Random test cleanups +* :ghpull:`18578`: Merge all axisartist axis_direction demos together. +* :ghpull:`18588`: Use get_x/yaxis_transform more. +* :ghpull:`18585`: FIx precision in pie and donut example +* :ghpull:`18564`: Prepare for merging SubplotBase into AxesBase. +* :ghpull:`15127`: ENH/API: improvements to register_cmap +* :ghpull:`18576`: DOC: prefer colormap over color map +* :ghpull:`18340`: Colorbar grid postion +* :ghpull:`18568`: Added Reporting to code_of_conduct.md +* :ghpull:`18555`: Convert _math_style_dict into an Enum. +* :ghpull:`18567`: Replace subplot(ijk) calls by subplots(i, j) +* :ghpull:`18554`: Replace some usages of plt.subplot() by plt.subplots() in tests +* :ghpull:`18556`: Accept same types to errorevery as markevery +* :ghpull:`15932`: Use test cache for test result images too. +* :ghpull:`18557`: DOC: Add an option to disable Google Analytics. +* :ghpull:`18560`: Remove incorrect override of pcolor/contour in parasite axes. +* :ghpull:`18566`: Use fig, ax = plt.subplots() in tests (part 2) +* :ghpull:`18553`: Use fig, ax = plt.subplots() in tests +* :ghpull:`11748`: get_clip_path checks for nan +* :ghpull:`8987`: Tick formatter does not support grouping with locale +* :ghpull:`18552`: Change \*subplot(111, ...) to \*subplot(...) as 111 is the default. +* :ghpull:`18189`: FIX: Add get/set methods for 3D collections +* :ghpull:`18430`: FIX: do not reset ylabel ha when changing position +* :ghpull:`18515`: Remove deprecated backend code. +* :ghpull:`17935`: MNT: improve error messages on bad pdf metadata input +* :ghpull:`18525`: Add Text3D position getter/setter +* :ghpull:`18542`: CLEANUP: validate join/cap style centrally +* :ghpull:`18501`: TST: Add test for _repr_html_ +* :ghpull:`18528`: Deprecate TextArea minimumdescent. +* :ghpull:`18543`: Documentation improvements for stairs() +* :ghpull:`18531`: Unit handling improvements +* :ghpull:`18523`: Don't leak file paths into PostScript metadata +* :ghpull:`18526`: Templatize _image.resample to deduplicate it. +* :ghpull:`18522`: Remove mlab, toolkits, and misc deprecations +* :ghpull:`18516`: Remove deprecated font-related things. +* :ghpull:`18535`: Add a code of conduct link to github +* :ghpull:`17521`: Remove font warning when legend is added while using Tex +* :ghpull:`18517`: Include kerning when outputting pdf strings. +* :ghpull:`18521`: Inline some helpers in ColorbarBase. +* :ghpull:`18512`: Private api2 +* :ghpull:`18519`: Correctly position text with nonzero descent with afm fonts / ps output. +* :ghpull:`18513`: Remove Locator.autoscale. +* :ghpull:`18497`: Merge v3.3.x into master +* :ghpull:`18502`: Remove the deprecated matplotlib.cm.revcmap() +* :ghpull:`18506`: Inline ScalarFormatter._formatSciNotation. +* :ghpull:`18455`: Fix BoundingBox in EPS files. +* :ghpull:`18275`: feat: StepPatch +* :ghpull:`18507`: Fewer "soft" dependencies on LaTeX packages. +* :ghpull:`18378`: Deprecate public access to many mathtext internals. +* :ghpull:`18494`: Move cbook._check_in_list() to _api.check_in_list() +* :ghpull:`18423`: 2-D array RGB and RGBA values not understood in plt.plot() +* :ghpull:`18492`: Fix doc build failure due to #18440 +* :ghpull:`18435`: New environment terminal language +* :ghpull:`18456`: Reuse InsetLocator to make twinned axes follow their parents. +* :ghpull:`18440`: List existing rcParams in rcParams docstring. +* :ghpull:`18453`: FIX: allow manually placed axes in constrained_layout +* :ghpull:`18473`: Correct link to widgets examples +* :ghpull:`18466`: Remove unnecessary autoscale handling in hist(). +* :ghpull:`18465`: Don't modify bottom argument in place in stacked histograms. +* :ghpull:`18468`: Cleanup multiple_yaxis_with_spines example. +* :ghpull:`18463`: Improve formatting of defaults in docstrings. +* :ghpull:`6268`: ENH: support alpha arrays in collections +* :ghpull:`18449`: Remove the private Axes._set_position. +* :ghpull:`18460`: DOC: example gray level in 'Specifying Colors' tutorial +* :ghpull:`18426`: plot directive: caption-option +* :ghpull:`18444`: Support doubleclick in webagg/nbagg +* :ghpull:`12518`: Example showing scale-invariant angle arc +* :ghpull:`18446`: Normalize properties passed to ToolHandles. +* :ghpull:`18445`: Warn if an animation is gc'd before doing anything. +* :ghpull:`18452`: Move Axes ``__repr__`` from Subplot to AxesBase. +* :ghpull:`15374`: Replace _prod_vectorized by @-multiplication. +* :ghpull:`13643`: RecangleSelector constructor does not handle marker_props +* :ghpull:`18403`: DOC: Remove related topics entries from the sidebar +* :ghpull:`18421`: Move {get,set}_{x,y}label to _AxesBase. +* :ghpull:`18429`: DOC: fix date example +* :ghpull:`18353`: DOCS: describe shared axes behavior with units +* :ghpull:`18420`: Always strip out date in postscript's test_savefig_to_stringio. +* :ghpull:`18422`: Decrease output when running ``pytest -s``. +* :ghpull:`18418`: Cleanup menu example +* :ghpull:`18419`: Avoid demo'ing passing kwargs to gca(). +* :ghpull:`18372`: DOC: Fix various missing references and typos +* :ghpull:`18400`: Clarify argument name in constrained_layout error message +* :ghpull:`18384`: Clarification in ArtistAnimation docstring +* :ghpull:`17892`: Add earlier color validation +* :ghpull:`18367`: Support horizontalalignment in TextArea/AnchoredText. +* :ghpull:`18362`: DOC: Add some types to Returns entries. +* :ghpull:`18365`: move canvas focus after toomanager initialization +* :ghpull:`18360`: Add example for specifying figure size in different units +* :ghpull:`18341`: DOCS: add action items to PR template +* :ghpull:`18349`: Remove redundant angles in ellipse demo. +* :ghpull:`18145`: Created a parameter fontset that can be used in each Text element +* :ghpull:`18344`: More nouns/imperative forms in docs. +* :ghpull:`18308`: Synchronize units change in Axis.set_units for shared axis +* :ghpull:`17494`: Rewrite of constrained_layout.... +* :ghpull:`16646`: update colorbar.py make_axes_gridspec +* :ghpull:`18306`: Fix configure subplots +* :ghpull:`17509`: Fix ``swap_if_landscape`` call in backend_ps +* :ghpull:`18323`: Deleted "Our Favorite Recipes" section and moved the examples. +* :ghpull:`18128`: Change several deprecated symbols in _macosx.m +* :ghpull:`18251`: Merge v3.3.x into master +* :ghpull:`18329`: Change default keymap in toolmanager example. +* :ghpull:`18330`: Dedent rst list. +* :ghpull:`18286`: Fix imshow to work with subclasses of ndarray. +* :ghpull:`18320`: Make Colorbar outline into a Spine. +* :ghpull:`18316`: Safely import pyplot if a GUI framework is already running. +* :ghpull:`18321`: Capture output of CallbackRegistry exception test. +* :ghpull:`17900`: Add getters and _repr_html_ for over/under/bad values of Colormap objects. +* :ghpull:`17930`: Fix errorbar property cycling to match plot. +* :ghpull:`18290`: Remove unused import to fix flake8. +* :ghpull:`16818`: Dedupe implementations of configure_subplots(). +* :ghpull:`18284`: TkTimer interval=0 workaround +* :ghpull:`17901`: DOC: Autoreformating of backend/\*.py +* :ghpull:`17291`: Normalize gridspec ratios to lists in the setter. +* :ghpull:`18226`: Use CallbackRegistry in Widgets and some related cleanup +* :ghpull:`18203`: Force locator and formatter inheritence +* :ghpull:`18279`: boxplot: Add conf_intervals reference to notch docs. +* :ghpull:`18276`: Fix autoscaling to exclude inifinite data limits when possible. +* :ghpull:`18261`: Migrate tk backend tests into subprocesses +* :ghpull:`17961`: DOCS: Remove How-to: Contributing +* :ghpull:`18201`: Remove mpl.colors deprecations for 3.4 +* :ghpull:`18223`: Added example on how to make packed bubble charts +* :ghpull:`18264`: Fix broken links in doc build. +* :ghpull:`8031`: Add errorbars to mplot3d +* :ghpull:`18187`: Add option to create horizontally-oriented stem plots +* :ghpull:`18250`: correctly autolabel Documentation and Maintenance issues +* :ghpull:`18161`: Add more specific GitHub issue templates +* :ghpull:`18181`: Replace ttconv by plain python for pdf subsetting +* :ghpull:`17371`: add context manager functionality to ion and ioff +* :ghpull:`17789`: Tk backend improvements +* :ghpull:`15532`: Resolve 'text ignores rotational part of transformation' (#698) +* :ghpull:`17851`: Fix Axes3D.add_collection3d issues +* :ghpull:`18205`: Hat graph example +* :ghpull:`6168`: #5856: added option to create vertically-oriented stem plots +* :ghpull:`18202`: Remove mpl.testing deprecations for 3.4 +* :ghpull:`18081`: Support scale in ttf composite glyphs +* :ghpull:`18199`: Some cleanup on TickedStroke +* :ghpull:`18190`: Use ``super()`` more in backends +* :ghpull:`18193`: Allow savefig to save SVGs on FIPS enabled systems #18192 +* :ghpull:`17802`: fix FigureManagerTk close behavior if embedded in Tk App +* :ghpull:`15458`: TickedStroke, a stroke style with ticks useful for depicting constraints +* :ghpull:`18178`: DOC: clarify that display space coordinates are not stable +* :ghpull:`18172`: allow webAgg to report middle click events +* :ghpull:`17578`: Search for minus of any font size to get height of tex result +* :ghpull:`17546`: ``func`` argument in ``legend_elements`` with non-monotonically increasing functions +* :ghpull:`17684`: Deprecate passing bytes to FT2Font.set_text. +* :ghpull:`17500`: Tst improve memleak +* :ghpull:`17669`: Small changes to svg font embedding details +* :ghpull:`18095`: Error on unexpected kwargs in scale classes +* :ghpull:`18106`: Copy docstring description from Axes.legend() to Figure.legend() +* :ghpull:`18002`: Deprecate various vector-backend-specific mathtext helpers. +* :ghpull:`18006`: Fix ToolManager inconsistencies with regular toolbar +* :ghpull:`18004`: Typos and docs for mathtext fonts. +* :ghpull:`18133`: DOC: Update paths for moved API/what's new fragments +* :ghpull:`18122`: Document and test legend argument parsing +* :ghpull:`18124`: Fix FuncAnimation._draw_frame exception and testing +* :ghpull:`18125`: pdf: Convert operator list to an Enum. +* :ghpull:`18123`: Cleanup figure title example +* :ghpull:`18121`: Improve rasterization demo +* :ghpull:`18012`: Add explanatory text for rasterization demo +* :ghpull:`18103`: Support data reference for hexbin() parameter C +* :ghpull:`17826`: Add pause() and resume() methods to the base Animation class +* :ghpull:`18090`: Privatize cbook.format_approx. +* :ghpull:`18080`: Reduce numerical precision in Type 1 fonts +* :ghpull:`18044`: Super-ify parts of the code base, part 3 +* :ghpull:`18087`: Add a note on working around limit expansion of set_ticks() +* :ghpull:`18071`: Remove deprecated animation code +* :ghpull:`17822`: Check for float values for min/max values to ax{v,h}line +* :ghpull:`18069`: Remove support for multiple-color strings in to_rgba_array +* :ghpull:`18070`: Remove rcsetup deprecations +* :ghpull:`18073`: Remove disable_internet.py +* :ghpull:`18075`: typo in usetex.py example +* :ghpull:`18043`: Super-ify parts of the code base, part 2 +* :ghpull:`18062`: Bump matplotlib.patches coverage +* :ghpull:`17269`: Fix ConciseDateFormatter when plotting a range included in a second +* :ghpull:`18063`: Remove un-used trivial setters and getters +* :ghpull:`18025`: add figpager as a third party package +* :ghpull:`18046`: Discourage references in section headings. +* :ghpull:`18042`: scatter: Raise if unexpected type of ``s`` argument. +* :ghpull:`18028`: Super-ify parts of the code base, part 1 +* :ghpull:`18029`: Remove some unused imports. +* :ghpull:`18018`: Cache realpath resolution in font_manager. +* :ghpull:`18013`: Use argumentless ``super()`` more. +* :ghpull:`17988`: add test with -OO +* :ghpull:`17993`: Make inset_axes and secondary_axis picklable. +* :ghpull:`17992`: Shorten tight_bbox. +* :ghpull:`18003`: Deprecate the unneeded Fonts.destroy. +* :ghpull:`16457`: Build lognorm/symlognorm from corresponding scales. +* :ghpull:`17966`: Fix some words +* :ghpull:`17803`: Simplify projection-of-point-on-polyline in contour.py. +* :ghpull:`17699`: raise RuntimeError appropriately for animation update func +* :ghpull:`17954`: Remove another overspecified latex geometry. +* :ghpull:`17948`: Sync Cairo's usetex measurement with base class. +* :ghpull:`17788`: Tighten a bit the RendererAgg API. +* :ghpull:`12443`: Warn in colorbar() when mappable.axes != figure.gca(). +* :ghpull:`17926`: Deprecate hatch patterns with invalid values +* :ghpull:`17922`: Rewrite the barcode example +* :ghpull:`17890`: Properly use thin space after math text operator +* :ghpull:`16090`: Change pcolormesh snapping (fixes alpha colorbar/grid issues) [AGG] +* :ghpull:`17842`: Move "Request a new feature" from How-to to Contributing +* :ghpull:`17897`: Force origin='upper' in pyplot.specgram +* :ghpull:`17929`: Improve hatch demo +* :ghpull:`17927`: Remove unnecessary file save during test +* :ghpull:`14896`: Updated doc in images.py by adding direct link to 24-bit stink bug png +* :ghpull:`17909`: frame_format to support all listed by animation writers +* :ghpull:`13569`: Style cleanup to pyplot. +* :ghpull:`17924`: Remove the example "Easily creating subplots" +* :ghpull:`17869`: FIX: new date rcParams weren't being evaluated +* :ghpull:`17921`: Added density and combination hatching examples +* :ghpull:`17159`: Merge consecutive rasterizations +* :ghpull:`17895`: Use indexed color for PNG images in PDF files when possible +* :ghpull:`17894`: DOC: Numpydoc format. +* :ghpull:`17884`: Created Hatch marker styles Demo for Example Gallery +* :ghpull:`17347`: ENH: reuse oldgridspec is possible... +* :ghpull:`17915`: Document that set_ticks() increases view limits if necessary +* :ghpull:`17902`: Fix figure size in path effects guide +* :ghpull:`17899`: Add missing space in cairo error +* :ghpull:`17888`: Add _repr_png_ and _repr_html_ to Colormap objects. +* :ghpull:`17830`: Fix BoundaryNorm for multiple colors and one region +* :ghpull:`17883`: Remove Python 3.6 compatibility shims +* :ghpull:`17889`: Minor doc fixes +* :ghpull:`17879`: Link to style-file example page in style tutorial +* :ghpull:`17876`: Fix description of subplot2grid arguments +* :ghpull:`17856`: Clarify plotnonfinite parameter docs of scatter() +* :ghpull:`17843`: Add fullscreen toggle support to WxAgg backend +* :ghpull:`17022`: ENH: add rcParam for ConciseDate and interval_multiples +* :ghpull:`17799`: Deduplicate attribute docs of ContourSet and its derived classes +* :ghpull:`17847`: Remove overspecified latex geometry. +* :ghpull:`17662`: Mnt drop py36 +* :ghpull:`17845`: Fix size of donate button +* :ghpull:`17825`: Add quick-link buttons for contributing +* :ghpull:`17837`: Remove "Reporting a bug or submitting a patch" from How-to +* :ghpull:`17828`: API: treat xunits=None and yunits=None as "default" +* :ghpull:`17839`: Avoid need to lock in dvi generation, to avoid deadlocks. +* :ghpull:`17824`: Improve categorical converter error message +* :ghpull:`17834`: Keep using a single dividers LineCollection instance in colorbar. +* :ghpull:`17838`: Prefer colorbar(ScalarMappable(...)) to ColorbarBase in tutorial. +* :ghpull:`17836`: More precise axes section names in docs +* :ghpull:`17835`: Colorbar cleanups. +* :ghpull:`17727`: FIX: properly handle dates when intmult is true +* :ghpull:`15617`: Dev docs update +* :ghpull:`17819`: Fix typos in tight layout guide +* :ghpull:`17806`: Set colorbar label only in set_label. +* :ghpull:`17265`: Mnt rearrange next api again +* :ghpull:`17808`: Improve docstring of ColorbarBase.set_label() +* :ghpull:`17723`: Deprecate FigureCanvas.{get,set}_window_title. +* :ghpull:`17798`: Fix overindented bullet/enumerated lists. +* :ghpull:`17767`: Allow list of hatches to {bar, barh} +* :ghpull:`17749`: Deprecate ``FancyBboxPatch(..., boxstyle="custom", bbox_transmuter=...)`` +* :ghpull:`17783`: DOC: point to bbox static "constructor" functions in set_position +* :ghpull:`17782`: MNT: update mailmap +* :ghpull:`17776`: Changes in the image for test_load_from_url +* :ghpull:`17750`: Soft-deprecate mutation_aspect=None. +* :ghpull:`17780`: Reorganize colorbar docstrings. +* :ghpull:`17778`: Fix whatsnew confusing typo. +* :ghpull:`17748`: Don't use bezier helpers in axisartist. +* :ghpull:`17700`: Remove remnants of macosx old-style toolbar. +* :ghpull:`17753`: Support location="left"/"top" for gridspec-based colorbars. +* :ghpull:`17761`: Update hard-coded results in artist tutorial +* :ghpull:`17728`: Move Win32_{Get,Set}ForegroundWindow to c_internal_utils. +* :ghpull:`17754`: Small cleanups to contour() code. +* :ghpull:`17751`: Deprecate dpi_cor property of FancyArrowPatch. +* :ghpull:`15941`: FontManager fixes. +* :ghpull:`17661`: Issue #17659: set tick color and tick labelcolor independently from rcParams +* :ghpull:`17389`: Don't duplicate docstrings of pyplot-level cmap setters. +* :ghpull:`17555`: Set Win32 AppUserModelId to fix taskbar icons. +* :ghpull:`17726`: Clarify docs of box_aspect() +* :ghpull:`17704`: Remove "created-by-matplotlib" comment in svg output. +* :ghpull:`17697`: Add description examples/pyplots/pyplot simple.py +* :ghpull:`17694`: CI: Only skip devdocs deploy if PR is to this repo. +* :ghpull:`17691`: ci: Print out reasons for not deploying docs. +* :ghpull:`17099`: Make Spines accessable by the attributes. + +Issues (204): + +* :ghissue:`19701`: Notebook plotting regression in 3.4.0rc* +* :ghissue:`19754`: add space in python -mpip +* :ghissue:`18364`: ``Axes3d`` attaches itself to a figure, where as ``Axes`` does not +* :ghissue:`19700`: Setting pickradius regression in 3.4.0rc +* :ghissue:`19594`: code of conduct link 404s +* :ghissue:`19576`: duplicate pick events firing +* :ghissue:`19560`: segfault due to font objects when multi-threading +* :ghissue:`19598`: Axes order changed in 3.4.0rc1 +* :ghissue:`19631`: subplot mosaic 1 element list +* :ghissue:`19581`: Missing kerning for single-byte strings in PDF +* :ghissue:`17769`: interactive figure close with wxpython 4.1 causes freeze / crash (segfault?) +* :ghissue:`19427`: Fix mistake in documentation +* :ghissue:`19624`: Cannot add colorbar to figure after pickle +* :ghissue:`19544`: Regression in 3.4.0rc1 in creating ListedColormap from a set +* :ghissue:`5855`: plt.step(..., where="auto") +* :ghissue:`19474`: Memory leak with CallbackRegistry +* :ghissue:`19345`: legend is eating up huge amounts of memory +* :ghissue:`19066`: plt.scatter, error with NaN values and edge color +* :ghissue:`19432`: Unexpected change in behavior in plt.subplot +* :ghissue:`18020`: Scatter3D: facecolor or color to "none" leads to an error +* :ghissue:`18939`: Warn re: Axes3D constructor behavior change in mpl3.4 +* :ghissue:`19128`: webagg reports incorrect values for non-alphanumeric key events on non-qwerty keyboards +* :ghissue:`16558`: Request: for non-interactive backends make fig.canvas.draw() force the render +* :ghissue:`19234`: tick labels displaced vertically with text.usetex and xcolor +* :ghissue:`18407`: pgf backend no longer supports fig.draw +* :ghissue:`2298`: axes.xmargin/ymargin rcParam behaves differently than pyplot.margins() +* :ghissue:`19473`: Animations in Tkinter window advance non-uniformly +* :ghissue:`8688`: document moved examples +* :ghissue:`9553`: Display warning on out-of-date documentation websites +* :ghissue:`9556`: Examples page version is out of date +* :ghissue:`12374`: Examples in docs should be redirected to latest version number +* :ghissue:`19486`: Figure.tight_layout() raises MatplotlibDeprecationWarning +* :ghissue:`19445`: axline transform support broke axline in loglog scale +* :ghissue:`19178`: mathtext \lim is vertically misaligned +* :ghissue:`19446`: Better document and error handle third dimension in pyplot.text() positional argument +* :ghissue:`8790`: Inconsistent doc vs behavior for RendererXXX.draw_markers +* :ghissue:`18815`: Patch3D object does not return correct face color with get_facecolor +* :ghissue:`19152`: Automatically Aligned Labels outside Figure with Constrained Layout in Exported File +* :ghissue:`18934`: stairs() crashes with no values and one edge +* :ghissue:`11296`: Image in github repo does not match matplotlib.org (breaks image tutorial) +* :ghissue:`18699`: Issue with downloading stinkbug for "Image Tutorial" +* :ghissue:`19405`: TypeError constructor returned NULL in wayland session +* :ghissue:`18962`: Table CSS needs cleanup +* :ghissue:`19417`: CI failing on numpy... +* :ghissue:`17849`: Problems caused by changes to logic of scatter coloring in matplotlib 3.3.0.rc1 +* :ghissue:`18648`: Drop support for directly imread()ing urls. +* :ghissue:`19366`: Current CI doc builds fail +* :ghissue:`19372`: matplotlib.axes.Axes.indicate_inset default label value is incompatible with LaTeX +* :ghissue:`17100`: Is it a better solution to access one of the spines by class attribute? +* :ghissue:`17375`: Proposal: add_subfigs.... +* :ghissue:`19339`: constrained_layout + fixed-aspect axes + bbox_inches="tight" +* :ghissue:`19308`: Reduce whitespace in Choosing Colormaps tutorial plots +* :ghissue:`18832`: MNT: Remove AxesStack and deprecated behavior of reuse of existing axes with same arguments +* :ghissue:`19084`: Arrow coordinates slightly off when used with annotation text +* :ghissue:`17765`: PGF xelatex can't find fonts in special-character paths +* :ghissue:`19274`: Missing marker in documentation of plot +* :ghissue:`18241`: LaTeX overset: unknown symbol +* :ghissue:`19292`: Non interpolated placeholder value in docstring. +* :ghissue:`18119`: Can no longer deepcopy LogNorm objects on master +* :ghissue:`8665`: Noninteger Bases in mathtext sqrt +* :ghissue:`19243`: matplotlib doesn't build with qhull-2020.2 +* :ghissue:`19275`: Double specifications of plot attributes +* :ghissue:`15066`: Feature request: stem3 +* :ghissue:`19209`: Segfault when trying to create gigapixel image with agg backend +* :ghissue:`4321`: clabel ticks and axes limits with eps zoom output +* :ghissue:`16376`: ``SymLogNorm`` and ``SymLogScale`` give inconsistent results.... +* :ghissue:`19239`: _make_norm_from_scale needs to process values +* :ghissue:`16552`: Scatter autoscaling still has issues with log scaling and zero values +* :ghissue:`18417`: Documentation issue template should ask for matplotlib version +* :ghissue:`19206`: matplotlib.cbook.Grouper: Example raise exception: +* :ghissue:`19203`: Date Tick Labels example +* :ghissue:`18581`: Add a check in check_figures_equal that the test did not accidentally plot on non-fixture figures +* :ghissue:`18563`: Create a RangeSlider widget +* :ghissue:`19099`: axisartist axis_direction bug +* :ghissue:`19171`: 3D surface example bug for non-square grid +* :ghissue:`18112`: set_{x,y,z}bound 3d limits are not persistent upon interactive rotation +* :ghissue:`19078`: _update_patch_limits should not use CLOSEPOLY verticies for updating +* :ghissue:`16123`: test_dpi_ratio_change fails on Windows/Qt5Agg +* :ghissue:`15796`: [DOC] PDF build of matplotlib own documentation crashes with LaTeX error "too deeply nested" +* :ghissue:`19091`: 3D Axes don't work in SubFigures +* :ghissue:`7238`: better document how to configure artists for picking +* :ghissue:`11147`: FR: add a supxlabel and supylabel as the suptitle function which are already exist +* :ghissue:`17417`: tutorial on how autoscaling works +* :ghissue:`18917`: Spy displays nothing for full arrays +* :ghissue:`18562`: Allow slider valstep to be arraylike +* :ghissue:`18942`: AnnotationBbox errors with kwargs +* :ghissue:`11472`: Mention predefined keyboard shortcuts in the docs on event-handling +* :ghissue:`18898`: wrong bounds checking in streamplot start_points +* :ghissue:`18974`: Contour label demo would benefit from some more info and/or references. +* :ghissue:`17708`: Mention rasterized option in more methods +* :ghissue:`18826`: Pgf plots with pdflatex broken +* :ghissue:`18959`: Add sphinx-gallery cross ref instructions to documenting guide +* :ghissue:`18926`: Font not installed, unclear warning +* :ghissue:`18891`: SVG animation doesn't work in HTMLWriter due to wrong type +* :ghissue:`18222`: It is painful as a new user, to figure out what AxesSubplot is +* :ghissue:`16153`: gap size for contour labels is poorly estimated +* :ghissue:`17910`: Improve accessibility of form controls in HTML widgets +* :ghissue:`18273`: Surprising behavior of shared axes with categorical units +* :ghissue:`18731`: Compact string notation for subplot_mosaic +* :ghissue:`18221`: Add example of keys to explore 3D data +* :ghissue:`18882`: Incorrect version requirement message from setup.py +* :ghissue:`18491`: Mostly unused glossary still exists in our docs +* :ghissue:`18548`: add_subplot(..., axes_cls=...) +* :ghissue:`8249`: Bug in mpl_connect(): On Windows, with the wx backend, arrow keys are not reported +* :ghissue:`15609`: [SPRINT] Update Named Colors Example +* :ghissue:`18800`: Log-scale ticker fails at 1e-323 +* :ghissue:`18392`: ``scatter()``: ``edgecolor`` takes precedence over ``edgecolors`` +* :ghissue:`18301`: "How to use Matplotlib in a web application server" should be made an example +* :ghissue:`18386`: Path3DCollection.set_color(self, c) does not change the color of scatter points. +* :ghissue:`8946`: Axes with sharex can have divergent axes after setting tick markers +* :ghissue:`2294`: tex option not respected by date x-axis +* :ghissue:`4382`: use new binary comm in nbagg +* :ghissue:`17088`: ``projection`` kwarg could be better documented. +* :ghissue:`18717`: Tick formatting issues on horizontal histogram with datetime on 3.3.2 +* :ghissue:`12636`: Characters doesn't display correctly when figure saved as pdf with a custom font +* :ghissue:`18377`: Matplotlib picks a headless backend on Linux if Wayland is available but X11 isn't +* :ghissue:`13199`: Examples that use private APIs +* :ghissue:`18662`: Inconsistent setting of axis limits with autoscale=False +* :ghissue:`18690`: Class deprecation machinery and mixins +* :ghissue:`18510`: Build fails on OS X: wrong minimum version +* :ghissue:`18641`: Conversion cache cleaning is broken with xdist +* :ghissue:`15614`: named color examples need borders +* :ghissue:`5519`: The linestyle 'None', ' ' and '' not supported by PathPatch. +* :ghissue:`17487`: Polygon selector with useblit=True - polygon dissapears +* :ghissue:`17476`: RectangleSelector fails to clear itself after being toggled inactive and then back to active. +* :ghissue:`18600`: plt.errorbar raises error when given marker= +* :ghissue:`18355`: Optional components required to build docs aren't documented +* :ghissue:`18428`: small bug in the mtplotlib gallery +* :ghissue:`4438`: inconsistent behaviour of the errorevery option in pyplot.errorbar() to the markevery keyword +* :ghissue:`5823`: pleas dont include the Google Analytics tracking in the off-line doc +* :ghissue:`13035`: Path3DCollection from 3D scatter cannot set_color +* :ghissue:`9725`: scatter - set_facecolors is not working on Axes3D +* :ghissue:`3370`: Patch3DCollection doesn't update color after calling set_color +* :ghissue:`18427`: yaxis.set_label_position("right") resets "horizontalalignment" +* :ghissue:`3129`: super-ify the code base +* :ghissue:`17518`: Plotting legend throws error "font family ['serif'] not found. Falling back to DejaVu Sans" +* :ghissue:`18282`: Bad interaction between kerning and non-latin1 characters in pdf output +* :ghissue:`6669`: [Feature request] Functions for "manually" plotting histograms +* :ghissue:`18411`: 2-D array RGB and RGBA values not understood in plt.plot() +* :ghissue:`18404`: Double-click events are not recognised in Jupyter notebook +* :ghissue:`12027`: marker_props is never used in the constructor of RectangleSelector +* :ghissue:`18438`: Warn when a non-started animation is gc'ed. +* :ghissue:`11259`: Symbols appear as streaks with usetex=True, times font and PDF backend +* :ghissue:`18345`: Specify what sharex and sharey do... +* :ghissue:`18082`: Feature Request: Non overlapping Bubble Plots +* :ghissue:`568`: Support error bars on 3D plots +* :ghissue:`17865`: Earlier validation of color inputs +* :ghissue:`18363`: ha="right" breaks AnchoredText placement. +* :ghissue:`11050`: keyboard shortcuts don't get registered using the experimental toolmanager with qt +* :ghissue:`17906`: Set mathtext.fontset per element +* :ghissue:`18311`: Subplot scatter plot with categorical data on y-axis with 'sharey=True' option overwrites the y-axis labels +* :ghissue:`10304`: No link to shared axes for Axis.set_units +* :ghissue:`17712`: constrained_layout fails on suptitle+colorbars+some figure sizes +* :ghissue:`14638`: colorbar.make_axes doesn't anchor in constrained_layout +* :ghissue:`18299`: New configure_subplots behaves badly on TkAgg backend +* :ghissue:`18300`: Remove the examples category "Our Favorite Recipies" +* :ghissue:`18077`: Imshow breaks if given a unyt_array input +* :ghissue:`7074`: Using a linestyle cycler with plt.errorbar results in strange plots +* :ghissue:`18236`: FuncAnimation fails to display with interval 0 on Tkagg backend +* :ghissue:`8107`: invalid command name "..._on_timer" in FuncAnimation for (too) small interval +* :ghissue:`18272`: Add CI Intervall to boxplot notch documentation +* :ghissue:`18137`: axhspan() in empty plots changes the xlimits of plots sharing the X axis +* :ghissue:`18246`: test_never_update is flaky +* :ghissue:`5856`: Horizontal stem plot +* :ghissue:`18160`: Add feature request template +* :ghissue:`17197`: Missing character upon savefig() with Free Serif font +* :ghissue:`17013`: Request: provide a contextmanager for ioff or allow plt.figure(draw_on_create=False) +* :ghissue:`17537`: hat graphs need an example... +* :ghissue:`17755`: mplot3d: add_collection3d issues +* :ghissue:`18192`: Cannot save SVG file with FIPS compliant Python +* :ghissue:`17574`: Vertical alignment of tick labels containing minus in font size other than 10 with usetex=True +* :ghissue:`18097`: Feature Request: Allow hexbin to use a string for parameter C to refer to column in data (DataFrame) +* :ghissue:`17689`: Add pause/resume methods to Animation baseclass +* :ghissue:`16087`: Error with greek letters in pdf export when using usetex=True and mathptmx +* :ghissue:`17136`: set_ticks() changes view limits of the axis +* :ghissue:`12198`: axvline incorrectly tries to handle unitized ymin, ymax +* :ghissue:`9139`: Python3 matplotlib 2.0.2 with Times New Roman misses unicode minus sign in pdf +* :ghissue:`5970`: pyplot.scatter raises obscure error when mistakenly passed a third string param +* :ghissue:`17936`: documenattion and behavior do not match for suppressing (PDF) metadata +* :ghissue:`17932`: latex textrm does not work in Cairo backend +* :ghissue:`17714`: Universal fullscreen command +* :ghissue:`4584`: ColorbarBase draws edges in slightly wrong positions. +* :ghissue:`17878`: flipping of imshow in specgram +* :ghissue:`6118`: consider using qtpy for qt abstraction layer +* :ghissue:`17908`: rcParams restrictions on frame_formats are out of sync with supported values (HTMLWriter) +* :ghissue:`17867`: datetime plotting broken on master +* :ghissue:`16810`: Docs do not build in parallel +* :ghissue:`17918`: Extend hatch reference +* :ghissue:`17149`: Rasterization creates multiple bitmap elements and large file sizes +* :ghissue:`17855`: Add Hatch Example to gallery +* :ghissue:`15821`: Should constrained_layout work as plt.figure() argument? +* :ghissue:`15616`: Colormaps should have a ``_repr_html_`` that is an image of the colormap +* :ghissue:`17579`: ``BoundaryNorm`` yield a ``ZeroDivisionError: division by zero`` +* :ghissue:`17652`: NEP 29 : Stop support fro Python 3.6 soon ? +* :ghissue:`11095`: Repeated plot calls with xunits=None throws exception +* :ghissue:`17733`: Rename "array" (and perhaps "fields") section of Axes API +* :ghissue:`15610`: Link to most recent DevDocs when installing from Master Source +* :ghissue:`17817`: (documentation, possible first-timer bug) Typo and grammar on Legends and Annotations for tight layout guide page +* :ghissue:`17804`: Setting the norm on imshow object removes colorbar ylabel +* :ghissue:`17758`: bar, barh should take a list of hatches like it does of colors +* :ghissue:`17746`: Antialiasing with colorbars? +* :ghissue:`17659`: Enhancement: Set tick and ticklabel colors separately from matplotlib style file +* :ghissue:`17144`: Wrong icon on windows task bar for figure windows +* :ghissue:`2870`: Wrong symbols from a TrueType font diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.4.1.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.4.1.rst new file mode 100644 index 0000000000000000000000000000000000000000..0819a6850a3ea7f5f1ba6555144a31c4c54eba55 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.4.1.rst @@ -0,0 +1,55 @@ +.. _github-stats-3-4-1: + +GitHub statistics for 3.4.1 (Mar 31, 2021) +========================================== + +GitHub statistics for 2021/03/26 (tag: v3.4.0) - 2021/03/31 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 7 issues and merged 20 pull requests. +The full list can be seen `on GitHub `__ + +The following 6 authors contributed 43 commits. + +* Antony Lee +* Elliott Sales de Andrade +* Jody Klymak +* Thomas A Caswell +* Tim Hoffmann +* Xianxiang Li + +GitHub issues and pull requests: + +Pull Requests (20): + +* :ghpull:`19834`: Backport PR #19812: FIX: size and color rendering for Path3DCollection +* :ghpull:`19833`: Backport PR #19811 on branch v3.4.x (Fix Inkscape cleanup at exit on Windows.) +* :ghpull:`19812`: FIX: size and color rendering for Path3DCollection +* :ghpull:`19811`: Fix Inkscape cleanup at exit on Windows. +* :ghpull:`19816`: Fix legend of colour-mapped scatter plots. +* :ghpull:`19830`: Backport PR #19824 on branch v3.4.x (Access pdf annotations while inside pikepdf.Pdf context manager.) +* :ghpull:`19829`: Backport PR #19822 on branch v3.4.x (Clarify default backend selection doc.) +* :ghpull:`19827`: Backport PR #19805 on branch v3.4.x (Fix suptitle out of layout) +* :ghpull:`19824`: Access pdf annotations while inside pikepdf.Pdf context manager. +* :ghpull:`19805`: Fix suptitle out of layout +* :ghpull:`19823`: Backport PR #19814 on branch v3.4.x (Fix positioning of annotation arrow.) +* :ghpull:`19820`: Backport PR #19817 on branch v3.4.x (Fix antialiasing with old pycairo/cairocffi.) +* :ghpull:`19814`: Fix positioning of annotation arrow. +* :ghpull:`19817`: Fix antialiasing with old pycairo/cairocffi. +* :ghpull:`19818`: Backport PR #19784 on branch v3.4.x (FIX errorbar problem with fillstyle) +* :ghpull:`19784`: FIX errorbar problem with fillstyle +* :ghpull:`19815`: Backport PR #19793 on branch v3.4.x (Fix non existent URIs) +* :ghpull:`19793`: Fix non existent URIs +* :ghpull:`19783`: Backport PR #19719 on branch v3.4.x (Respect antialiasing settings in cairo backends as well.) +* :ghpull:`19719`: Respect antialiasing settings in cairo backends as well. + +Issues (7): + +* :ghissue:`19779`: BUG: matplotlib 3.4.0 -- Scatter with colormap and legend gives TypeError: object of type 'NoneType' has no len() +* :ghissue:`19787`: Marker sizes in Axes3D scatter plot are changing all the time +* :ghissue:`19809`: Tests that use "image_comparison" fail to cleanup on Windows +* :ghissue:`19803`: Suptitle positioning messed up in 3.4.0 +* :ghissue:`19785`: Starting point of annotation arrows has changed in 3.4.0 +* :ghissue:`19776`: Errorbars with yerr fail when fillstyle is specified +* :ghissue:`19780`: redirect_from extension breaks latex build diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.4.2.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.4.2.rst new file mode 100644 index 0000000000000000000000000000000000000000..22b4797c2fc28f398773530749f32d3b676684b2 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.4.2.rst @@ -0,0 +1,153 @@ +.. _github-stats-3-4-2: + +GitHub statistics for 3.4.2 (May 08, 2021) +========================================== + +GitHub statistics for 2021/03/31 (tag: v3.4.1) - 2021/05/08 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 21 issues and merged 97 pull requests. +The full list can be seen `on GitHub `__ + +The following 13 authors contributed 138 commits. + +* AkM-2018 +* Antony Lee +* David Stansby +* Elliott Sales de Andrade +* hannah +* Ian Thomas +* Jann Paul Mattern +* Jody Klymak +* pwohlhart +* richardsheridan +* Thomas A Caswell +* Tim Hoffmann +* Xianxiang Li + +GitHub issues and pull requests: + +Pull Requests (97): + +* :ghpull:`20184`: Backport PR #20147 on branch v3.4.x (DOC: add example of labelling axes) +* :ghpull:`20181`: Backport PR #20171 on branch v3.4.x (Remove unsupported arguments from tricontourf documentation) +* :ghpull:`20180`: Backport PR #19876 on branch v3.4.x (FIX: re-order unit conversion and mask array coercion) +* :ghpull:`20171`: Remove unsupported arguments from tricontourf documentation +* :ghpull:`19876`: FIX: re-order unit conversion and mask array coercion +* :ghpull:`20178`: Backport PR #20150 on branch v3.4.x +* :ghpull:`20172`: Backport PR #20161 on branch v3.4.x (Fix resetting grid visibility) +* :ghpull:`20161`: Fix resetting grid visibility +* :ghpull:`20167`: Backport PR #20146 on branch v3.4.x (Don't clip clip paths to Figure bbox.) +* :ghpull:`20166`: Backport PR #19978 on branch v3.4.x (fixed bug in CenteredNorm, issue #19972) +* :ghpull:`20146`: Don't clip clip paths to Figure bbox. +* :ghpull:`19978`: fixed bug in CenteredNorm, issue #19972 +* :ghpull:`20160`: Backport PR #20148 on branch v3.4.x (FIX: MouseButton representation in boilerplate generated signatures) +* :ghpull:`20148`: FIX: MouseButton representation in boilerplate generated signatures +* :ghpull:`20152`: Backport PR #20145 on branch v3.4.x (Fix broken link to ggplot in docs) +* :ghpull:`20139`: Backport PR #20135 on branch v3.4.x (Add tricontour/tricontourf arguments(corner_mask, vmin vmax, antialiased, nchunk, hatches) documentation) +* :ghpull:`20135`: Add tricontour/tricontourf arguments(corner_mask, vmin vmax, antialiased, nchunk, hatches) documentation +* :ghpull:`20136`: Backport PR #19959 on branch v3.4.x (Bugfix Tk start_event_loop) +* :ghpull:`19959`: Bugfix Tk start_event_loop +* :ghpull:`20128`: Backport PR #20123 on branch v3.4.x (Ensure that Matplotlib is importable even if there's no HOME.) +* :ghpull:`20123`: Ensure that Matplotlib is importable even if there's no HOME. +* :ghpull:`20009`: Fix removal of shared polar axes. +* :ghpull:`20104`: Backport PR #19686 on branch v3.4.x (Declare sphinxext.redirect_from parallel_read_safe) +* :ghpull:`19686`: Declare sphinxext.redirect_from parallel_read_safe +* :ghpull:`20098`: Backport PR #20096 on branch v3.4.x (Ignore errors for sip with no setapi.) +* :ghpull:`20096`: Ignore errors for sip with no setapi. +* :ghpull:`20087`: Backport PR #20083 on branch v3.4.x (Revert "Temporarily switch intersphinx to latest pytest.") +* :ghpull:`20085`: Backport PR #20082 on branch v3.4.x (Fix bar_label for bars with nan values) +* :ghpull:`20082`: Fix bar_label for bars with nan values +* :ghpull:`20076`: Backport PR #20062 on branch v3.4.x ([DOC] Add top-level .. module:: definition for matplotlib) +* :ghpull:`20043`: Backport PR #20041 on branch v3.4.x (Clarify docs for stackplot.) +* :ghpull:`20041`: Clarify docs for stackplot. +* :ghpull:`20039`: Backport PR #20037 on branch v3.4.x (Don't generate wheels unusable on PyPy7.3.{0,1}.) +* :ghpull:`20037`: Don't generate wheels unusable on PyPy7.3.{0,1}. +* :ghpull:`20033`: Backport PR #20031 on branch v3.4.x (Cleanup widget examples) +* :ghpull:`20031`: Cleanup widget examples +* :ghpull:`20022`: Backport PR #19949 on branch v3.4.x (FIX: subfigure indexing error) +* :ghpull:`19949`: FIX: subfigure indexing error +* :ghpull:`20018`: Backport PR #20017 on branch v3.4.x (FIX typos in imshow_extent.py) +* :ghpull:`20017`: FIX typos in imshow_extent.py +* :ghpull:`20015`: Backport PR #19962 on branch v3.4.x (Dev install troubleshooting) +* :ghpull:`19962`: Dev install troubleshooting +* :ghpull:`20002`: Backport PR #19995 on branch v3.4.x (Fix valinit argument to RangeSlider) +* :ghpull:`20004`: Backport PR #19999 on branch v3.4.x (DOC: add note about axes order to docstring) +* :ghpull:`19998`: Backport PR #19964 on branch v3.4.x (FIX: add subplot_mosaic axes in the order the user gave them to us) +* :ghpull:`19999`: DOC: add note about axes order to docstring +* :ghpull:`19997`: Backport PR #19992 on branch v3.4.x (Minor fixes to polar locator docstrings.) +* :ghpull:`19995`: Fix valinit argument to RangeSlider +* :ghpull:`19964`: FIX: add subplot_mosaic axes in the order the user gave them to us +* :ghpull:`19993`: Backport PR #19983 on branch v3.4.x (Fix handling of "d" glyph in backend_ps.) +* :ghpull:`19992`: Minor fixes to polar locator docstrings. +* :ghpull:`19991`: Backport PR #19987 on branch v3.4.x (Fix set_thetalim((min, max)).) +* :ghpull:`19976`: Backport PR #19970 on branch v3.4.x (Initialize members of PathClipper and check for m_has_init) +* :ghpull:`19983`: Fix handling of "d" glyph in backend_ps. +* :ghpull:`19987`: Fix set_thetalim((min, max)). +* :ghpull:`19970`: Initialize members of PathClipper and check for m_has_init +* :ghpull:`19973`: Backport PR #19971 on branch v3.4.x (Fix missing closing bracket in docs) +* :ghpull:`19971`: Fix missing closing bracket in docs +* :ghpull:`19966`: Backport PR #19963 on branch v3.4.x (test_StrCategoryLocator using parameterized plotter) +* :ghpull:`19965`: Backport PR #19961 on branch v3.4.x (FIX: subfigure tightbbox) +* :ghpull:`19963`: test_StrCategoryLocator using parameterized plotter +* :ghpull:`19961`: FIX: subfigure tightbbox +* :ghpull:`19953`: Backport PR #19919 on branch v3.4.x (Copy errorbar style normalization to 3D) +* :ghpull:`19919`: Copy errorbar style normalization to 3D +* :ghpull:`19950`: Backport PR #19948 on branch v3.4.x (Allow numpy arrays to be used as elinewidth) +* :ghpull:`19948`: Allow numpy arrays to be used as elinewidth +* :ghpull:`19944`: Backport PR #19939 on branch v3.4.x (add highlight-text to the third party packages list) +* :ghpull:`19921`: Backport PR #19913 on branch v3.4.x (Minor docstring improvement for set_aspect()) +* :ghpull:`19920`: Backport PR #19903 on branch v3.4.x (Fix textbox cursor color, set its linewidth.) +* :ghpull:`19913`: Minor docstring improvement for set_aspect() +* :ghpull:`19903`: Fix textbox cursor color, set its linewidth. +* :ghpull:`19917`: Backport PR #19911 on branch v3.4.x (Shorten "how-to draw order") +* :ghpull:`19916`: Backport PR #19888 on branch v3.4.x (Fix errorbar drawstyle) +* :ghpull:`19911`: Shorten "how-to draw order" +* :ghpull:`19888`: Fix errorbar drawstyle +* :ghpull:`19910`: Backport PR #19895 on branch v3.4.x (Added PyPI info to third party page) +* :ghpull:`19895`: Added PyPI info to third party page +* :ghpull:`19896`: Backport PR #19893 on branch v3.4.x (Remove Howto: Plot numpy.datetime64 values) +* :ghpull:`19893`: Remove Howto: Plot numpy.datetime64 values +* :ghpull:`19886`: Backport PR #19881 on branch v3.4.x (Remove two sections from Plotting FAQ) +* :ghpull:`19877`: Backport PR #19863 on branch v3.4.x (Cleanup docstrings related to interactive mode) +* :ghpull:`19881`: Remove two sections from Plotting FAQ +* :ghpull:`19885`: Backport PR #19883 on branch v3.4.x (Small cleanups to FAQ.) +* :ghpull:`19883`: Small cleanups to FAQ. +* :ghpull:`19878`: Backport PR #19867 on branch v3.4.x (Remove "Use show()" from how-to ) +* :ghpull:`19875`: Backport PR #19868 on branch v3.4.x (Remove "Install from source" from Installing FAQ) +* :ghpull:`19867`: Remove "Use show()" from how-to +* :ghpull:`19863`: Cleanup docstrings related to interactive mode +* :ghpull:`19868`: Remove "Install from source" from Installing FAQ +* :ghpull:`19874`: Backport PR #19847 on branch v3.4.x (Reformat references (part 2)) +* :ghpull:`19847`: Reformat references (part 2) +* :ghpull:`19865`: Backport PR #19860 on branch v3.4.x (Move "howto interpreting box plots" to boxplot docstring) +* :ghpull:`19860`: Move "howto interpreting box plots" to boxplot docstring +* :ghpull:`19862`: Backport PR #19861 on branch v3.4.x (Remove FAQ Installing - Linux notes) +* :ghpull:`19861`: Remove FAQ Installing - Linux notes +* :ghpull:`18060`: Correctly handle 'none' facecolors in do_3d_projection +* :ghpull:`19846`: Backport PR #19788 on branch v3.4.x (Reformat references) + +Issues (21): + +* :ghissue:`19871`: Matplotlib >= v3.3.3 breaks with pandas.plotting.register_matplotlib_converters(), ax.pcolormesh(), and datetime objects +* :ghissue:`20149`: KeyError: 'gridOn' in axis.py when axis.tick_params() is used with reset = True +* :ghissue:`20127`: Zooming on a contour plot with clipping results in bad clipping +* :ghissue:`19972`: CenteredNorm with halfrange raises exception when passed to imshow +* :ghissue:`19940`: Tkagg event loop throws error on window close +* :ghissue:`20122`: Run in a system service / without configuration +* :ghissue:`19989`: Removal of y-shared polar axes causes crash at draw time +* :ghissue:`19988`: Removal of x-shared polar axes causes crash +* :ghissue:`20040`: AttributeError: module 'sip' has no attribute 'setapi' +* :ghissue:`20058`: bar_label fails with nan data values +* :ghissue:`20036`: Minor changes about stackplot documentation +* :ghissue:`20014`: undefined symbol: PyPyUnicode_ReadChar +* :ghissue:`19947`: Figure.subfigures dont show/update correctly +* :ghissue:`19960`: Failed to init RangeSlider with valinit attribute +* :ghissue:`19736`: subplot_mosaic axes are not added in consistent order +* :ghissue:`19979`: Blank EPS figures if plot contains 'd' +* :ghissue:`19938`: unuseful deprecation warning figbox +* :ghissue:`19958`: subfigures missing bbox_inches attribute in inline backend +* :ghissue:`19936`: Errorbars elinewidth raise error when numpy array +* :ghissue:`19879`: Using "drawstyle" raises AttributeError in errorbar, when yerr is specified. +* :ghissue:`19454`: I cannot import matplotlib.pyplot as plt diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.4.3.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.4.3.rst new file mode 100644 index 0000000000000000000000000000000000000000..b248bf69b6ef9bd2e979dd873b7f82b5d6e2007d --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.4.3.rst @@ -0,0 +1,133 @@ +.. _github-stats-3-4-3: + +GitHub statistics for 3.4.3 (August 21, 2021) +============================================= + +GitHub statistics for 2021/05/08 - 2021/08/12 (tag: v3.4.2) + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 22 issues and merged 69 pull requests. +The full list can be seen `on GitHub `__ + +The following 20 authors contributed 95 commits. + +* Antony Lee +* David Stansby +* Diego +* Diego Leal Petrola +* Diego Petrola +* Elliott Sales de Andrade +* Eric Firing +* Frank Sauerburger +* Greg Lucas +* Ian Hunt-Isaak +* Jash Shah +* Jody Klymak +* Jouni K. Seppänen +* Michał Górny +* sandipanpanda +* Slava Ostroukh +* Thomas A Caswell +* Tim Hoffmann +* Viacheslav Ostroukh +* Xianxiang Li + +GitHub issues and pull requests: + +Pull Requests (69): + +* :ghpull:`20830`: Backport PR #20826 on branch v3.4.x (Fix clear of Axes that are shared.) +* :ghpull:`20826`: Fix clear of Axes that are shared. +* :ghpull:`20823`: Backport PR #20817 on branch v3.4.x (Make test_change_epoch more robust.) +* :ghpull:`20817`: Make test_change_epoch more robust. +* :ghpull:`20820`: Backport PR #20771 on branch v3.4.x (FIX: tickspacing for subfigures) +* :ghpull:`20771`: FIX: tickspacing for subfigures +* :ghpull:`20777`: FIX: dpi and scatter for subfigures now correct +* :ghpull:`20787`: Backport PR #20786 on branch v3.4.x (Fixed typo in _constrained_layout.py (#20782)) +* :ghpull:`20786`: Fixed typo in _constrained_layout.py (#20782) +* :ghpull:`20763`: Backport PR #20761 on branch v3.4.x (Fix suplabel autopos) +* :ghpull:`20761`: Fix suplabel autopos +* :ghpull:`20751`: Backport PR #20748 on branch v3.4.x (Ensure _static directory exists before copying CSS.) +* :ghpull:`20748`: Ensure _static directory exists before copying CSS. +* :ghpull:`20713`: Backport PR #20710 on branch v3.4.x (Fix tests with Inkscape 1.1.) +* :ghpull:`20687`: Enable PyPy wheels for v3.4.x +* :ghpull:`20710`: Fix tests with Inkscape 1.1. +* :ghpull:`20696`: Backport PR #20662 on branch v3.4.x (Don't forget to disable autoscaling after interactive zoom.) +* :ghpull:`20662`: Don't forget to disable autoscaling after interactive zoom. +* :ghpull:`20683`: Backport PR #20645 on branch v3.4.x (Fix leak if affine_transform is passed invalid vertices.) +* :ghpull:`20645`: Fix leak if affine_transform is passed invalid vertices. +* :ghpull:`20642`: Backport PR #20629 on branch v3.4.x (Add protection against out-of-bounds read in ttconv) +* :ghpull:`20643`: Backport PR #20597 on branch v3.4.x +* :ghpull:`20629`: Add protection against out-of-bounds read in ttconv +* :ghpull:`20597`: Fix TTF headers for type 42 stix font +* :ghpull:`20624`: Backport PR #20609 on branch v3.4.x (FIX: fix figbox deprecation) +* :ghpull:`20609`: FIX: fix figbox deprecation +* :ghpull:`20594`: Backport PR #20590 on branch v3.4.x (Fix class docstrings for Norms created from Scales.) +* :ghpull:`20590`: Fix class docstrings for Norms created from Scales. +* :ghpull:`20587`: Backport PR #20584: FIX: do not simplify path in LineCollection.get_s… +* :ghpull:`20584`: FIX: do not simplify path in LineCollection.get_segments +* :ghpull:`20578`: Backport PR #20511 on branch v3.4.x (Fix calls to np.ma.masked_where) +* :ghpull:`20511`: Fix calls to np.ma.masked_where +* :ghpull:`20568`: Backport PR #20565 on branch v3.4.x (FIX: PILLOW asarray bug) +* :ghpull:`20566`: Backout pillow=8.3.0 due to a crash +* :ghpull:`20565`: FIX: PILLOW asarray bug +* :ghpull:`20503`: Backport PR #20488 on branch v3.4.x (FIX: Include 0 when checking lognorm vmin) +* :ghpull:`20488`: FIX: Include 0 when checking lognorm vmin +* :ghpull:`20483`: Backport PR #20480 on branch v3.4.x (Fix str of empty polygon.) +* :ghpull:`20480`: Fix str of empty polygon. +* :ghpull:`20478`: Backport PR #20473 on branch v3.4.x (_GSConverter: handle stray 'GS' in output gracefully) +* :ghpull:`20473`: _GSConverter: handle stray 'GS' in output gracefully +* :ghpull:`20456`: Backport PR #20453 on branch v3.4.x (Remove ``Tick.apply_tickdir`` from 3.4 deprecations.) +* :ghpull:`20441`: Backport PR #20416 on branch v3.4.x (Fix missing Patch3DCollection._z_markers_idx) +* :ghpull:`20416`: Fix missing Patch3DCollection._z_markers_idx +* :ghpull:`20417`: Backport PR #20395 on branch v3.4.x (Pathing issue) +* :ghpull:`20395`: Pathing issue +* :ghpull:`20404`: Backport PR #20403: FIX: if we have already subclassed mixin class ju… +* :ghpull:`20403`: FIX: if we have already subclassed mixin class just return +* :ghpull:`20383`: Backport PR #20381 on branch v3.4.x (Prevent corrections and completions in search field) +* :ghpull:`20307`: Backport PR #20154 on branch v3.4.x (ci: Bump Ubuntu to 18.04 LTS.) +* :ghpull:`20285`: Backport PR #20275 on branch v3.4.x (Fix some examples that are skipped in docs build) +* :ghpull:`20275`: Fix some examples that are skipped in docs build +* :ghpull:`20267`: Backport PR #20265 on branch v3.4.x (Legend edgecolor face) +* :ghpull:`20265`: Legend edgecolor face +* :ghpull:`20260`: Fix legend edgecolor face +* :ghpull:`20259`: Backport PR #20248 on branch v3.4.x (Replace pgf image-streaming warning by error.) +* :ghpull:`20248`: Replace pgf image-streaming warning by error. +* :ghpull:`20241`: Backport PR #20212 on branch v3.4.x (Update span_selector.py) +* :ghpull:`20212`: Update span_selector.py +* :ghpull:`19980`: Tidy up deprecation messages in ``_subplots.py`` +* :ghpull:`20234`: Backport PR #20225 on branch v3.4.x (FIX: correctly handle ax.legend(..., legendcolor='none')) +* :ghpull:`20225`: FIX: correctly handle ax.legend(..., legendcolor='none') +* :ghpull:`20232`: Backport PR #19636 on branch v3.4.x (Correctly check inaxes for multicursor) +* :ghpull:`20228`: Backport PR #19849 on branch v3.4.x (FIX DateFormatter for month names when usetex=True) +* :ghpull:`19849`: FIX DateFormatter for month names when usetex=True +* :ghpull:`20154`: ci: Bump Ubuntu to 18.04 LTS. +* :ghpull:`20186`: Backport PR #19975 on branch v3.4.x (CI: remove workflow to push commits to macpython/matplotlib-wheels) +* :ghpull:`19975`: CI: remove workflow to push commits to macpython/matplotlib-wheels +* :ghpull:`19636`: Correctly check inaxes for multicursor + +Issues (22): + +* :ghissue:`20219`: Regression: undocumented change of behaviour in mpl 3.4.2 with axis ticks direction +* :ghissue:`20721`: ax.clear() adds extra ticks, un-hides shared-axis tick labels +* :ghissue:`20765`: savefig re-scales xticks and labels of some (but not all) subplots +* :ghissue:`20782`: [Bug]: _supylabel get_in_layout() typo? +* :ghissue:`20747`: [Bug]: _copy_css_file assumes that the _static directory already exists +* :ghissue:`20617`: tests fail with new inkscape +* :ghissue:`20519`: Toolbar zoom doesn't change autoscale status for versions 3.2.0 and above +* :ghissue:`20628`: Out-of-bounds read leads to crash or broken TrueType fonts +* :ghissue:`20612`: Broken EPS for Type 42 STIX +* :ghissue:`19982`: regression for 3.4.x - ax.figbox replacement incompatible to all version including 3.3.4 +* :ghissue:`19938`: unuseful deprecation warning figbox +* :ghissue:`16400`: Inconsistent behavior between Normalizers when input is Dataframe +* :ghissue:`20583`: Lost class descriptions since 3.4 docs +* :ghissue:`20551`: set_segments(get_segments()) makes lines coarse +* :ghissue:`20560`: test_png is failing +* :ghissue:`20487`: test_huge_range_log is failing... +* :ghissue:`20472`: test_backend_pgf.py::test_xelatex[pdf] - ValueError: invalid literal for int() with base 10: b'ate missing from Resources. [...] +* :ghissue:`20328`: Path.intersects_path sometimes returns incorrect values +* :ghissue:`20258`: Using edgecolors='face' with stackplot causes value error when using plt.legend() +* :ghissue:`20200`: examples/widgets/span_selector.py is brittle +* :ghissue:`20231`: MultiCursor bug +* :ghissue:`19836`: Month names not set as text when using usetex diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.5.0.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.5.0.rst new file mode 100644 index 0000000000000000000000000000000000000000..bde4d917b38b0de761c450ec6e245bcf09c5f8be --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.5.0.rst @@ -0,0 +1,1292 @@ +.. _github-stats-3-5-0: + +GitHub statistics for 3.5.0 (Nov 15, 2021) +========================================== + +GitHub statistics for 2021/03/26 (tag: v3.4.0) - 2021/11/15 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 187 issues and merged 939 pull requests. +The full list can be seen `on GitHub `__ + +The following 144 authors contributed 3406 commits. + +* Aaron Rogers +* Abhinav Sagar +* Adrian Price-Whelan +* Adrien F. Vincent +* ain-soph +* Aitik Gupta +* Akiomi Kamakura +* AkM-2018 +* Andrea PIERRÉ +* andthum +* Antony Lee +* Antti Soininen +* apodemus +* astromancer +* Bruno Beltran +* Carlos Cerqueira +* Casper da Costa-Luis +* ceelo777 +* Christian Baumann +* dan +* Dan Zimmerman +* David Matos +* David Poznik +* David Stansby +* dependabot[bot] +* Diego Leal Petrola +* Dmitriy Fishman +* Ellert van der Velden +* Elliott Sales de Andrade +* Engjell Avdiu +* Eric Firing +* Eric Larson +* Eric Prestat +* Ewan Sutherland +* Felix Nößler +* Fernando +* fourpoints +* Frank Sauerburger +* Gleb Fedorov +* Greg Lucas +* hannah +* Hannes Breytenbach +* Hans Meine +* Harshal Prakash Patankar +* harupy +* Harutaka Kawamura +* Hildo Guillardi Júnior +* Holtz Yan +* Hood +* Ian Hunt-Isaak +* Ian Thomas +* ianhi +* Illviljan +* ImportanceOfBeingErnest +* Isha Mehta +* iury simoes-sousa +* Jake Bowhay +* Jakub Klus +* Jan-Hendrik Müller +* Janakarajan Natarajan +* Jann Paul Mattern +* Jash Shah +* Jay Joshi +* jayjoshi112711 +* jeffreypaul15 +* Jerome F. Villegas +* Jerome Villegas +* Jesus Briales +* Jody Klymak +* Jonathan Yong +* Joschua Conrad +* Joschua-Conrad +* Jouni K. Seppänen +* K-Monty +* katrielester +* kdpenner +* Kent +* Kent Gauen +* kentcr +* kir0ul +* kislovskiy +* KIU Shueng Chuan +* KM Goh +* Konstantin Popov +* kyrogon +* Leeh Peter +* Leo Singer +* lgfunderburk +* Liam Toney +* luz paz +* luzpaz +* Madhav Humagain +* MalikIdreesHasa +* Marat Kopytjuk +* Marco Rigobello +* Marco Salathe +* Markus Wesslén +* martinRenou +* Matthias Bussonnier +* MeeseeksMachine +* Michał Górny +* Mihai Anton +* Navid C. Constantinou +* Nico Schlömer +* Phil Nagel +* Philip Schiff +* Philipp Nagel +* pwohlhart +* Péter Leéh +* Quentin Peter +* Ren Pang +* rgbmrc +* Richard Barnes +* richardsheridan +* Rike-Benjamin Schuppner +* Roberto Toro +* Ruth Comer +* ryahern +* Ryan May +* Sam Van Kooten +* sandipanpanda +* Simon Hoxbro +* Slava Ostroukh +* Stefan Appelhoff +* Stefanie Molin +* takimata +* tdpetrou +* theOehrly +* Thomas A Caswell +* Tim Hoffmann +* tohc1 +* Tom Charrett +* Tom Neep +* Tomas Hrnciar +* Tortar +* Tranquilled +* Vagrant Cascadian +* Viacheslav Ostroukh +* Vishnu V K +* Xianxiang Li +* Yannic Schroeder +* Yo Yehudi +* Zexi +* znstrider + +GitHub issues and pull requests: + +Pull Requests (939): + +* :ghpull:`21645`: Backport PR #21628 on branch v3.5.x (Fix METH_VARARGS method signatures ) +* :ghpull:`21644`: Backport PR #21640 on branch v3.5.x (DOC: remove sample_plots from tutorials) +* :ghpull:`21628`: Fix METH_VARARGS method signatures +* :ghpull:`21640`: DOC: remove sample_plots from tutorials +* :ghpull:`21636`: Backport PR #21604 on branch v3.5.x (Fix centre square rectangle selector part 1) +* :ghpull:`21604`: Fix centre square rectangle selector part 1 +* :ghpull:`21633`: Backport PR #21501 on branch v3.5.x (Refix for pyparsing compat.) +* :ghpull:`21606`: BLD: limit support of pyparsing to <3 +* :ghpull:`21501`: Refix for pyparsing compat. +* :ghpull:`21624`: Backport PR #21621 on branch v3.5.x (Fix GhostScript error handling types) +* :ghpull:`21625`: Backport PR #21568 on branch v3.5.x (Enhancing support for tex and datetimes) +* :ghpull:`21568`: Enhancing support for tex and datetimes +* :ghpull:`21621`: Fix GhostScript error handling types +* :ghpull:`21623`: Backport PR #21619 on branch v3.5.x (Revert "Pin sphinx to fix sphinx-gallery") +* :ghpull:`21619`: Revert "Pin sphinx to fix sphinx-gallery" +* :ghpull:`21618`: Backport PR #21617 on branch v3.5.x (FIX: Make sure we do not over-write eps short cuts) +* :ghpull:`21622`: Backport PR #21350 on branch v3.5.x (Remove plot_gallery setting from conf.py) +* :ghpull:`21617`: FIX: Make sure we do not over-write eps short cuts +* :ghpull:`21616`: Backport PR #21613 on branch v3.5.x (SEC/DOC update supported versions) +* :ghpull:`21615`: Backport PR #21607 on branch v3.5.x (DOC: link to cheatsheets site, not github repo) +* :ghpull:`21614`: Backport PR #21609 on branch v3.5.x (Fix documentation link with renaming ``voxels`` to ``voxelarray``) +* :ghpull:`21613`: SEC/DOC update supported versions +* :ghpull:`21607`: DOC: link to cheatsheets site, not github repo +* :ghpull:`21609`: Fix documentation link with renaming ``voxels`` to ``voxelarray`` +* :ghpull:`21605`: Backport PR #21317 on branch v3.5.x (Move label hiding rectilinear-only check into _label_outer_{x,y}axis.) +* :ghpull:`21317`: Move label hiding rectilinear-only check into _label_outer_{x,y}axis. +* :ghpull:`21602`: Backport PR #21586 on branch v3.5.x (Defer enforcement of hatch validation) +* :ghpull:`21601`: Backport PR #21530 on branch v3.5.x (Fix interrupting GTK on plain Python) +* :ghpull:`21603`: Backport PR #21596 on branch v3.5.x (Pin sphinx to fix sphinx-gallery) +* :ghpull:`21586`: Defer enforcement of hatch validation +* :ghpull:`21530`: Fix interrupting GTK on plain Python +* :ghpull:`21397`: Support for pre 2.7.1 freetype savannah versions +* :ghpull:`21599`: Backport PR #21592 on branch v3.5.x ([BUG in 3.5.0rc1] - Anatomy of a Figure has the legend in the wrong spot) +* :ghpull:`21587`: Backport PR #21581 on branch v3.5.x (Fix RangeSlider.reset) +* :ghpull:`21592`: [BUG in 3.5.0rc1] - Anatomy of a Figure has the legend in the wrong spot +* :ghpull:`21596`: Pin sphinx to fix sphinx-gallery +* :ghpull:`21577`: Backport PR #21527 on branch v3.5.x (Add more 3.5 release notes) +* :ghpull:`21527`: Add more 3.5 release notes +* :ghpull:`21573`: Backport PR #21570 on branch v3.5.x (Raise correct exception out of Spines.__getattr__) +* :ghpull:`21563`: Backport PR #21559 on branch v3.5.x (Fix eventplot units) +* :ghpull:`21560`: Backport PR #21553 on branch v3.5.x (Fix check for manager presence in blocking_input.) +* :ghpull:`21561`: Backport PR #21555 on branch v3.5.x (MNT: reject more possibly unsafe strings in validate_cycler) +* :ghpull:`21555`: MNT: reject more possibly unsafe strings in validate_cycler +* :ghpull:`21553`: Fix check for manager presence in blocking_input. +* :ghpull:`21559`: Fix eventplot units +* :ghpull:`21543`: Backport PR #21443 on branch v3.5.x (FIX: re-instate ability to have position in axes) +* :ghpull:`21550`: Ignore transOffset if no offsets passed to Collection +* :ghpull:`21443`: FIX: re-instate ability to have position in axes +* :ghpull:`21531`: Backport PR #21491 on branch v3.5.x (Relocate inheritance diagram to the top of the document) +* :ghpull:`21491`: Relocate inheritance diagram to the top of the document +* :ghpull:`21504`: Backport PR #21481 on branch v3.5.x (FIX: spanning subfigures) +* :ghpull:`21481`: FIX: spanning subfigures +* :ghpull:`21483`: Backport PR #21387 on branch v3.5.x (Fix path simplification of closed loops) +* :ghpull:`21486`: Backport PR #21478 on branch v3.5.x (Fix GTK4 embedding example) +* :ghpull:`21497`: Backport PR #21484 on branch v3.5.x (Replacement for imread should return an array) +* :ghpull:`21484`: Replacement for imread should return an array +* :ghpull:`21495`: Backport PR #21492 on branch v3.5.x (added parameter documentation for MultiCursor) +* :ghpull:`21493`: Backport PR #21488 on branch v3.5.x (Added to contour docs) +* :ghpull:`21492`: added parameter documentation for MultiCursor +* :ghpull:`21488`: Added to contour docs +* :ghpull:`21478`: Fix GTK4 embedding example +* :ghpull:`21387`: Fix path simplification of closed loops +* :ghpull:`21479`: Backport PR #21472 on branch v3.5.x (Clarify set_parse_math documentation.) +* :ghpull:`21472`: Clarify set_parse_math documentation. +* :ghpull:`21471`: Backport PR #21470 on branch v3.5.x (Hide fully transparent latex text in PS output) +* :ghpull:`21470`: Hide fully transparent latex text in PS output +* :ghpull:`21469`: Backport PR #21468 on branch v3.5.x (Fix some typos in examples) +* :ghpull:`21468`: Fix some typos in examples +* :ghpull:`21461`: Backport #21429 from jklymak/doc-use-mpl-sphinx +* :ghpull:`21464`: Backport PR #21460 on branch v3.5.x (Clip slider init marker to slider track.) +* :ghpull:`21460`: Clip slider init marker to slider track. +* :ghpull:`21458`: Backport: #21429 from jklymak/doc-use-mpl-sphinx +* :ghpull:`21454`: Fix error with pyparsing 3 for 3.5.x +* :ghpull:`21459`: Backport PR #21423 on branch v3.5.x (Change CircleCI job title to "Rendered docs") +* :ghpull:`21423`: Change CircleCI job title to "Rendered docs" +* :ghpull:`21457`: Backport PR #21455 on branch v3.5.x (Hide note linking to the download section at the bottom of galleries) +* :ghpull:`21456`: Backport PR #21453 on branch v3.5.x (Cleanup index.rst sectioning) +* :ghpull:`21455`: Hide note linking to the download section at the bottom of galleries +* :ghpull:`21453`: Cleanup index.rst sectioning +* :ghpull:`21224`: DOC: Nav-bar: Add icon linking to contents +* :ghpull:`21451`: Backport PR #21445 on branch v3.5.x (Mnt pin pyparsing) +* :ghpull:`21429`: DOC: use mpl-sphinx-theme for navbar, social, logo +* :ghpull:`21450`: Backport PR #21449 on branch v3.5.x (Less verbose install info on index page) +* :ghpull:`21449`: Less verbose install info on index page +* :ghpull:`21446`: Also exclude pyparsing 3.0.0 in setup.py. +* :ghpull:`21445`: Mnt pin pyparsing +* :ghpull:`21439`: Backport PR #21420 on branch v3.5.x (Enable Python 3.10 wheel building on all systems) +* :ghpull:`21438`: Backport PR #21427 on branch v3.5.x (Update docstrings of get_{view,data}_interval.) +* :ghpull:`21437`: Backport PR #21435 on branch v3.5.x (DOC: Fix selection of parameter names in HTML theme) +* :ghpull:`21420`: Enable Python 3.10 wheel building on all systems +* :ghpull:`21427`: Update docstrings of get_{view,data}_interval. +* :ghpull:`21435`: DOC: Fix selection of parameter names in HTML theme +* :ghpull:`21428`: Backport PR #21422 on branch v3.5.x (More doc reorganization) +* :ghpull:`21422`: More doc reorganization +* :ghpull:`21421`: Backport PR #21411 on branch v3.5.x (Document webagg in docs.) +* :ghpull:`21419`: Backport PR #21251 on branch v3.5.x (DOC: more site re-org) +* :ghpull:`21411`: Document webagg in docs. +* :ghpull:`21251`: DOC: more site re-org +* :ghpull:`21416`: Backport PR #21326 on branch v3.5.x (Add ability to scale BBox with just x or y values) +* :ghpull:`21418`: Backport PR #21414 on branch v3.5.x (Support pathological tmpdirs in TexManager.) +* :ghpull:`21410`: Backport PR #20591 on branch v3.5.x (Webagg backend: get rid of tornado) +* :ghpull:`21414`: Support pathological tmpdirs in TexManager. +* :ghpull:`21326`: Add ability to scale BBox with just x or y values +* :ghpull:`20591`: Webagg backend: get rid of tornado +* :ghpull:`21406`: Backport PR #21212 on branch v3.5.x (Fix set_size_inches on HiDPI and also GTK4) +* :ghpull:`21405`: Backport PR #21365 on branch v3.5.x (Convert macosx backend to use device_pixel_ratio) +* :ghpull:`18274`: Improve initial macosx device scale +* :ghpull:`21212`: Fix set_size_inches on HiDPI and also GTK4 +* :ghpull:`21365`: Convert macosx backend to use device_pixel_ratio +* :ghpull:`21372`: Backport PR #20708 on branch v3.5.x (Describe possible need for loading the 'lmodern' package when using PGF files) +* :ghpull:`20708`: Describe possible need for loading the 'lmodern' package when using PGF files +* :ghpull:`21359`: Add GHA testing whether files were added and deleted in the same PR. +* :ghpull:`21360`: Backport PR #21335 on branch v3.5.x (DOC: move usage tutorial info to Users guide rst) +* :ghpull:`21363`: Backport PR #21287 on branch v3.5.x (Inherit more docstrings.) +* :ghpull:`21361`: Fix flake8 from #21335 +* :ghpull:`21287`: Inherit more docstrings. +* :ghpull:`21335`: DOC: move usage tutorial info to Users guide rst +* :ghpull:`21358`: Backport PR #21357 on branch v3.5.x (DOC: remove test from README.rst) +* :ghpull:`21357`: DOC: remove test from README.rst +* :ghpull:`21350`: Remove plot_gallery setting from conf.py +* :ghpull:`21340`: Backport PR #21332 on branch v3.5.x (Fix default value for ``shading`` in``pyplot.pcolormesh`` docstring) +* :ghpull:`21332`: Fix default value for ``shading`` in``pyplot.pcolormesh`` docstring +* :ghpull:`21334`: Backport PR #21330 on branch v3.5.x (Fix medical image caption in tutorial) +* :ghpull:`21329`: Backport PR #21321 on branch v3.5.x (DOC Update description of ax.contour method, resolves #21310) +* :ghpull:`21330`: Fix medical image caption in tutorial +* :ghpull:`21321`: DOC Update description of ax.contour method, resolves #21310 +* :ghpull:`21327`: Backport PR #21313 on branch v3.5.x (DOC: Minimal getting started page) +* :ghpull:`21313`: DOC: Minimal getting started page +* :ghpull:`21316`: Backport PR #21312 on branch v3.5.x (Update link to Agg website) +* :ghpull:`21312`: Update link to Agg website +* :ghpull:`21308`: Backport PR #21307 on branch v3.5.x (Use in-tree builds for PyPy wheels) +* :ghpull:`21307`: Use in-tree builds for PyPy wheels +* :ghpull:`21306`: Backport PR #21303 on branch v3.5.x (Pin macOS to 10.15 for wheels) +* :ghpull:`21305`: Backport PR #21286 on branch v3.5.x (Clarify FigureBase.tight_bbox as different from all other artists.) +* :ghpull:`21286`: Clarify FigureBase.tight_bbox as different from all other artists. +* :ghpull:`21302`: Backport PR #21291 on branch v3.5.x (DOC: Bump to the sphinx-gallery release) +* :ghpull:`21304`: Backport PR #21294 on branch v3.5.x (Disable blitting on GTK4 backends) +* :ghpull:`21294`: Disable blitting on GTK4 backends +* :ghpull:`21277`: Backport PR #21263 on branch v3.5.x (Ensure internal FreeType matches Python compile) +* :ghpull:`21291`: DOC: Bump to the sphinx-gallery release +* :ghpull:`21296`: Backport PR #21288 on branch v3.5.x (Allow macosx thread safety test on macOS11) +* :ghpull:`21297`: Backport PR #21293 on branch v3.5.x (Fix snap argument to pcolormesh) +* :ghpull:`21293`: Fix snap argument to pcolormesh +* :ghpull:`21288`: Allow macosx thread safety test on macOS11 +* :ghpull:`21279`: Fix freetype wheel building +* :ghpull:`21292`: Backport PR #21290 on branch v3.5.x (DOC: Fix some lists in animation examples) +* :ghpull:`21290`: DOC: Fix some lists in animation examples +* :ghpull:`21284`: Backport PR #21282 on branch v3.5.x (Fix incorrect markup in example.) +* :ghpull:`21282`: Fix incorrect markup in example. +* :ghpull:`21281`: Backport PR #21275 on branch v3.5.x (Fix format_cursor_data for values close to float resolution.) +* :ghpull:`21275`: Fix format_cursor_data for values close to float resolution. +* :ghpull:`21263`: Ensure internal FreeType matches Python compile +* :ghpull:`21273`: Backport PR #21269 on branch v3.5.x (Don't use pixelDelta() on X11.) +* :ghpull:`21269`: Don't use pixelDelta() on X11. +* :ghpull:`21268`: Backport PR #21236: DOC: Update interactive colormap example +* :ghpull:`21265`: Backport PR #21264 on branch v3.5.x (DOC: Fix footnote that breaks PDF builds) +* :ghpull:`21264`: DOC: Fix footnote that breaks PDF builds +* :ghpull:`21236`: DOC: Update interactive colormap example +* :ghpull:`21262`: Backport PR #21250 on branch v3.5.x (DOC: Remove examples/README) +* :ghpull:`21260`: DOC: Fix source links to prereleases +* :ghpull:`21261`: Backport PR #21240: DOC: Fix source links and flake8 cleanup +* :ghpull:`21248`: Backport PR #21247 on branch v3.5.x (Fix release notes typos.) +* :ghpull:`21254`: Backport PR #21249 on branch v3.5.x (Fix some syntax highlights in coding and contributing guide.) +* :ghpull:`21250`: DOC: Remove examples/README +* :ghpull:`21249`: Fix some syntax highlights in coding and contributing guide. +* :ghpull:`20652`: Fixed Comments and Clarification +* :ghpull:`21240`: DOC: Fix source links and flake8 cleanup +* :ghpull:`21247`: Fix release notes typos. +* :ghpull:`21244`: Backport PR #20907 on branch v3.5.x (Move sigint tests into subprocesses) +* :ghpull:`21245`: Backport PR #21226 on branch v3.5.x (DOC: Adapt some colors in examples) +* :ghpull:`21226`: DOC: Adapt some colors in examples +* :ghpull:`20907`: Move sigint tests into subprocesses +* :ghpull:`21241`: Backport PR #21237 on branch v3.5.x (DOC: Add fill_between to plot_types) +* :ghpull:`21237`: DOC: Add fill_between to plot_types +* :ghpull:`21235`: Backport PR #20852 on branch v3.5.x (Prepare docs for 3.5) +* :ghpull:`20852`: Prepare docs for 3.5 +* :ghpull:`21234`: Backport PR #21221 on branch v3.5.x (Updates to plot types) +* :ghpull:`21232`: Backport PR #21228 on branch v3.5.x (Small doc nits.) +* :ghpull:`21233`: Backport PR #21229 on branch v3.5.x (Shorten PdfPages FAQ entry.) +* :ghpull:`21221`: Updates to plot types +* :ghpull:`21229`: Shorten PdfPages FAQ entry. +* :ghpull:`21228`: Small doc nits. +* :ghpull:`21227`: Backport PR #20730 on branch v3.5.x (DOC: Add a release mode tag) +* :ghpull:`20730`: DOC: Add a release mode tag +* :ghpull:`21225`: Backport PR #21223 on branch v3.5.x (Fix nav link for "Usage guide" and remove release/date info from that page) +* :ghpull:`21223`: Fix nav link for "Usage guide" and remove release/date info from that page +* :ghpull:`21222`: Backport PR #21211 on branch v3.5.x (updated resources) +* :ghpull:`21211`: updated resources +* :ghpull:`21219`: Backport PR #21216 on branch v3.5.x (Use correct confidence interval) +* :ghpull:`21216`: Use correct confidence interval +* :ghpull:`21217`: Backport PR #21215 on branch v3.5.x (Fix more edge cases in psd, csd.) +* :ghpull:`21215`: Fix more edge cases in psd, csd. +* :ghpull:`21210`: Backport PR #21191 on branch v3.5.x (Fix very-edge case in csd(), plus small additional cleanups.) +* :ghpull:`21209`: Backport PR #21188 on branch v3.5.x (Rework headers for individual backend docs.) +* :ghpull:`21191`: Fix very-edge case in csd(), plus small additional cleanups. +* :ghpull:`21188`: Rework headers for individual backend docs. +* :ghpull:`21208`: Backport PR #21203 on branch v3.5.x (Rework plot types quiver) +* :ghpull:`21203`: Rework plot types quiver +* :ghpull:`21207`: Backport PR #21198 on branch v3.5.x (Update coding_guide.rst) +* :ghpull:`21206`: Backport PR #21201 on branch v3.5.x (Fix signature of barh() in plot types) +* :ghpull:`21204`: Backport PR #21193 on branch v3.5.x (Update contributing guide.) +* :ghpull:`21198`: Update coding_guide.rst +* :ghpull:`21201`: Fix signature of barh() in plot types +* :ghpull:`21200`: Backport PR #21196 on branch v3.5.x (Update fonts.rst) +* :ghpull:`21199`: Backport PR #21026 on branch v3.5.x (Place 3D contourf patches between levels) +* :ghpull:`21197`: Backport PR #21186 on branch v3.5.x (Fixed typos using codespell. (previous pull request was told not to change the agg files) ) +* :ghpull:`21196`: Update fonts.rst +* :ghpull:`21026`: Place 3D contourf patches between levels +* :ghpull:`21186`: Fixed typos using codespell. (previous pull request was told not to change the agg files) +* :ghpull:`21195`: Backport PR #21189 on branch v3.5.x (Small doc fixes.) +* :ghpull:`21194`: Backport PR #21192 on branch v3.5.x (Discourage making style changes to extern/.) +* :ghpull:`21189`: Small doc fixes. +* :ghpull:`21192`: Discourage making style changes to extern/. +* :ghpull:`21193`: Update contributing guide. +* :ghpull:`21184`: Backport PR #21172 on branch v3.5.x (skip QImage leak workaround for PySide2 >= 5.12) +* :ghpull:`21183`: Backport PR #21081 on branch v3.5.x (Improve docs for to_jshtml()) +* :ghpull:`21172`: skip QImage leak workaround for PySide2 >= 5.12 +* :ghpull:`21181`: Backport PR #21166 on branch v3.5.x (Cleanup contour(f)3d examples.) +* :ghpull:`21182`: Backport PR #21180 on branch v3.5.x (Remove uninformative ``.. figure::`` titles in docs.) +* :ghpull:`21081`: Improve docs for to_jshtml() +* :ghpull:`21180`: Remove uninformative ``.. figure::`` titles in docs. +* :ghpull:`21166`: Cleanup contour(f)3d examples. +* :ghpull:`21174`: Backport PR #19343 on branch v3.5.x (Enh improve agg chunks error) +* :ghpull:`19343`: Enh improve agg chunks error +* :ghpull:`21171`: Backport PR #20951 on branch v3.5.x ([ENH]: data kwarg support for mplot3d #20912) +* :ghpull:`21169`: Backport PR #21126 on branch v3.5.x (Deprecate passing formatting parameters positionally to stem()) +* :ghpull:`21126`: Deprecate passing formatting parameters positionally to stem() +* :ghpull:`21164`: Backport PR #21039 on branch v3.5.x (Fix ``hexbin`` marginals and log scaling) +* :ghpull:`21039`: Fix ``hexbin`` marginals and log scaling +* :ghpull:`21160`: Backport PR #21136 on branch v3.5.x (More (minor) plot types gallery fixes.) +* :ghpull:`21136`: More (minor) plot types gallery fixes. +* :ghpull:`21158`: Backport PR #21140 on branch v3.5.x (Docstring cleanups around DATA_PARAMETER_PLACEHOLDER.) +* :ghpull:`21159`: Backport PR #21127 on branch v3.5.x (Simplify argument parsing in stem().) +* :ghpull:`21157`: Backport PR #21153 on branch v3.5.x (Improve curve_error_band example.) +* :ghpull:`21156`: Backport PR #21154 on branch v3.5.x (Increase marker size in double_pendulum example.) +* :ghpull:`21127`: Simplify argument parsing in stem(). +* :ghpull:`21140`: Docstring cleanups around DATA_PARAMETER_PLACEHOLDER. +* :ghpull:`21153`: Improve curve_error_band example. +* :ghpull:`21154`: Increase marker size in double_pendulum example. +* :ghpull:`21149`: Backport PR #21146 on branch v3.5.x (Fix clim handling for pcolor{,mesh}.) +* :ghpull:`21151`: Backport PR #21141 on branch v3.5.x (Fix DATA_PARAMETER_PLACEHOLDER interpolation for quiver&contour{,f}.) +* :ghpull:`21150`: Backport PR #21145 on branch v3.5.x (Fix format_cursor_data with nans.) +* :ghpull:`21141`: Fix DATA_PARAMETER_PLACEHOLDER interpolation for quiver&contour{,f}. +* :ghpull:`21145`: Fix format_cursor_data with nans. +* :ghpull:`21146`: Fix clim handling for pcolor{,mesh}. +* :ghpull:`21148`: Backport PR #21142 on branch v3.5.x (Mac qt ctrl) +* :ghpull:`21142`: Mac qt ctrl +* :ghpull:`21144`: Backport PR #21122 on branch v3.5.x (CTRL does not fix aspect in zoom-to-rect mode.) +* :ghpull:`21143`: Backport PR #19515 on branch v3.5.x (Colorbar axis zoom and pan) +* :ghpull:`21122`: CTRL does not fix aspect in zoom-to-rect mode. +* :ghpull:`19515`: Colorbar axis zoom and pan +* :ghpull:`21138`: Backport PR #21131 on branch v3.5.x (Fix polar() regression on second call failure) +* :ghpull:`21134`: Backport PR #21124 on branch v3.5.x (Tweak streamplot plot_types example.) +* :ghpull:`21133`: Backport PR #21114 on branch v3.5.x (Add contour and tricontour plots to plot types) +* :ghpull:`21132`: Backport PR #21093 on branch v3.5.x (DOC: clarify what we mean by object oriented in pyplot api) +* :ghpull:`21124`: Tweak streamplot plot_types example. +* :ghpull:`21114`: Add contour and tricontour plots to plot types +* :ghpull:`21130`: Backport PR #21129 on branch v3.5.x (Fix decenter of image in gallery thumbnails) +* :ghpull:`21093`: DOC: clarify what we mean by object oriented in pyplot api +* :ghpull:`21129`: Fix decenter of image in gallery thumbnails +* :ghpull:`21125`: Backport PR #21086 on branch v3.5.x (Capitalization fixes in example section titles.) +* :ghpull:`21128`: Backport PR #21123 on branch v3.5.x (Simplify/uniformize sample data setup in plot_types examples.) +* :ghpull:`21123`: Simplify/uniformize sample data setup in plot_types examples. +* :ghpull:`21121`: Backport PR #21111 on branch v3.5.x (Rename section title Gallery -> Examples) +* :ghpull:`21086`: Capitalization fixes in example section titles. +* :ghpull:`21120`: Backport PR #21115 on branch v3.5.x (Improve errorbar plot types example) +* :ghpull:`21119`: Backport PR #21116 on branch v3.5.x (Adapt css so that galleries have four columns) +* :ghpull:`21116`: Adapt css so that galleries have four columns +* :ghpull:`21118`: Backport PR #21112 on branch v3.5.x (Fix make_norm_from_scale ``__name__`` when used inline.) +* :ghpull:`21111`: Rename section title Gallery -> Examples +* :ghpull:`21112`: Fix make_norm_from_scale ``__name__`` when used inline. +* :ghpull:`20951`: [ENH]: data kwarg support for mplot3d #20912 +* :ghpull:`21115`: Improve errorbar plot types example +* :ghpull:`21109`: Backport PR #21104 on branch v3.5.x (Remove the index and module index pages) +* :ghpull:`21104`: Remove the index and module index pages +* :ghpull:`21102`: Backport PR #21100 on branch v3.5.x (Cleanup demo_tight_layout.) +* :ghpull:`21106`: Backport PR #21034 on branch v3.5.x (Make rcParams["backend"] backend fallback check rcParams identity first.) +* :ghpull:`21105`: Backport PR #21083 on branch v3.5.x (Fix capitalizations) +* :ghpull:`21103`: Backport PR #21089 on branch v3.5.x (Update sticky_edges docstring to new behavior.) +* :ghpull:`21034`: Make rcParams["backend"] backend fallback check rcParams identity first. +* :ghpull:`21083`: Fix capitalizations +* :ghpull:`21099`: Backport PR #20935 on branch v3.5.x (Add ColormapsRegistry as experimental and add it to pyplot) +* :ghpull:`21100`: Cleanup demo_tight_layout. +* :ghpull:`21098`: Backport PR #20903 on branch v3.5.x (Use release-branch version scheme ) +* :ghpull:`20935`: Add ColormapsRegistry as experimental and add it to pyplot +* :ghpull:`20903`: Use release-branch version scheme +* :ghpull:`21089`: Update sticky_edges docstring to new behavior. +* :ghpull:`21084`: Backport PR #20988 on branch v3.5.x (Add HiDPI support in GTK.) +* :ghpull:`21085`: Backport PR #21082 on branch v3.5.x (Fix layout of sidebar entries) +* :ghpull:`20345`: ENH: call update_ticks before we return them to the user +* :ghpull:`21082`: Fix layout of sidebar entries +* :ghpull:`20988`: Add HiDPI support in GTK. +* :ghpull:`21080`: Backport PR #19619 on branch v3.5.x (Fix bug in shape assignment) +* :ghpull:`19619`: Fix bug in shape assignment +* :ghpull:`21079`: Backport PR #21078 on branch v3.5.x (Cache build dependencies on Circle) +* :ghpull:`21078`: Cache build dependencies on Circle +* :ghpull:`21077`: Backport PR #21076 on branch v3.5.x (Break links between twinned axes when removing) +* :ghpull:`21076`: Break links between twinned axes when removing +* :ghpull:`21073`: Backport PR #21072 on branch v3.5.x (Use sysconfig directly instead of through distutils) +* :ghpull:`21072`: Use sysconfig directly instead of through distutils +* :ghpull:`21071`: Backport PR #21061 on branch v3.5.x (Remove most visible dependencies on distutils.) +* :ghpull:`21061`: Remove most visible dependencies on distutils. +* :ghpull:`21070`: Backport PR #21025 on branch v3.5.x (Fix Cairo backends on HiDPI screens) +* :ghpull:`21065`: Backport PR #20819 on branch v3.5.x (Add CPython 3.10 wheels) +* :ghpull:`21069`: Backport PR #21051 on branch v3.5.x (set_dashes does not support offset=None anymore.) +* :ghpull:`21068`: Backport PR #21067 on branch v3.5.x (Remove generated file accidentally added in #20867) +* :ghpull:`21025`: Fix Cairo backends on HiDPI screens +* :ghpull:`21051`: set_dashes does not support offset=None anymore. +* :ghpull:`21067`: Remove generated file accidentally added in #20867 +* :ghpull:`21066`: Backport PR #21060 on branch v3.5.x (Correct the default for fillstyle parameter in MarkerStyle()) +* :ghpull:`20819`: Add CPython 3.10 wheels +* :ghpull:`21064`: Backport PR #20913 on branch v3.5.x ([Doc] colors.to_hex input & output) +* :ghpull:`20913`: [Doc] colors.to_hex input & output +* :ghpull:`21063`: Backport PR #21062 on branch v3.5.x (Fix typo in template of current dev-docs) +* :ghpull:`21062`: Fix typo in template of current dev-docs +* :ghpull:`21060`: Correct the default for fillstyle parameter in MarkerStyle() +* :ghpull:`21058`: Backport PR #21053 on branch v3.5.x (Fix validate_markevery docstring markup.) +* :ghpull:`21053`: Fix validate_markevery docstring markup. +* :ghpull:`21052`: Backport PR #20867 on branch v3.5.x ("inner" index reorganization) +* :ghpull:`21047`: Backport PR #21040 on branch v3.5.x (Document ``handleheight`` parameter of ``Legend`` constructor) +* :ghpull:`21048`: Backport PR #21044 on branch v3.5.x (Support for forward/back mousebuttons on WX backend) +* :ghpull:`20867`: "inner" index reorganization +* :ghpull:`21044`: Support for forward/back mousebuttons on WX backend +* :ghpull:`21040`: Document ``handleheight`` parameter of ``Legend`` constructor +* :ghpull:`21045`: Backport PR #21041 on branch v3.5.x (Prefer "none" to "None" in docs, examples and comments.) +* :ghpull:`21041`: Prefer "none" to "None" in docs, examples and comments. +* :ghpull:`21037`: Backport PR #20949 on branch v3.5.x (Improve formatting of imshow() cursor data independently of colorbar.) +* :ghpull:`21035`: Backport PR #21031 on branch v3.5.x (Make date.{converter,interval_multiples} rcvalidators side-effect free.) +* :ghpull:`20949`: Improve formatting of imshow() cursor data independently of colorbar. +* :ghpull:`21031`: Make date.{converter,interval_multiples} rcvalidators side-effect free. +* :ghpull:`21032`: Backport PR #21017 on branch v3.5.x (FIX: Don't subslice lines if non-standard transform) +* :ghpull:`21030`: Backport PR #20980 on branch v3.5.x (FIX: remove colorbar from list of colorbars on axes) +* :ghpull:`21029`: Backport PR #21028 on branch v3.5.x (Minor homogeneization of markup for MEP titles.) +* :ghpull:`21028`: Minor homogeneization of markup for MEP titles. +* :ghpull:`21022`: Backport PR #20518 on branch v3.5.x ( Support sketch_params in pgf backend) +* :ghpull:`20518`: Support sketch_params in pgf backend +* :ghpull:`21018`: Backport PR #20976 on branch v3.5.x (Separate tick and spine examples) +* :ghpull:`20976`: Separate tick and spine examples +* :ghpull:`21014`: Backport PR #20994 on branch v3.5.x (Remove unused icon_filename, window_icon globals.) +* :ghpull:`21013`: Backport PR #21012 on branch v3.5.x (Use numpydoc for GridSpecFromSubplotSpec.__init__) +* :ghpull:`20994`: Remove unused icon_filename, window_icon globals. +* :ghpull:`21012`: Use numpydoc for GridSpecFromSubplotSpec.__init__ +* :ghpull:`21011`: Backport PR #21003 on branch v3.5.x (Deemphasize mpl_toolkits in API docs.) +* :ghpull:`21003`: Deemphasize mpl_toolkits in API docs. +* :ghpull:`21002`: Backport PR #20987 on branch v3.5.x (FIX: colorbar with boundary norm, proportional, extend) +* :ghpull:`20987`: FIX: colorbar with boundary norm, proportional, extend +* :ghpull:`21000`: Backport PR #20997 on branch v3.5.x (Fix ToolManager + TextBox support.) +* :ghpull:`20997`: Fix ToolManager + TextBox support. +* :ghpull:`20985`: Backport PR #20942 on branch v3.5.x (DOC Use 'Axes' instead of 'axes' in axes._base.py) +* :ghpull:`20983`: Backport PR #20973 on branch v3.5.x (Docstring cleanups.) +* :ghpull:`20982`: Backport PR #20972 on branch v3.5.x (Cleanup some dviread docstrings.) +* :ghpull:`20942`: DOC Use 'Axes' instead of 'axes' in axes._base.py +* :ghpull:`20981`: Backport PR #20975 on branch v3.5.x (Clarify support for 2D coordinate inputs to streamplot.) +* :ghpull:`20972`: Cleanup some dviread docstrings. +* :ghpull:`20975`: Clarify support for 2D coordinate inputs to streamplot. +* :ghpull:`20973`: Docstring cleanups. +* :ghpull:`20971`: Backport PR #20970 on branch v3.5.x (Build wheels for Apple Silicon.) +* :ghpull:`20970`: Build wheels for Apple Silicon. +* :ghpull:`20969`: Backport PR #20321 on branch v3.5.x (Add a GTK4 backend.) +* :ghpull:`20321`: Add a GTK4 backend. +* :ghpull:`20966`: Backport PR #19553 on branch v3.5.x (ENH: Adding callbacks to Norms for update signals) +* :ghpull:`20967`: Backport PR #20965 on branch v3.5.x (BUG: Fix f_back is None handling) +* :ghpull:`20965`: BUG: Fix f_back is None handling +* :ghpull:`19553`: ENH: Adding callbacks to Norms for update signals +* :ghpull:`20960`: Backport PR #20745 on branch v3.5.x (Clean up some Event class docs.) +* :ghpull:`20745`: Clean up some Event class docs. +* :ghpull:`20959`: Backport PR #20952 on branch v3.5.x (Redirect to new 3rd party packages page) +* :ghpull:`20952`: Redirect to new 3rd party packages page +* :ghpull:`20958`: Backport PR #20956 on branch v3.5.x (Make warning for no-handles legend more explicit.) +* :ghpull:`20956`: Make warning for no-handles legend more explicit. +* :ghpull:`20954`: Backport PR #20931 on branch v3.5.x (API: rename draw_no_output to draw_without_rendering) +* :ghpull:`20931`: API: rename draw_no_output to draw_without_rendering +* :ghpull:`20934`: Backport PR #20919 on branch v3.5.x (Improve various release notes)" +* :ghpull:`20948`: Backport PR #20944 on branch v3.5.x (Switch documented deprecations in mathtext by ``__getattr__`` deprecations) +* :ghpull:`20944`: Switch documented deprecations in mathtext by ``__getattr__`` deprecations +* :ghpull:`20947`: Backport PR #20941 on branch v3.5.x (Fix variable capitalization in plot types headings) +* :ghpull:`20941`: Fix variable capitalization in plot types headings +* :ghpull:`20939`: Backport PR #20937 on branch v3.5.x (Fix documented allowed values for Patch.set_edgecolor.) +* :ghpull:`20940`: Backport PR #20938 on branch v3.5.x (Fix missorted changelog entry.) +* :ghpull:`20938`: Fix missorted changelog entry. +* :ghpull:`20937`: Fix documented allowed values for Patch.set_edgecolor. +* :ghpull:`20933`: Backport PR #20916 on branch v3.5.x (Improve deleted Animation warning) +* :ghpull:`20916`: Improve deleted Animation warning +* :ghpull:`20919`: Improve various release notes +* :ghpull:`20928`: Backport PR #20889 on branch v3.5.x (Fix clearing selector) +* :ghpull:`20927`: Backport PR #20924 on branch v3.5.x (Improve ``path.py`` docstrings a bit) +* :ghpull:`20889`: Fix clearing selector +* :ghpull:`20922`: Backport PR #20920 on branch v3.5.x (Fix cubic curve code in ``Path.__doc__``) +* :ghpull:`20925`: Backport PR #20917 on branch v3.5.x (Move installing FAQ to installing page.) +* :ghpull:`20924`: Improve ``path.py`` docstrings a bit +* :ghpull:`20917`: Move installing FAQ to installing page. +* :ghpull:`20920`: Fix cubic curve code in ``Path.__doc__`` +* :ghpull:`20918`: Backport PR #20915 on branch v3.5.x ([Doc] boxplot typo) +* :ghpull:`20915`: [Doc] boxplot typo +* :ghpull:`20908`: [Doc] FigureCanvasBase draw +* :ghpull:`20899`: Backport PR #20885 on branch v3.5.x (Fix broken QApplication init in a test.) +* :ghpull:`20885`: Fix broken QApplication init in a test. +* :ghpull:`20894`: Backport PR #20891 on branch v3.5.x (Add dependency link for 3.5) +* :ghpull:`20893`: Backport PR #20892 on branch v3.5.x (Label pylab as "discouraged" instead of "disapproved") +* :ghpull:`20891`: Add dependency link for 3.5 +* :ghpull:`20888`: Backport PR #20864 on branch v3.5.x (Add Python 3.10 testing.) +* :ghpull:`20890`: Backport PR #20693 on branch v3.5.x (Fix setting artists properties of selectors) +* :ghpull:`20892`: Label pylab as "discouraged" instead of "disapproved" +* :ghpull:`20693`: Fix setting artists properties of selectors +* :ghpull:`20864`: Add Python 3.10 testing. +* :ghpull:`20886`: Backport PR #20884 on branch v3.5.x (Ensure full environment is passed to headless test.) +* :ghpull:`20884`: Ensure full environment is passed to headless test. +* :ghpull:`20883`: Make pywin32 optional in Ctrl+C Qt test. +* :ghpull:`20874`: Add additional external resource. +* :ghpull:`20875`: Use mpl.colormaps in examples +* :ghpull:`20586`: Deprecate matplotlib.test() +* :ghpull:`19892`: Add Figure parameter layout and discourage tight_layout / constrained_layout +* :ghpull:`20882`: Don't add QtNetwork to the API exported by qt_compat. +* :ghpull:`20881`: Deprecate some old globals in qt_compat. +* :ghpull:`13306`: Qt5: SIGINT kills just the mpl window and not the process itself +* :ghpull:`20876`: DOC: Fix dependency link. +* :ghpull:`20878`: Use tables for Locator and Formatter docs +* :ghpull:`20873`: Remove mplutils.cpp; shorten mplutils.h. +* :ghpull:`20872`: Remove some boilerplate from C extension inits. +* :ghpull:`20871`: Move setup.cfg to mplsetup.cfg. +* :ghpull:`20869`: Ignore errors trying to delete make_release_tree. +* :ghpull:`20868`: Fix qt key mods +* :ghpull:`20856`: TST: Add unit test to catch recurrences of #20822, #20855 +* :ghpull:`20857`: Propose a less error-prone helper for module-level getattrs. +* :ghpull:`20840`: Speed up Tkagg blit with Tk_PhotoPutBlock +* :ghpull:`20805`: Ensure all params are restored after ``reset_ticks``. +* :ghpull:`20863`: new github citation format +* :ghpull:`20859`: Allow SubFigure legends +* :ghpull:`20848`: Fix PyPy wheels and tests +* :ghpull:`20862`: Fix minor typo in setupext.py +* :ghpull:`20814`: FIX: Avoid copying source script when ``plot_html_show_source_link`` is False in plot directive +* :ghpull:`20855`: BUG: __getattr__ must raise AttributeError if name not found (again) +* :ghpull:`20079`: Prepare axes_divider for simpler(?) indexing-based API. +* :ghpull:`20444`: Delete _Bracket and update the _Curve to be able to ']->' and '<-[' +* :ghpull:`20812`: Clarify tutorial "Customizing Matplotlib with style sheets and rcParams" +* :ghpull:`20806`: Deprecate matplotlib.cm.LUTSIZE +* :ghpull:`20818`: Swap Cap/Cup glyphs when using STIX font. +* :ghpull:`20849`: Add external resources to devdoc landing page +* :ghpull:`20846`: Re-re-remove deprecated Qt globals. +* :ghpull:`18503`: Add a dedicated ColormapRegistry class +* :ghpull:`20603`: Deprecate unused LassoSelector event handlers. +* :ghpull:`20679`: Fix selector onselect call when the selector is removed by an "empty" click and add ``ignore_event_outside`` argument +* :ghpull:`11358`: FIX/ENH: Introduce a monolithic legend handler for Line2D +* :ghpull:`20699`: FIX/ENH: Introduce a monolithic legend handler for Line2D +* :ghpull:`20837`: Merge branch v3.4.x +* :ghpull:`18782`: ENH: allow image to interpolate post RGBA +* :ghpull:`20829`: TST: neither warned and pytest upstream deprecated this usage +* :ghpull:`20828`: Increase test timeouts to 60 s to aid slower architectures +* :ghpull:`20816`: ENH: Add the ability to block callback signals +* :ghpull:`20646`: Handle NaN values in ``plot_surface`` zsort +* :ghpull:`20725`: ``Axes3D.plot_surface``: Allow masked arrays and ``NaN`` values +* :ghpull:`20825`: Fix image triage tool with Qt6 +* :ghpull:`20229`: ENH: Only do constrained layout at draw... +* :ghpull:`20822`: BUG: __getattr__ must raise AttributeError if name not found +* :ghpull:`20815`: circle: Switch to next-gen image. +* :ghpull:`20813`: add doc-link to dufte +* :ghpull:`20799`: MNT: Rename callbacksSM to callbacks +* :ghpull:`20803`: Re-remove deprecated Qt globals. +* :ghpull:`17810`: FIX: don't fail on first show if animation already exhausted +* :ghpull:`20733`: Deprecate globals using module-level ``__getattr__``. +* :ghpull:`20788`: FIX: Check for colorbar creation with multi-dimensional alpha +* :ghpull:`20115`: ENH: pass extra kwargs in FigureBase, SubFigure, Figure to set +* :ghpull:`20795`: TST/MNT: deprecate unused fixture +* :ghpull:`20792`: Change legend guide to object oriented approach +* :ghpull:`20717`: Fix collection offsets +* :ghpull:`20673`: Point [SOURCE] documents to github +* :ghpull:`19255`: Support for PyQt6/PySide6. +* :ghpull:`20772`: Implement remove_rubberband rather than release_zoom. +* :ghpull:`20783`: Document how to check for the existence of current figure/axes. +* :ghpull:`20778`: Dedupe handling of mouse buttons in macos backend. +* :ghpull:`20749`: Cleanup font subsetting code +* :ghpull:`20775`: Remove some remnants of qt4 support. +* :ghpull:`20659`: Add HiDPI-related config for mathmpl +* :ghpull:`20767`: Factor out latex ifpackageloaded pattern. +* :ghpull:`20769`: Simplify backend_ps._nums_to_str. +* :ghpull:`20768`: Avoid using gca() in examples. +* :ghpull:`20766`: Fix line dash offset format in PS output +* :ghpull:`20706`: Include ``underscore.sty`` +* :ghpull:`20729`: Support vmin/vmax with bins='log' in hexbin +* :ghpull:`20753`: Deprecate support for case-insensitive scales. +* :ghpull:`20602`: Merge EllipseSelector example together with RectangleSelector. +* :ghpull:`20744`: Add an example showing alternate mouse cursors. +* :ghpull:`20758`: FIX: pass colorbar.set_ticklabels down to long_axis +* :ghpull:`20759`: Modernize mathtext examples +* :ghpull:`20739`: Small simplifications to streamplot. +* :ghpull:`20756`: Add new external resource: Python Graph Gallery +* :ghpull:`20330`: Fix cla colorbar +* :ghpull:`20688`: issue form files +* :ghpull:`20743`: Set the canvas cursor when using a SpanSelector +* :ghpull:`20391`: Type42 subsetting in PS/PDF +* :ghpull:`20737`: DOC: new index page +* :ghpull:`20686`: Fix interaction between make_keyword_only and pyplot generation. +* :ghpull:`20731`: Improved implementation of Path.copy and deepcopy +* :ghpull:`20732`: Fix style in ``assert(x)``. +* :ghpull:`20620`: Move set_cursor from the toolbar to FigureCanvas. +* :ghpull:`20728`: Fix broken link in 'Contributing' docs +* :ghpull:`20727`: DOC/TST make circle faster +* :ghpull:`20726`: DOC: Provide alternative to cbar.patch +* :ghpull:`20719`: Fix color normalization in plot types scatter +* :ghpull:`20634`: Implement Type-1 decryption +* :ghpull:`20633`: Emit non BMP chars as XObjects in PDF +* :ghpull:`20709`: Fix Circle merge on master branch. +* :ghpull:`20701`: Small cleanup to GTK backend +* :ghpull:`20670`: Support markevery on figure-level lines. +* :ghpull:`20707`: Rename a confusingly named variable in backend_pdf. +* :ghpull:`20680`: CI: Build merged version on CircleCI +* :ghpull:`20471`: add interactive colorbar example to gallery +* :ghpull:`20692`: Small cleanups to hatch.py. +* :ghpull:`20702`: DOC: add note about contouring algorithm +* :ghpull:`18869`: Add __version_info__ as a tuple-based version identifier +* :ghpull:`20689`: Fix some very unlikely leaks in extensions. +* :ghpull:`20254`: Define FloatingAxes boundary patch in data coordinates. +* :ghpull:`20682`: Bump codecov/codecov-action from 1 to 2 +* :ghpull:`20544`: Support of different locations for the text fixing cursor of TextBox +* :ghpull:`20648`: Simplify barchart_demo +* :ghpull:`20606`: Dynamically generate CbarAxes. +* :ghpull:`20405`: ENH: expose make_norm_from_scale +* :ghpull:`20555`: Fix the way to get xs length in set_3d_properties() +* :ghpull:`20546`: Improve tutorial figures in the new theme +* :ghpull:`20676`: Fix bounds when initialising ``SpanSelector`` +* :ghpull:`20678`: Clarify comment about backend_pgf.writeln. +* :ghpull:`20675`: Shorten the ``@deprecated`` docs. +* :ghpull:`20585`: Rename parameter selectors +* :ghpull:`20672`: Remove outdated parts of MatplotlibDeprecationWarning docs. +* :ghpull:`20671`: Standardize description of kwargs in legend_handler. +* :ghpull:`20669`: Cleanup related to usage of axs +* :ghpull:`20664`: Reword docs about fallbacks on headless linux. +* :ghpull:`20663`: Document $MPLSETUPCFG. +* :ghpull:`20638`: Small simplifications to FixedAxisArtistHelper. +* :ghpull:`20626`: Simplify curvilinear grid examples. +* :ghpull:`20088`: fix some http: -> https: URLs +* :ghpull:`20654`: Remove some usages of plt.setp() +* :ghpull:`20615`: Font 42 kerning +* :ghpull:`20636`: Use set_xticks(ticks, labels) instead of a separate set_xticklabels() +* :ghpull:`20450`: [Doc] Font Types and Font Subsetting +* :ghpull:`20582`: Fix twoslopenorm colorbar +* :ghpull:`20632`: Use ticklabels([]) instead of ticklabels('') +* :ghpull:`20608`: doc/conf.py: if set, use SOURCE_DATE_EPOCH to set copyright year. +* :ghpull:`20605`: Add \dddot and \ddddot as accents in mathtext +* :ghpull:`20621`: TST/DOC: just run circle once... +* :ghpull:`20498`: Adapt the release guide to the new release notes structure +* :ghpull:`20601`: Hide some ``_SelectorWidget`` state internals. +* :ghpull:`20600`: Inline _print_svg into its only call site (print_svg). +* :ghpull:`20589`: Add directional sizing cursors +* :ghpull:`20481`: Deprecate Colorbar.patch. +* :ghpull:`20598`: Don't forget to propagate kwargs from print_svgz to print_svg. +* :ghpull:`19495`: Move svg basename detection down to RendererSVG. +* :ghpull:`20501`: Colorbar redo again! +* :ghpull:`20407`: Turn shared_axes, stale_viewlims into {axis_name: value} dicts. +* :ghpull:`18966`: PR: Remove modality of figure options +* :ghpull:`19265`: Change styling of slider widgets +* :ghpull:`20593`: DOC: fix various typos +* :ghpull:`20374`: Check modification times of included RST files +* :ghpull:`20569`: Better signature and docstring for Artist.set +* :ghpull:`20574`: Add tricontourf hatching example +* :ghpull:`18666`: Remove unused/deprecated ``AVConv`` classes +* :ghpull:`20514`: Fix example for rcParams['autolimit_mode'] +* :ghpull:`20571`: Switch default ArrowStyle angle values from None to zero. +* :ghpull:`20510`: Consistent capitalization of section headers +* :ghpull:`20573`: Move the marker path example into the marker reference +* :ghpull:`20572`: Clarify allowable backend switches in matplotlib.use(). +* :ghpull:`20538`: Show box/arrowstyle parameters in reference examples. +* :ghpull:`20515`: Shorten the implementation of bxp(). +* :ghpull:`20562`: More concise how to for subplot adjustment +* :ghpull:`20570`: Reduce vertical margins in property tables +* :ghpull:`20563`: Expire deprecation of passing nbins to MaxNLocator in two ways +* :ghpull:`20561`: Fix limits in plot types example hist(x) +* :ghpull:`20559`: Fix deprecation of encoding in plot_directive. +* :ghpull:`20547`: Raise if passed invalid kwargs to set_constrained_layout_pads. +* :ghpull:`20527`: Factor out DEBUG_TRUETYPE checks in ttconv, & removals of unused defs. +* :ghpull:`20465`: Remove remaining 3.3 deprecations +* :ghpull:`20558`: Rename recently introduced parameters in SpanSelector +* :ghpull:`20535`: Improve the documentation guide +* :ghpull:`20113`: Interactive span selector improvement +* :ghpull:`20524`: Dedupe some box anchoring code between legend.py and offsetbox.py. +* :ghpull:`20451`: Add initial TextBox widget testing +* :ghpull:`20543`: Deprecate ``@pytest.mark.style(...)``. +* :ghpull:`20530`: Plot nothing for incompatible 0 shape in x,y data +* :ghpull:`20367`: Add parse_math in Text and default it False for TextBox +* :ghpull:`20509`: Cleanup plot types +* :ghpull:`20537`: Don't sort boxstyles/arrowstyles/etc. alphabetically. +* :ghpull:`20542`: Fix ScalarFormatter.format_ticks for non-ordered tick locations. +* :ghpull:`20533`: Rename (N, M) -> (M, N) array-like +* :ghpull:`20540`: Deprecate :encoding: option to .. plot::, which has no effect since 2011 +* :ghpull:`20541`: Minor fix +* :ghpull:`20539`: Document defaults in plot_directive. +* :ghpull:`20536`: Make most of annotation tutorial a comment, and remove figure titles. +* :ghpull:`20439`: Remove dead code from LGTM alerts. +* :ghpull:`20528`: Merge subplot_demo into subplot example. +* :ghpull:`20493`: Cleanup AnchoredOffsetbox-related demos. +* :ghpull:`20513`: Shorten the bxp docstring. +* :ghpull:`20507`: Merge subplot_toolbar example into subplots_adjust. +* :ghpull:`20505`: Add rc_context to customizing tutorial +* :ghpull:`20449`: Suppress repeated logwarns in postscript output. +* :ghpull:`20500`: DOC: Add twitter icon and fix logo link +* :ghpull:`20499`: Simplify plot types pie() +* :ghpull:`20495`: Fix shape of Z in contour docs +* :ghpull:`20497`: Remove obsolete footnote on pyside +* :ghpull:`20485`: DOC: hexbin 'extent' must be 4-tuple of float, not float +* :ghpull:`20466`: Various cleanups to pgf backend. +* :ghpull:`20474`: Make lack of support more explicit for non-postscript fonts + usetex. +* :ghpull:`20476`: give Font a root widget +* :ghpull:`20477`: remove _master attribute from FigureCanvasTk +* :ghpull:`19731`: DOC: first pass at switching to pydata theme +* :ghpull:`20475`: Less pyplot, more OO in docs. +* :ghpull:`20467`: Small cleanups to sphinxext.plot_directive. +* :ghpull:`20437`: Use packaging to do version comparisons. +* :ghpull:`20354`: Merge Colorbar and ColorbarBase. +* :ghpull:`20464`: tinypages/conf.py doesn't need to manipulate sys.path. +* :ghpull:`20420`: Add a select_overload helper for signature-overloaded functions. +* :ghpull:`20460`: Shorten the AnchoredOffsetbox docstring. +* :ghpull:`20458`: Set the axes of legend text +* :ghpull:`20438`: Fix deprecation of ``Tick.apply_tickdir``. +* :ghpull:`20457`: Rename data variables in histogram example. +* :ghpull:`20442`: Fix dvi baseline detector when ``\usepackage{chemformula}`` is used. +* :ghpull:`20454`: Tell LGTM to use Python 3 explicitly. +* :ghpull:`20446`: Make used tex packages consistent between ps and other backends. +* :ghpull:`20447`: Remove Figure/Axes/Axis deprecations from 3.3 +* :ghpull:`20414`: ENH: add colorbar info to gridspec cbar +* :ghpull:`20436`: Add missing super __init__ in subclasses +* :ghpull:`20284`: Use a GtkApplication in GTK backend. +* :ghpull:`20400`: Make pdftex.map parsing stricter +* :ghpull:`20292`: Cleanup plot types docs +* :ghpull:`20445`: Small cleanups to backend_ps. +* :ghpull:`20399`: Improve example for 3D polygons +* :ghpull:`20432`: Small doc cleanups. +* :ghpull:`20398`: Document Axes.get_aspect() +* :ghpull:`20428`: Deprecate public use of get_path_in_displaycoord. +* :ghpull:`20397`: Improve hexbin() documentation +* :ghpull:`20430`: Improve fancyarrow_demo. +* :ghpull:`20431`: Fix indentation of Arrow/Box/Connection styles tables. +* :ghpull:`20427`: Fix references in ArrowStyle docstring. +* :ghpull:`20346`: Clarify/Improve docs on family-names vs generic-families +* :ghpull:`20410`: PGF: Clip lines/markers to maximum LaTeX dimensions. +* :ghpull:`20363`: Don't disable path clipping on paths with codes. +* :ghpull:`20244`: Inline and simplify SubplotToolQt. +* :ghpull:`20165`: Slightly improve output of dvi debug utilities, and tiny cleanups. +* :ghpull:`20390`: Cleanup arrow_demo. +* :ghpull:`20408`: Remove mention of now-removed Encoding class. +* :ghpull:`20327`: FIX: fix colorbars with no scales +* :ghpull:`20215`: Quadmesh.set_array validates dimensions +* :ghpull:`20293`: Simplify font setting in usetex mode +* :ghpull:`20386`: Merge arrow_simple_demo into arrow_guide. +* :ghpull:`20348`: codecs.getwriter has simpler lifetime semantics than TextIOWrapper. +* :ghpull:`20132`: Create release notes page +* :ghpull:`20331`: Remove Axis, Tick, and Axes deprecations from 3.3 +* :ghpull:`20373`: Handle direction="column" in axes_grid.Grid +* :ghpull:`20394`: Remove separate section for support of 3d subplots. +* :ghpull:`20393`: Remove non-informative figure captions. +* :ghpull:`17453`: Displaying colorbars with specified boundaries correctly +* :ghpull:`20369`: Switch version scheme to release-branch-semver. +* :ghpull:`20377`: Cleanup some examples titles & texts. +* :ghpull:`20378`: Redirect agg_buffer{,_to_array} examples to canvasagg. +* :ghpull:`20376`: Small improvements to canvasagg example. +* :ghpull:`20365`: Reorganize a bit text-related rcs in matplotlibrc. +* :ghpull:`20362`: Add research notice +* :ghpull:`20353`: Remove incorrect statement about data-kwarg interface. +* :ghpull:`20343`: Fix exception handling when constructing C-level PathGenerator. +* :ghpull:`20349`: Fix missing write in TTStreamWriter::printf. +* :ghpull:`20347`: Fix possible refleak in PathGenerator. +* :ghpull:`20339`: Cleanup autoscale-related docstrings. +* :ghpull:`20338`: Fix some indent-related style lints. +* :ghpull:`20337`: Small unit-related cleanups. +* :ghpull:`20168`: FIX: clean up re-limiting hysteresis +* :ghpull:`20336`: Deduplicate color format specification +* :ghpull:`20334`: Remove need for ConversionInterface to support unitless values. +* :ghpull:`20020`: For polar plots, report cursor position with correct precision. +* :ghpull:`20319`: DOC: Tweaks to module API pages +* :ghpull:`20332`: Quadmesh's default value of shading is now set to 'flat' instead of False +* :ghpull:`20333`: Better align param comments in ``Legend.__init__`` signature. +* :ghpull:`20323`: Adding cla and remove to ColorbarAxes +* :ghpull:`20320`: Fix remaining E265 exceptions. +* :ghpull:`20318`: DOC: Fix missing refs in what's new pages +* :ghpull:`20315`: Fix spelling. +* :ghpull:`20291`: Write data parameter docs as regular parameter not as note (v2) +* :ghpull:`19908`: Implement get_cursor_data for QuadMesh. +* :ghpull:`20314`: MAINT: Removing deprecated colorbar functions. +* :ghpull:`20310`: Add test for font selection by texmanager. +* :ghpull:`19348`: Make YearLocator a subclass of RRuleLocator +* :ghpull:`20208`: Rewrite blocking_input to something much simpler. +* :ghpull:`19033`: Templatize class factories. +* :ghpull:`20309`: DOC: Spell out args/kwargs in examples/tutorials +* :ghpull:`20305`: Merge two axisartist examples and point to standard methods. +* :ghpull:`20306`: Document legend(handles=handles) signature +* :ghpull:`20311`: Warn if a non-str is passed to an rcParam requiring a str. +* :ghpull:`18472`: Adding a get_coordinates() method to Quadmesh collections +* :ghpull:`20032`: axvline()/axvspan() should not update r limits in polar plots. +* :ghpull:`20304`: Don't mention dviread in the PsfontsMap "missing entry" error message. +* :ghpull:`20308`: Remove outdated comment re: pgf/windows. +* :ghpull:`20302`: Further remove use of meshWidth, meshHeight in QuadMesh. +* :ghpull:`20101`: Fix ``Text`` class bug when ``font`` argument is provided without ``math_fontfamily`` +* :ghpull:`15436`: Allow imshow from float16 data +* :ghpull:`20299`: Simplify tfm parsing. +* :ghpull:`20290`: Support imshow(). +* :ghpull:`20303`: Remove tilde in code links where not necessary +* :ghpull:`19873`: Allow changing the vertical axis in 3d plots +* :ghpull:`19558`: Use luatex in --luaonly mode to query kpsewhich. +* :ghpull:`20301`: Clarify the effect of PolygonCollection properties on Quiver +* :ghpull:`20235`: Warn user when mathtext font is used for ticks +* :ghpull:`20237`: Make QuadMesh arguments with defaults keyword_only +* :ghpull:`20054`: Enh better colorbar axes +* :ghpull:`20164`: Auto-generate required kwdoc entries into docstring.interpd. +* :ghpull:`19677`: Convert axis limit units in Qt plot options widget +* :ghpull:`14913`: Reimplement NonUniformImage, PcolorImage in Python, not C. +* :ghpull:`20295`: Replace text._wrap_text by _cm_set(). +* :ghpull:`19859`: Write data parameter docs as regular parameter not as note +* :ghpull:`20273`: Fix cursor with toolmanager on GTK3. +* :ghpull:`20288`: Small markup fixes in api docs. +* :ghpull:`20276`: Tiny fixes to mathtext/usetex tutorials. +* :ghpull:`20084`: Add legend.labelcolor in rcParams +* :ghpull:`19253`: Improve font spec for SVG font referencing. +* :ghpull:`20278`: Deprecate public access to certain texmanager attributes. +* :ghpull:`19375`: Don't composite path-clipped image; forward suppressComposite as needed. +* :ghpull:`20190`: Simplify handling of uncomparable formats in tests. +* :ghpull:`20277`: Fix ordering of tex font usepackages. +* :ghpull:`20279`: Slightly reword intros of mpl_toolkits API docs. +* :ghpull:`20272`: De-duplicate fonts in LaTeX preamble. +* :ghpull:`15604`: Deprecate auto-removal of grid by pcolor/pcolormesh. +* :ghpull:`20193`: Simplify HostAxes.draw and its interaction with ParasiteAxes. +* :ghpull:`19441`: Make backend_gtk3foo importable on headless environments. +* :ghpull:`20126`: Simplify font_manager font enumeration logic. +* :ghpull:`19869`: Factor out x/y lo/hi handling in errorbar. +* :ghpull:`20173`: Rename (with deprecation) first parameter of grid() from b to visible. +* :ghpull:`19499`: Fully fold overset/underset into _genset. +* :ghpull:`20268`: Api pcolorargs deprecation +* :ghpull:`20264`: Fix blitting selector +* :ghpull:`20081`: Limit documenting special members to __call__ +* :ghpull:`20245`: MAINT: Removing deprecated ``offset_position`` from Collection +* :ghpull:`20218`: Update Axes showcase in "Embedding in Tk" example +* :ghpull:`20019`: Example: Cursor widget with text +* :ghpull:`20242`: Add comments and format Axis._get_coord_info +* :ghpull:`20207`: Move axisartist towards using standard Transforms. +* :ghpull:`20247`: Explicitly reject black autoformatting. +* :ghpull:`20217`: ci: Export sphinx-gallery run results to CircleCI. +* :ghpull:`20238`: Clarify docstring of ScalarMappable.set/get_array() +* :ghpull:`20239`: Style tables in style guide +* :ghpull:`19894`: Remove deprecated Qt4 backends +* :ghpull:`19937`: Add washing machine to Axes3D +* :ghpull:`20233`: Add a Ubuntu 20.04 / Python 3.9 CI run +* :ghpull:`20227`: Adding an equals method to colormaps +* :ghpull:`20216`: Documentation Style Guide for contributors +* :ghpull:`20222`: Fix C coverage +* :ghpull:`20221`: DOC: clarify that savefig(..., transparent=False) has no effect +* :ghpull:`20047`: Add labels parameter to set_ticks() +* :ghpull:`20118`: Convert FontEntry to a data class +* :ghpull:`19167`: Add support for HiDPI in TkAgg on Windows +* :ghpull:`18397`: fix cmr10 negative sign in cmsy10 (RuntimeWarning: Glyph 8722 missing) +* :ghpull:`20170`: SubplotParams.validate-associated fixes. +* :ghpull:`19467`: Shorten the implementation of violin(). +* :ghpull:`12226`: FIX: pcolor/pcolormesh honour edgecolors kwarg when facecolors is set 'none' +* :ghpull:`18870`: Expand ScalarMappable.set_array to accept array-like inputs +* :ghpull:`20073`: Support SubFigures in AxesDivider. +* :ghpull:`20209`: Deprecate cbook.report_memory. +* :ghpull:`20211`: Use check_getitem in legend location resolution. +* :ghpull:`20206`: Cleanup axisartist in preparation for future changes. +* :ghpull:`20191`: Small simplifications to FloatingAxesBase. +* :ghpull:`20189`: Add tests for ginput and waitforbuttonpress. +* :ghpull:`20199`: Make set_marker{edge,face}color(None) more consistent. +* :ghpull:`16943`: Changing get_cmap to return copies of the registered colormaps. +* :ghpull:`19483`: MNT: deprecate epoch2num/num2epoch +* :ghpull:`20201`: Simplify _process_plot_var_args.set_prop_cycle. +* :ghpull:`20197`: Speedup Line2D marker color setting. +* :ghpull:`20194`: Fix markup on MEP22. +* :ghpull:`20198`: Fix validation of Line2D color. +* :ghpull:`20046`: Deprecation warning +* :ghpull:`20144`: More tight_layout cleanups +* :ghpull:`20105`: Shorten Curve arrowstyle implementations. +* :ghpull:`19401`: Simplify axisartist line clipping. +* :ghpull:`19260`: Update round fix +* :ghpull:`20196`: Replaced links to colormap packages with link to third-party packages list in MPL docs +* :ghpull:`18819`: Usage guide edit +* :ghpull:`18346`: Soft-deprecate Axes.plot_date() +* :ghpull:`20187`: Merge v3.4.x up into master +* :ghpull:`15333`: Enh: DivergingNorm Fair +* :ghpull:`20188`: Remove 3.3 deprecations in cbook. +* :ghpull:`20177`: Fix broken test re: polar tick visibility. +* :ghpull:`20026`: DOC: move third-party packages to new page +* :ghpull:`19994`: Don't hide shared "x/y"ticklabels for grids of non-rectilinear axes. +* :ghpull:`20150`: Rename mosaic layout +* :ghpull:`19369`: Add Artist._cm_set for temporarily setting an Artist property. +* :ghpull:`15889`: Add svg logo icon +* :ghpull:`20140`: DOC: make 2x versions of all gallery figures +* :ghpull:`20155`: Fix wheel builds on CI +* :ghpull:`19951`: Convert Qhull wrapper to C++ and array_view +* :ghpull:`19918`: Cleanup some consistency in contour extensions +* :ghpull:`20153`: Fix wheel builds on CI +* :ghpull:`19363`: Create box3d example +* :ghpull:`20129`: Cleanup some "variable assigned but not used" lints. +* :ghpull:`20107`: Support full-sharex/y in subplot_mosaic. +* :ghpull:`20094`: Switch _auto_adjust_subplotpars to take rowspan/colspan as input. +* :ghpull:`16368`: Improve warning for unsupported scripts. +* :ghpull:`19660`: Allow PolygonSelector points to be removed +* :ghpull:`16291`: Split Norm and LinearNorm up +* :ghpull:`20119`: Cleanup flake8 exceptions for examples +* :ghpull:`20109`: Fix trailing text in doctest-syntax plot_directive. +* :ghpull:`19538`: Speedup pdftex.map parsing. +* :ghpull:`20003`: Bump minimum NumPy to 1.17 +* :ghpull:`20074`: Copy-edit axes_grid tutorial. +* :ghpull:`20124`: Remove workaround unneeded on Py3.7+, which we require now. +* :ghpull:`20120`: Cleanup subsetting tool. +* :ghpull:`20108`: Skip back-and-forth between pixels and points in contour code. +* :ghpull:`20106`: Shorten bracket arrowstyle docs. +* :ghpull:`20090`: Cleanup anchored_artists, inset_locator docstrings. +* :ghpull:`20097`: Use nullcontext more as do-nothing context manager. +* :ghpull:`20095`: Remove 3.3 ticker deprecations +* :ghpull:`20064`: Expire deprecation of AxesDivider defaulting to zero pads. +* :ghpull:`20091`: Cleanup tight_layout. +* :ghpull:`20069`: Don't make VBoxDivider inherit from HBoxDivider. +* :ghpull:`20078`: Remove some usages of OrderedDict +* :ghpull:`20077`: Expire Artist.set() property reordering +* :ghpull:`20070`: Harmonize descriptions of the 'anchor' parameter. +* :ghpull:`20011`: Move development dependencies to dependencies page +* :ghpull:`20072`: Improve labeling in simple_axes_divider1 example. +* :ghpull:`20063`: Deprecate some untested, never used axes_grid1 methods. +* :ghpull:`20065`: Deprecate AxesDivider.append_axes(..., add_to_figure=True). +* :ghpull:`20066`: Cleanup axes_divider docstrings, and detail calculations. +* :ghpull:`20059`: Include left and right titles for labeling axes in qt axes selector. +* :ghpull:`20052`: Remove axes_grid/axisartist APIs deprecated in Matplotlib 3.3. +* :ghpull:`18807`: make FancyArrow animatable +* :ghpull:`15281`: Don't use ImageGrid in demo_text_rotation_mode. +* :ghpull:`20051`: Remove offsetbox APIs deprecated in Matplotlib 3.3. +* :ghpull:`14854`: Improved dev installation documentation +* :ghpull:`18900`: Enh better colorbar axes +* :ghpull:`20042`: DOC: fix typos +* :ghpull:`13860`: Deprecate {Locator,Formatter}.set_{{view,data}_interval,bounds}. +* :ghpull:`20028`: Shorten the repr of scaling transforms. +* :ghpull:`20027`: Fix axvspan for drawing slices on polar plots. +* :ghpull:`20024`: Small fixes to latex-related docs. +* :ghpull:`20023`: Simplify _redo_transform_rel_fig. +* :ghpull:`20012`: Fix default theta tick locations for non-full-circle polar plots. +* :ghpull:`20021`: DOC: fix typos +* :ghpull:`20013`: Move restriction of polar theta scales to ThetaAxis._set_scale. +* :ghpull:`20010`: DOC: fix heading level for plot_types/stats +* :ghpull:`20000`: Remove ax fixture from category tests. +* :ghpull:`20007`: Correct minor typos in legend.py and autoscale.py +* :ghpull:`20005`: DOC: Fix numpydoc syntax, and parameters names. +* :ghpull:`19996`: Small simplification to RadialLocator. +* :ghpull:`19968`: ENH: draw no output +* :ghpull:`19657`: Allow Selectors to be dragged from anywhere within their patch +* :ghpull:`19304`: Add legend title font properties +* :ghpull:`19977`: Fix doc build +* :ghpull:`19974`: CI: update the ssh key used to push the devdocs +* :ghpull:`9888`: Add an Annulus patch class +* :ghpull:`13680`: Update seaborn style +* :ghpull:`19967`: ENH: add user-facing no-output draw +* :ghpull:`19765`: ENH: use canvas renderer in draw +* :ghpull:`19525`: Don't create page transparency group in pdf output (for pdftex compat). +* :ghpull:`19952`: avoid implicit np.array -> float conversion +* :ghpull:`19931`: Remove now unused patches to ttconv. +* :ghpull:`19934`: Deprecate drawtype to RectangleSelector +* :ghpull:`19941`: Simplify 3D random walk example +* :ghpull:`19926`: Move custom scales/custom projections docs to module docstrings. +* :ghpull:`19898`: Remove 3.3 backend deprecations +* :ghpull:`19901`: Remove 3.3 rcParam deprecations +* :ghpull:`19900`: Remove 3.3 text deprecations +* :ghpull:`19922`: Remove 3.3 deprecated modules +* :ghpull:`19925`: Include projections.geo in api docs. +* :ghpull:`19924`: Discourage use of imread & improve its docs. +* :ghpull:`19866`: Switch to asciiart for boxplot illustration. +* :ghpull:`19912`: Add symlog to figureoptions scalings +* :ghpull:`19564`: Micro-optimize type1font loading +* :ghpull:`19623`: FIX: Contour lines rendered incorrectly when closed loops +* :ghpull:`19902`: Implement ``ArtistList.__[r]add__``. +* :ghpull:`19904`: Don't set zoom/pan cursor for non-navigatable axes. +* :ghpull:`19909`: Use unicode when interactively displaying 3d azim/elev. +* :ghpull:`19905`: pyplot: do not apply kwargs twice in to x/yticklabels +* :ghpull:`19126`: Move pixel ratio handling into FigureCanvasBase +* :ghpull:`19897`: DOC/MNT fix make clean for plot_types +* :ghpull:`19858`: Move Line2D units handling to Axes & deprecate "units finalize" signal. +* :ghpull:`19889`: Include length in ArtistList repr. +* :ghpull:`19887`: Fix E265 in test files. +* :ghpull:`19882`: Use ax.set() for a more compact notation of styling in plot types docs +* :ghpull:`17231`: Fix errobar order +* :ghpull:`19703`: DOC: new plot gallery +* :ghpull:`19825`: Factor out machinery for running subprocess tk tests. +* :ghpull:`19872`: Fix unit handling in errorbar for astropy. +* :ghpull:`19526`: Apply unit conversion early in errorbar(). +* :ghpull:`19855`: Correct handle default backend. +* :ghpull:`18216`: Combine Axes.{lines,images,collections,patches,text,tables} into single list +* :ghpull:`19853`: Consistent corner variables names in widgets.py +* :ghpull:`19575`: Deprecate Text.get_prop_tup. +* :ghpull:`19810`: Remove JPEG-specific parameters and rcParams. +* :ghpull:`19666`: Change dictionary to list of tuples to permit duplicate keys +* :ghpull:`19400`: Fix tk event coordinates in the presence of scrollbars. +* :ghpull:`19603`: Remove matplotlibrc.template. +* :ghpull:`19835`: Merge v3.4.x into master +* :ghpull:`19821`: Hide stderr output from subprocess call in test suite. +* :ghpull:`19819`: Correct small typos in _axes.py and legend.py +* :ghpull:`19795`: Remove usetex-related APIs deprecated in Matplotlib 3.3. +* :ghpull:`19789`: Fix zorder handling for OffsetBoxes and subclasses. +* :ghpull:`19796`: Expire ````keymap.all_axes````-related deprecations. +* :ghpull:`19806`: Remove outdated api changes notes. +* :ghpull:`19801`: Expire deprecation of mathtext.fallback_to_cm. +* :ghpull:`12744`: Explicit plotorder +* :ghpull:`19681`: Merge branch 'v3.4.x' into master +* :ghpull:`18971`: Switch to setuptools_scm. +* :ghpull:`19727`: DOC: simplify API index +* :ghpull:`19760`: Speed up _delete_parameter. +* :ghpull:`19756`: Minor cleanup of documentation guide +* :ghpull:`19752`: Cleanup backend_tools docstrings, and minor refactorings. +* :ghpull:`19552`: Remove scalarmappable private update attributes +* :ghpull:`19728`: Factor out clip-path attr handling in backend_svg. +* :ghpull:`19540`: Share subplots() label visibility handling with label_outer(). +* :ghpull:`19753`: Cleanup string formatting in backend_pgf. +* :ghpull:`19750`: Simplify maxdict implementation. +* :ghpull:`19749`: Remove unused _find_dedent_regex & _dedent_regex. +* :ghpull:`19751`: Update some matplotlib.lines docstrings. +* :ghpull:`13072`: ENH: add figure.legend; outside kwarg for better layout outside subplots +* :ghpull:`19740`: Minor backend docstring fixes. +* :ghpull:`19734`: Remove unused _fonts attribute in RendererSVG. +* :ghpull:`19733`: Reword AutoDateFormatter docs. +* :ghpull:`19718`: Small style fixes to matplotlibrc.template. +* :ghpull:`19679`: Add inheritance diagram to patches docs +* :ghpull:`19717`: Don't sort lexicographially entries in SVG output. +* :ghpull:`19716`: Fix colon placement in issue template. +* :ghpull:`19704`: Cleanup license page in docs +* :ghpull:`19487`: Deprecate unused \*args to print_. +* :ghpull:`19654`: Dedupe various method implementations using functools.partialmethod. +* :ghpull:`19655`: Deprecate Tick.apply_tickdir. +* :ghpull:`19653`: deprecate_privatize_attribute also works for privatizing methods. +* :ghpull:`19646`: Add angle setter/getter to Rectangle +* :ghpull:`19659`: Improve docs for rgba conversion +* :ghpull:`19641`: Fix Bbox.frozen() not copying minposx/minposy +* :ghpull:`19626`: Clean up E265 in examples. +* :ghpull:`19622`: Prefer Axes.remove() over Figure.delaxes() in docs. +* :ghpull:`19621`: Dedupe docstrings of Figure.{get_axes,axes}. +* :ghpull:`19600`: DOC: better intro for dates.py +* :ghpull:`19606`: Remove versionadded notes; correct doc link +* :ghpull:`19620`: Remove suggestion to remove rk4/rk45 integrators from streamplot. +* :ghpull:`19586`: DOC: more improve date example +* :ghpull:`19566`: add docstring to ax.quiver +* :ghpull:`19601`: Handle None entries in sys.modules. +* :ghpull:`19517`: Deprecate toplevel is_url, URL_REGEX helpers. +* :ghpull:`19570`: Dedupe part of error message in check_in_list. +* :ghpull:`14508`: Add force_zorder parameter +* :ghpull:`19585`: Deprecate trivial helpers in style.core. +* :ghpull:`19534`: BUG: fill_between with interpolate=True and NaN. +* :ghpull:`18887`: FIX: Generalize Colorbar Scale Handling +* :ghpull:`16788`: Adding png image return for inline backend figures with _repr_html_ + +Issues (187): + +* :ghissue:`21518`: [Bug]: Datetime axis with usetex is unclear +* :ghissue:`21509`: [Bug]: Text sometimes is missing when figure saved to EPS +* :ghissue:`21569`: [Bug]: AttributeError: 'NoneType' object has no attribute 'dpi' after drawing and removing contours inside artist +* :ghissue:`21612`: [Bug]: Security.md out of date +* :ghissue:`21608`: [Doc]: ``ax.voxels`` links to wrong method. +* :ghissue:`21528`: [Doc]: Outdated QT_API docs +* :ghissue:`21517`: [Bug]: this example shows ok on matplotlib-3.4.3, but not in matplotlib-3.5.0 master of october 30th +* :ghissue:`21548`: [Bug]: blocking_input +* :ghissue:`21552`: [Bug]: eventplot cannot handle multiple datetime-based series +* :ghissue:`21441`: [Bug]: axes(position = [...]) behavior +* :ghissue:`10346`: Passing clim as keyword argument to pcolormesh does not change limits. +* :ghissue:`21480`: [Bug]: Subfigure breaks for some ``Gridspec`` slices when using ``constrained_layout`` +* :ghissue:`20989`: [Bug]: regression with setting ticklabels for colorbars in matplotlib 3.5.0b1 +* :ghissue:`21474`: [Doc]: Suggestion to use PIL.image.open is not a 1:1 replacement for imread +* :ghissue:`19634`: Multicursor docstring missing a Parameters Section +* :ghissue:`20847`: [Bug]: Contourf not filling contours. +* :ghissue:`21300`: [Bug]: zooming in on contour plot gives false extra contour lines +* :ghissue:`21466`: [Bug]: EPS export shows hidden tick labels when using tex for text rendering +* :ghissue:`21463`: [Bug]: Plotting lables with Greek latters in math mode produces Parsing error when plt.show() runs +* :ghissue:`20534`: Document formatting for sections +* :ghissue:`21246`: [Doc]: Install info takes up too much room on new front page +* :ghissue:`21432`: [Doc]: Double clicking parameter name also highlights next item of text +* :ghissue:`21310`: [Bug]: contour on 3d plot fails if x and y are 1d and different lengths +* :ghissue:`18213`: Figure out why test_interactive_backend fails on Travis macOS +* :ghissue:`21090`: [MNT]: Should set_size_inches be updated to use device_pixel_ratio? +* :ghissue:`13948`: Allow colorbar.ax.set_ylim to set the colorbar limits? +* :ghissue:`21314`: Inconsistensy in ``pyplot.pcolormesh`` docstring regarding default value for ``shading`` +* :ghissue:`21320`: [Doc]: Incorrect image caption in imshow() example +* :ghissue:`21311`: [Doc]: dead link for agg +* :ghissue:`20929`: [Bug]: PyPy Win64 wheels use incorrect version +* :ghissue:`21202`: [Bug]: python3.7/site-packages/matplotlib/ft2font.so: Undefined symbol "FT_Done_Glyph" +* :ghissue:`20932`: Qt Ctrl-C broken on windows +* :ghissue:`21230`: [Doc]: [source] links is devdocs are broken +* :ghissue:`20906`: 3.5.0b1: ax.contour generates different artists +* :ghissue:`21161`: [Doc]: In new docs, "Usage guide" entry in the top menu does not link to the "Usage guide" +* :ghissue:`21016`: [Bug] Error: 'PathCollection' object has no attribute 'do_3d_projection' when doing contourf in 3d with extend = 'both' +* :ghissue:`21135`: [Doc]: Data parameter description is not always replaced +* :ghissue:`4132`: Support clim kwarg in pcolor-type plots +* :ghissue:`21110`: Qt swapping ctrl and cmd on OSX +* :ghissue:`20912`: [ENH]: data kwarg support for mplot3d +* :ghissue:`15005`: Cleanup API for setting ticks +* :ghissue:`21095`: [ENH]: A data-type check is missed in cm.ScalarMappable.set_array() +* :ghissue:`7711`: Colorbar: changing the norm does not update the Formatter +* :ghissue:`18925`: Removing axes created by twiny() leads to an error +* :ghissue:`21057`: [Bug]: distutils deprecation +* :ghissue:`21024`: [ENH]: Cairo backends do not fully support HiDPI +* :ghissue:`20811`: Python 3.10 manylinux wheels +* :ghissue:`11509`: On making the rc-validators function know the rcParam affected instance +* :ghissue:`20516`: Sketch params ignored when using PGF backend +* :ghissue:`20963`: [Bug]: broken 'proportional' colorbar when using contourf+cmap+norm+extend +* :ghissue:`13974`: [DOC] Undocumented behavior in streamplot +* :ghissue:`16251`: API changes are too hard to find in the rendered docs +* :ghissue:`20770`: [Doc]: How to replicate behaviour of ``plt.gca(projection=...)``? +* :ghissue:`17052`: Colorbar update error with clim change in multi_image.py example +* :ghissue:`4387`: make ``Normalize`` objects notifiy scalar-mappables on changes +* :ghissue:`20001`: rename fig.draw_no_output +* :ghissue:`20936`: [Bug]: edgecolor 'auto' doesn't work properly +* :ghissue:`20909`: [Bug]: Animation error message +* :ghissue:`6864`: Add release dates to what's new page +* :ghissue:`20905`: [Bug]: error plotting z-axis array with np.nan -- does not plot with cmap option (surface plot) +* :ghissue:`20618`: BUG: Lost functionality of interactive selector update +* :ghissue:`20791`: [Bug]: spines and ticklabels +* :ghissue:`20723`: Adding a legend to a ``SubFigure`` doesn't work +* :ghissue:`20637`: PyPy wheels are pinned to v3.3, so pypy-based wheels for latest versions are not available +* :ghissue:`19160`: pypy failures +* :ghissue:`20385`: Add ']->' , '<-[' arrowstyles +* :ghissue:`19016`: Move away from set_ticklabels() +* :ghissue:`20800`: [Bug]: Setting backend in custom style sheet raises UserWarning +* :ghissue:`20809`: [Bug]: \Cap and \Cup in mathtext are inconsistent +* :ghissue:`20762`: [Doc]: Add external resources to devdoc landing page +* :ghissue:`18490`: Add a method to access the list of registered colormaps +* :ghissue:`20666`: Interactive SpanSelector no longer notifies when the selector is removed by an "empty" click +* :ghissue:`20552`: Expose legend's line: ``legline._legmarker`` as public +* :ghissue:`18391`: Bug? Legend Picking Not Working on Marker +* :ghissue:`11357`: Unable to retrieve marker from legend handle +* :ghissue:`2035`: legend marker update bug +* :ghissue:`19748`: Incorrect & inconsistent coloring in .imshow() with LogNorm +* :ghissue:`18735`: imshow padding around NaN values +* :ghissue:`7928`: [Bug] backend_bases.key_press_handler sneakily uses digit keys +* :ghissue:`20802`: Add ability to disable callbacks temporarily +* :ghissue:`16470`: Inconsistent Corner Masking w/ plot_surface +* :ghissue:`12395`: Rendering issue occurs when plotting 3D surfaces at a discontinuity +* :ghissue:`8222`: matplotlib 3D surface - gaps / holes in surface +* :ghissue:`4941`: Axes3d plot_surface not supporting masked arrays? +* :ghissue:`487`: Plotting masked arrays with plot_surface() +* :ghissue:`20794`: [Doc]: "Bachelor's degrees by gender" example is more or less dufte +* :ghissue:`20557`: Have ``[Source]`` in api docs link to github +* :ghissue:`20754`: [Doc]: legend guide should be OO +* :ghissue:`17770`: animation.save and fig.savefig interfere with each other and raise StopIteration +* :ghissue:`20785`: [Bug]: Colorbar creation from pcolormesh with cell specific alpha values +* :ghissue:`19843`: collection with alpha + colorer +* :ghissue:`20698`: collections.Collections offset improvements +* :ghissue:`17774`: Cannot make Latex plots when Pandas dataframe has underscore in variable name +* :ghissue:`19884`: Better document Axes.set() +* :ghissue:`20760`: [Bug]: subfigure position shifts on y-axis when x kwarg added to supxlabel +* :ghissue:`20296`: colorbar set_ticklabels - text properties not working +* :ghissue:`18191`: PostScript Type42 embedding is broken in various ways +* :ghissue:`11303`: Using fonttype 42 will make the produced PDF size considerably larger when the image has Chinese characters +* :ghissue:`20735`: The top level of the docs needs modification +* :ghissue:`20684`: make_keyword_only doesn't work for pyplot-wrapped methods +* :ghissue:`20635`: DOC: Document patch deprecation +* :ghissue:`17473`: Issue with appearance of RectangleSelector +* :ghissue:`20616`: Type 42 chars beyond BMP not displayed in PDF +* :ghissue:`20658`: MAINT: CircleCI build merged PRs +* :ghissue:`18312`: Add easily comparable version info to toplevel +* :ghissue:`20665`: interactive SpanSelector incorrectly forces axes limits to include 0 +* :ghissue:`20614`: Missing kerning in PDFs with Type 42 font +* :ghissue:`20640`: Column direction breaks label mode L for AxesGrid. +* :ghissue:`20581`: Change in custom norm colour map display +* :ghissue:`20595`: Triple and quadruple dot Mathtext accents don't stack or align. +* :ghissue:`19755`: Avoid showing a black background before the plot is ready with Qt5agg backend +* :ghissue:`10235`: Why not get the same clear image on a high-resolution screen? +* :ghissue:`20479`: ColorbarAxes is an imperfect proxy for the Axes passed to Colorbar +* :ghissue:`18965`: Figure options with qt backend breaks +* :ghissue:`19256`: New Styling for Sliders +* :ghissue:`14148`: zorder ignored in mplot3d +* :ghissue:`20523`: plot_directive is confused by include directives, part 2 (context option) +* :ghissue:`17860`: Plot directive may be confused by ``..include::`` +* :ghissue:`19431`: Tricontour documentation and examples should be updated in line with contour +* :ghissue:`20508`: rcParams['axes.autolimit_mode'] = 'round_numbers' is broken +* :ghissue:`20289`: Simplify font setting in usetex mode +* :ghissue:`20370`: Test Coverage for TextBox +* :ghissue:`20522`: Improve 'Writing ReST Pages' section on docs +* :ghissue:`19259`: Set legend title font properties +* :ghissue:`20049`: add legend.labelcolor "argument" to mplstyle stylesheet +* :ghissue:`20452`: Wrong/not useful error message when plotting incompatible x and y +* :ghissue:`20266`: "$$" cannot be displayed by ax.text() +* :ghissue:`20517`: Wrong shape of Z in documentation of contour +* :ghissue:`19423`: Switch to pydata-sphinx-theme +* :ghissue:`20435`: Legend Text's ``axes`` attribute is ``None`` +* :ghissue:`20379`: Change name of variables in histogram example +* :ghissue:`20440`: Wrong text vertical position with LaTeX enabled +* :ghissue:`10042`: Inconsistent use of graphicx and color packages in LaTeX preambles +* :ghissue:`4482`: PGF Backend: "Dimension too large" error while processing log-scale plot +* :ghissue:`20324`: New colorbar doesn't handle norms without a scale properly... +* :ghissue:`17508`: Quadmesh.set_array should validate dimensions +* :ghissue:`20372`: Incorrect axes positioning in axes_grid.Grid with direction='column' +* :ghissue:`19419`: Dev version hard to check +* :ghissue:`17310`: Matplotlib git master version fails to pass serveral pytest's tests. +* :ghissue:`7742`: plot_date() after axhline() doesn't rescale axes +* :ghissue:`20322`: QuadMesh default for shading inadvertently changed. +* :ghissue:`9653`: SVG savefig + LaTeX extremely slow on macOS +* :ghissue:`20099`: ``fontset`` from ``mathtext`` throwing error after setting Text ``font=`` +* :ghissue:`18399`: How to get Quadmesh coordinates +* :ghissue:`15432`: Add support in matplotlib.pyplot.imshow for float16 +* :ghissue:`20298`: plt.quiver linestyle option doesn't work?..... +* :ghissue:`19075`: Qt backend's Figure options to support axis units +* :ghissue:`15039`: NonUniformImage wrong image when using large values for axis +* :ghissue:`18499`: Saving as a pdf ignores ``set_clip_path`` when there is more than one of them. +* :ghissue:`15600`: Grid disappear after pcolormesh apply +* :ghissue:`20080`: API docs currently include entries for class ``__dict__``, ``__module__``, ``__weakref__`` +* :ghissue:`20159`: Zoom in NavigationToolbar2Tk stops working after updating the canvas figure. +* :ghissue:`17007`: Computer Modern Glyph Error +* :ghissue:`19494`: Update azure ubuntu images to 18.04, or update texlive in CI +* :ghissue:`18841`: ScalarMappable should copy its input and allow non-arrays +* :ghissue:`20121`: Adding cmocean and CMasher to the colormaps tutorial +* :ghissue:`18154`: Deprecate plot_date() +* :ghissue:`7413`: Autoscaling has fundamental problems +* :ghissue:`19627`: Replace use of Python/C API with numpy::array_view in _tri.cpp and qhull_wrap.c +* :ghissue:`19111`: plot_directive errantly tries to run code +* :ghissue:`11007`: BUG: Plot directive fails if its content ends with a normal text line (sphinxext) +* :ghissue:`19929`: Selecting axes when customizing gives +* :ghissue:`19578`: bisect very hard with rcParam changes +* :ghissue:`19506`: Allow saving PDF files without a page group +* :ghissue:`19906`: symlog is not in scale setting +* :ghissue:`19568`: Contour lines are rendered incorrectly when closed loops +* :ghissue:`19890`: Should ArtistList implement ``__add__``? +* :ghissue:`14405`: ENH: Add HiDPI physical to logical pixel ratio property +* :ghissue:`17139`: errorbar doesn't follow plot order +* :ghissue:`18277`: Create new sphinx gallery page for "Chart Types" +* :ghissue:`15446`: the python script in Catalina dock icon display wrong +* :ghissue:`19848`: ValueError: Key backend: '' is not a valid value for backend +* :ghissue:`1622`: zorder is not respected by all parts of ``errorbar`` +* :ghissue:`17247`: Move towards making Axes.lines, Axes.patches, ... read-only views of a single child list. +* :ghissue:`19842`: UserWarning: "Trying to register the cmap '...' which already exists" is not very helpful. +* :ghissue:`7962`: pip interprets Matplotlib dev version as stable +* :ghissue:`19607`: Curves with same label not appearing in Figure options (only the last one) +* :ghissue:`17584`: NavigationToolbar2Tk behave unexpected when using it in with Tkinter Canvas +* :ghissue:`19838`: Unexpected behaviour of imshow default interpolation +* :ghissue:`7650`: anchored_artists don't support zorder argument +* :ghissue:`19687`: License doc cleanup +* :ghissue:`19635`: Multicursor updates to events for any axis +* :ghissue:`17967`: Document how to use mathtext to obtain unicode minus instead of dashes for negative numbers +* :ghissue:`8519`: Closed figures linger in memory +* :ghissue:`14175`: RFC: Allow users to force zorder in 3D plots +* :ghissue:`19464`: Quiver docs don't have a return section +* :ghissue:`18986`: fill_between issue with interpolation & NaN diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.5.1.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.5.1.rst new file mode 100644 index 0000000000000000000000000000000000000000..7eb37b769d6c12148d50af5164494386eaa99c55 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.5.1.rst @@ -0,0 +1,151 @@ +.. _github-stats-3-5-1: + +GitHub statistics for 3.5.1 (Dec 11, 2021) +========================================== + +GitHub statistics for 2021/11/16 (tag: v3.5.0) - 2021/12/11 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 29 issues and merged 84 pull requests. +The full list can be seen `on GitHub `__ + +The following 17 authors contributed 123 commits. + +* Antony Lee +* Constantine Evans +* David Stansby +* Elliott Sales de Andrade +* franzhaas +* Greg Lucas +* Hansin Ahuja +* Hood Chatham +* Jake Lishman +* Jody Klymak +* Matthias Bussonnier +* Ryan May +* Steffen Rehberg +* Sven Eschlbeck +* sveneschlbeck +* Thomas A Caswell +* Tim Hoffmann + +GitHub issues and pull requests: + +Pull Requests (84): + +* :ghpull:`21926`: Backport PR #21913 on branch v3.5.x (Make colorbar boundaries work again) +* :ghpull:`21924`: Backport PR #21861 on branch v3.5.x (DOC: Small formatting improvement to set_markevery) +* :ghpull:`21913`: Make colorbar boundaries work again +* :ghpull:`21922`: Backport PR #21753 on branch v3.5.x (DOC: update anatomy of figure) +* :ghpull:`21861`: DOC: Small formatting improvement to set_markevery +* :ghpull:`21919`: Fix use_data_coordinates docstring +* :ghpull:`21912`: Backport PR #21900 on branch v3.5.x (Include test notebooks in test package) +* :ghpull:`21900`: Include test notebooks in test package +* :ghpull:`21908`: Backport PR #21834 on branch v3.5.x (MAINT Fix signature qhull version function ) +* :ghpull:`21907`: Backport PR #21905 on branch v3.5.x (Fix image testing decorator in pytest importlib mode) +* :ghpull:`21906`: Backport PR #21773 on branch v3.5.x (FIX: Reset label of axis to center) +* :ghpull:`21834`: MAINT Fix signature qhull version function +* :ghpull:`21905`: Fix image testing decorator in pytest importlib mode +* :ghpull:`21773`: FIX: Reset label of axis to center +* :ghpull:`21902`: Backport PR #21884 on branch v3.5.x (FIX: be more careful about coercing unit-full containers to ndarray) +* :ghpull:`21884`: FIX: be more careful about coercing unit-full containers to ndarray +* :ghpull:`21899`: Backport PR #21859 on branch v3.5.x (Fix streamline plotting from upper edges of grid) +* :ghpull:`21859`: Fix streamline plotting from upper edges of grid +* :ghpull:`21896`: Backport PR #21890 on branch v3.5.x (Drop retina images when building PDF docs) +* :ghpull:`21891`: Backport PR #21887 on branch v3.5.x (Make figure target links relative) +* :ghpull:`21883`: Backport PR #21872 on branch v3.5.x (FIX: colorbars with NoNorm) +* :ghpull:`21872`: FIX: colorbars with NoNorm +* :ghpull:`21869`: Backport PR #21866 on branch v3.5.x (Shorten some inset_locator docstrings.) +* :ghpull:`21866`: Shorten some inset_locator docstrings. +* :ghpull:`21865`: Backport PR #21864 on branch v3.5.x (Delete "Load converter" example) +* :ghpull:`21864`: Delete "Load converter" example +* :ghpull:`21857`: Backport PR #21837 on branch v3.5.x (Display example figures in a single column) +* :ghpull:`21856`: Backport PR #21853 on branch v3.5.x (DOC: Fix Annotation arrow style reference example) +* :ghpull:`21853`: DOC: Fix Annotation arrow style reference example +* :ghpull:`21852`: Backport PR #21818 on branch v3.5.x (Fix collections coerce float) +* :ghpull:`21818`: Fix collections coerce float +* :ghpull:`21849`: Backport PR #21845 on branch v3.5.x (FIX: bbox subfigures) +* :ghpull:`21845`: FIX: bbox subfigures +* :ghpull:`21832`: Backport PR #21820 on branch v3.5.x (Drop setuptools-scm requirement in wheels) +* :ghpull:`21820`: Drop setuptools-scm requirement in wheels +* :ghpull:`21829`: Backport PR #21823 on branch v3.5.x (DOC: Misc rst syntax fixes) +* :ghpull:`21823`: DOC: Misc rst syntax fixes +* :ghpull:`21826`: Backport PR #21800 on branch v3.5.x (DOC: Update Basic Usage tutorial) +* :ghpull:`21814`: Manual backport of #21794 +* :ghpull:`21812`: Backport #21641 +* :ghpull:`21810`: Backport PR #21743 on branch v3.5.x (Clarify Annotation arrowprops docs) +* :ghpull:`21808`: Backport PR #21785 on branch v3.5.x (Fix ConciseDateFormatter offset during zoom) +* :ghpull:`21807`: Backport PR #21791 on branch v3.5.x (Refix check for manager presence in deprecated blocking_input.) +* :ghpull:`21806`: Backport PR #21663 on branch v3.5.x (Use standard subplot window in macosx backend) +* :ghpull:`21785`: Fix ConciseDateFormatter offset during zoom +* :ghpull:`21804`: Backport PR #21659 on branch v3.5.x (Fix PDF contents) +* :ghpull:`21791`: Refix check for manager presence in deprecated blocking_input. +* :ghpull:`21793`: Backport PR #21787 on branch v3.5.x (Fixes row/column mixup in GridSpec height_ratios documentation.) +* :ghpull:`21787`: Fixes row/column mixup in GridSpec height_ratios documentation. +* :ghpull:`21778`: Backport PR #21705 on branch v3.5.x (MNT: make print_figure kwarg wrapper support py311) +* :ghpull:`21779`: Backport PR #21751 on branch v3.5.x (FIX: manual colorbars and tight layout) +* :ghpull:`21777`: Backport PR #21758 on branch v3.5.x (FIX: Make sure a renderer gets attached to figure after draw) +* :ghpull:`21751`: FIX: manual colorbars and tight layout +* :ghpull:`21705`: MNT: make print_figure kwarg wrapper support py311 +* :ghpull:`21758`: FIX: Make sure a renderer gets attached to figure after draw +* :ghpull:`21775`: Backport PR #21771 on branch v3.5.x (DOC: fix missing ref) +* :ghpull:`21770`: Backport of PR #21631 on v3.5.x +* :ghpull:`21765`: Backport PR #21741 on branch v3.5.x (Reduce do_3d_projection deprecation warnings in external artists) +* :ghpull:`21764`: Backport PR #21762 on branch v3.5.x (FIX: align_x/ylabels) +* :ghpull:`21741`: Reduce do_3d_projection deprecation warnings in external artists +* :ghpull:`21762`: FIX: align_x/ylabels +* :ghpull:`21759`: Backport PR #21757 on branch v3.5.x (Fix doc typo.) +* :ghpull:`21704`: FIX: deprecation of render keyword to do_3d_projection +* :ghpull:`21730`: Backport PR #21727 on branch v3.5.x (Doc fix colormap inaccuracy) +* :ghpull:`21663`: Use standard subplot window in macosx backend +* :ghpull:`21725`: Backport PR #21681 on branch v3.5.x (Bind subplot_tool more closely to target figure.) +* :ghpull:`21665`: Include test notebooks in test package +* :ghpull:`21721`: Backport PR #21720 on branch v3.5.x (Fix compiler configuration priority for FreeType build) +* :ghpull:`21720`: Fix compiler configuration priority for FreeType build +* :ghpull:`21715`: Backport PR #21714 on branch v3.5.x (DOC: note renaming of config.cfg.template to mplconfig.cfg.template) +* :ghpull:`21706`: Backport PR #21703 on branch v3.5.x (Changed the link to the correct citing example) +* :ghpull:`21691`: Backport PR #21686 on branch v3.5.x (FIX: colorbar for horizontal contours) +* :ghpull:`21689`: Backport PR #21676 on branch v3.5.x (Fix boundary norm negative) +* :ghpull:`21686`: FIX: colorbar for horizontal contours +* :ghpull:`21681`: Bind subplot_tool more closely to target figure. +* :ghpull:`21676`: Fix boundary norm negative +* :ghpull:`21685`: Backport PR #21658 on branch v3.5.x (Validate that input to Poly3DCollection is a list of 2D array-like) +* :ghpull:`21684`: Backport PR #21662 on branch v3.5.x (FIX: put newline in matplotlibrc when setting default backend) +* :ghpull:`21658`: Validate that input to Poly3DCollection is a list of 2D array-like +* :ghpull:`21662`: FIX: put newline in matplotlibrc when setting default backend +* :ghpull:`21651`: Backport PR #21626 on branch v3.5.x (Added the definition of Deprecation and made Deprecation Process clearer) +* :ghpull:`21626`: Added the definition of Deprecation and made Deprecation Process clearer +* :ghpull:`21137`: Small cleanups to colorbar. + +Issues (29): + +* :ghissue:`21909`: [Bug]: Matplotlib is unable to apply the boundaries in the colorbar after updating to 3.5.0 +* :ghissue:`21654`: [Bug]: test_nbagg_01.ipynb not installed +* :ghissue:`21885`: [Bug]: test decorator breaks with new pytest importlib mode +* :ghissue:`21772`: [Bug]: cannot reset label of axis to center +* :ghissue:`21669`: [Bug]: Matplotlib 3.5 breaks unyt integration of error bars +* :ghissue:`21649`: [Bug]: Startpoints in streamplot fail on right and upper edges +* :ghissue:`21870`: [Bug]: Colormap + NoNorm only plots one color under ``matplotlib`` 3.5.0 +* :ghissue:`21882`: [Bug]: Colorbar does not work for negative values with contour/contourf +* :ghissue:`21803`: [Bug]: using ``set_offsets`` on scatter object raises TypeError +* :ghissue:`21839`: [Bug]: Top of plot clipped when using Subfigures without suptitle +* :ghissue:`21841`: [Bug]: Wrong tick labels and colorbar of discrete normalizer +* :ghissue:`21783`: [MNT]: wheel of 3.5.0 apears to depend on setuptools-scm which apears to be unintentional +* :ghissue:`21733`: [Bug]: Possible bug on arrows in annotation +* :ghissue:`21749`: [Bug]: Regression on ``tight_layout`` when manually adding axes for colorbars +* :ghissue:`19197`: Unexpected error after using Figure.canvas.draw on macosx backend +* :ghissue:`13968`: ``ax.get_xaxis().get_minorticklabels()`` always returns list of empty strings +* :ghissue:`7550`: Draw not caching with macosx backend +* :ghissue:`21740`: [Bug]: unavoidable ``DeprecationWarning`` when using ``Patch3D`` +* :ghissue:`15884`: DOC: Error in colormap manipulation tutorial +* :ghissue:`21648`: [Bug]: subplot parameter window appearing 1/4 size on macosx +* :ghissue:`21702`: [Doc]: Wrong link to the ready-made citation entry +* :ghissue:`21683`: [Bug]: add_lines broken for horizontal colorbars +* :ghissue:`21680`: [MNT]: macosx subplot parameters multiple windows +* :ghissue:`21679`: [MNT]: Close subplot_parameters window when main figure closes +* :ghissue:`21671`: [Bug]: 3.5.0 colorbar ValueError: minvalue must be less than or equal to maxvalue +* :ghissue:`21652`: [Bug]: ax.add_collection3d throws warning Mean of empty slice +* :ghissue:`21660`: [Bug]: mplsetup.cfg parsing issue +* :ghissue:`21668`: [Bug]: New plot directive error in 3.5.0 +* :ghissue:`21393`: [Doc]: describe deprecation process more explicitly diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.5.2.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.5.2.rst new file mode 100644 index 0000000000000000000000000000000000000000..66f53d8e3672535a5f39f96e07c24a646f9d673d --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.5.2.rst @@ -0,0 +1,335 @@ +.. _github-stats-3-5-2: + +GitHub statistics for 3.5.2 (May 02, 2022) +========================================== + +GitHub statistics for 2021/12/11 (tag: v3.5.1) - 2022/05/02 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 61 issues and merged 222 pull requests. +The full list can be seen `on GitHub `__ + +The following 30 authors contributed 319 commits. + +* Adeel Hassan +* Aitik Gupta +* Andrew Fennell +* andrzejnovak +* Antony Lee +* Clément Phan +* daniilS +* David Poznik +* David Stansby +* dependabot[bot] +* Edouard Berthe +* Elliott Sales de Andrade +* Greg Lucas +* Hassan Kibirige +* Jake VanderPlas +* Jay Stanley +* Jody Klymak +* MAKOMO +* Matthias Bussonnier +* Niyas Sait +* Oscar Gustafsson +* Pieter P +* Qijia Liu +* Quentin Peter +* Raphael Quast +* richardsheridan +* root +* Steffen Rehberg +* Thomas A Caswell +* Tim Hoffmann + +GitHub issues and pull requests: + +Pull Requests (222): + +* :ghpull:`22963`: Backport PR #22957 on branch v3.5.x (fix "is" comparison for np.array) +* :ghpull:`22951`: Backport PR #22946: FIX: Handle no-offsets in collection datalim +* :ghpull:`22957`: fix "is" comparison for np.array +* :ghpull:`22962`: Backport PR #22961 on branch v3.5.x (Raised macosx memory leak threshold) +* :ghpull:`22961`: Raised macosx memory leak threshold +* :ghpull:`22945`: FIX: Handle no-offsets in collection datalim +* :ghpull:`22946`: FIX: Handle no-offsets in collection datalim (alternative) +* :ghpull:`22944`: Backport PR #22907 on branch v3.5.x (Fix quad mesh cursor data) +* :ghpull:`22943`: Backport PR #22923 on branch v3.5.x (Fixed _upcast_err docstring and comments in _axes.py) +* :ghpull:`22907`: Fix quad mesh cursor data +* :ghpull:`22923`: Fixed _upcast_err docstring and comments in _axes.py +* :ghpull:`22876`: Backport PR #22560 on branch v3.5.x (Improve pandas/xarray/... conversion) +* :ghpull:`22942`: Backport PR #22933 on branch v3.5.x (Adjusted wording in pull request guidelines) +* :ghpull:`22941`: Backport PR #22898 on branch v3.5.x (Only set Tk scaling-on-map for Windows systems) +* :ghpull:`22935`: Backport PR #22002: Fix TkAgg memory leaks and test for memory growth regressions +* :ghpull:`22898`: Only set Tk scaling-on-map for Windows systems +* :ghpull:`22933`: Adjusted wording in pull request guidelines +* :ghpull:`22002`: Fix TkAgg memory leaks and test for memory growth regressions +* :ghpull:`22924`: Fix gtk4 incorrect import. +* :ghpull:`22922`: Backport PR #22904 on branch v3.5.x (Fixed typo in triage acknowledgment) +* :ghpull:`22904`: Fixed typo in triage acknowledgment +* :ghpull:`22890`: DOC: add ipykernel to list of optional dependencies +* :ghpull:`22878`: Backport PR #22871 on branch v3.5.x (Fix year offset not always being added) +* :ghpull:`22871`: Fix year offset not always being added +* :ghpull:`22844`: Backport PR #22313 on branch v3.5.x (Fix colorbar exponents) +* :ghpull:`22560`: Improve pandas/xarray/... conversion +* :ghpull:`22846`: Backport PR #22284 on branch v3.5.x (Specify font number for TTC font subsetting) +* :ghpull:`22284`: Specify font number for TTC font subsetting +* :ghpull:`22845`: Backport PR #22199 on branch v3.5.x (DOC: git:// is deprecated.) +* :ghpull:`22837`: Backport PR #22807 on branch v3.5.x (Replace quiver dpi callback with reinit-on-dpi-changed.) +* :ghpull:`22838`: Backport PR #22806 on branch v3.5.x (FIX: callback for subfigure uses parent) +* :ghpull:`22832`: Backport PR #22767 on branch v3.5.x (Fixed bug in find_nearest_contour) +* :ghpull:`22767`: Fixed bug in find_nearest_contour +* :ghpull:`22807`: Replace quiver dpi callback with reinit-on-dpi-changed. +* :ghpull:`22806`: FIX: callback for subfigure uses parent +* :ghpull:`22737`: Backport PR #22138: Fix clearing subfigures +* :ghpull:`22735`: MNT: prefer Figure.clear() as canonical over Figure.clf() +* :ghpull:`22783`: Backport PR #22732: FIX: maybe improve renderer dance +* :ghpull:`22748`: Backport PR #22628 on branch v3.5.x (Add RuntimeWarning guard around division-by-zero) +* :ghpull:`22732`: FIX: maybe improve renderer dance +* :ghpull:`22764`: Backport PR #22756 on branch v3.5.x (Use system distutils instead of the setuptools copy) +* :ghpull:`22780`: Backport PR #22766 on branch v3.5.x (FIX: account for constant deprecations in Pillow 9.1) +* :ghpull:`22781`: Backport PR #22776 on branch v3.5.x (Fix colorbar stealing from a single axes and with panchor=False.) +* :ghpull:`22782`: Backport PR #22774 on branch v3.5.x (Remove outdated doc for pie chart) +* :ghpull:`22774`: Remove outdated doc for pie chart +* :ghpull:`22776`: Fix colorbar stealing from a single axes and with panchor=False. +* :ghpull:`22766`: FIX: account for deprecations of constant in Pillow 9.1 +* :ghpull:`22756`: Use system distutils instead of the setuptools copy +* :ghpull:`22750`: Backport PR #22743: Fix configure_subplots with tool manager +* :ghpull:`22743`: Fix configure_subplots with tool manager +* :ghpull:`22628`: Add RuntimeWarning guard around division-by-zero +* :ghpull:`22736`: Backport PR #22719 on branch v3.5.x (Fix incorrect deprecation warning) +* :ghpull:`22719`: Fix incorrect deprecation warning +* :ghpull:`22138`: Fix clearing subfigures +* :ghpull:`22729`: Backport PR #22711 on branch v3.5.x (RangeSlider handle set_val bugfix) +* :ghpull:`22711`: RangeSlider handle set_val bugfix +* :ghpull:`22701`: Backport PR #22691 on branch v3.5.x (FIX: remove toggle on QuadMesh cursor data) +* :ghpull:`22723`: Backport PR #22716 on branch v3.5.x (DOC: set canonical) +* :ghpull:`22703`: Backport PR #22689 on branch v3.5.x (Fix path_effects to work on text with spaces only) +* :ghpull:`22689`: Fix path_effects to work on text with spaces only +* :ghpull:`22691`: FIX: remove toggle on QuadMesh cursor data +* :ghpull:`22696`: Backport PR #22693 on branch v3.5.x (Remove QuadMesh from mouseover set.) +* :ghpull:`22693`: Remove QuadMesh from mouseover set. +* :ghpull:`22647`: Backport PR #22429 on branch v3.5.x (Enable windows/arm64 platform) +* :ghpull:`22653`: Simplify FreeType version check to avoid packaging +* :ghpull:`22646`: Manual backport of pr 22635 on v3.5.x +* :ghpull:`22429`: Enable windows/arm64 platform +* :ghpull:`22635`: FIX: Handle inverted colorbar axes with extensions +* :ghpull:`22313`: Fix colorbar exponents +* :ghpull:`22619`: Backport PR #22611 on branch v3.5.x (FIX: Colorbars check for subplotspec attribute before using) +* :ghpull:`22618`: Backport PR #22617 on branch v3.5.x (Bump actions/checkout from 2 to 3) +* :ghpull:`22611`: FIX: Colorbars check for subplotspec attribute before using +* :ghpull:`22617`: Bump actions/checkout from 2 to 3 +* :ghpull:`22595`: Backport PR #22005: Further defer backend selection +* :ghpull:`22602`: Backport PR #22596 on branch v3.5.x (Fix backend in matplotlibrc if unset in mplsetup.cfg) +* :ghpull:`22596`: Fix backend in matplotlibrc if unset in mplsetup.cfg +* :ghpull:`22597`: Backport PR #22594 on branch v3.5.x (FIX: do not pass dashes to collections in errorbar) +* :ghpull:`22594`: FIX: do not pass dashes to collections in errorbar +* :ghpull:`22593`: Backport PR #22559 on branch v3.5.x (fix: fill stairs should have lw=0 instead of edgecolor="none") +* :ghpull:`22005`: Further defer backend selection +* :ghpull:`22559`: fix: fill stairs should have lw=0 instead of edgecolor="none" +* :ghpull:`22592`: Backport PR #22141 on branch v3.5.x (Fix check 1d) +* :ghpull:`22141`: Fix check 1d +* :ghpull:`22588`: Backport PR #22445 on branch v3.5.x (Fix loading tk on windows when current process has >1024 modules.) +* :ghpull:`22445`: Fix loading tk on windows when current process has >1024 modules. +* :ghpull:`22575`: Backport PR #22572 on branch v3.5.x (Fix issue with unhandled Done exception) +* :ghpull:`22578`: Backport PR #22038 on branch v3.5.x (DOC: Include alternatives to deprecations in the documentation) +* :ghpull:`22572`: Fix issue with unhandled Done exception +* :ghpull:`22557`: Backport PR #22549 on branch v3.5.x (Really fix wheel building on CI) +* :ghpull:`22549`: Really fix wheel building on CI +* :ghpull:`22548`: Backport PR #22540 on branch v3.5.x (Reorder text api docs.) +* :ghpull:`22540`: Reorder text api docs. +* :ghpull:`22542`: Backport PR #22534 on branch v3.5.x (Fix issue with manual clabel) +* :ghpull:`22534`: Fix issue with manual clabel +* :ghpull:`22501`: Backport PR #22499 on branch v3.5.x (FIX: make the show API on webagg consistent with others) +* :ghpull:`22499`: FIX: make the show API on webagg consistent with others +* :ghpull:`22500`: Backport PR #22496 on branch v3.5.x (Fix units in quick start example) +* :ghpull:`22496`: Fix units in quick start example +* :ghpull:`22493`: Backport PR #22483 on branch v3.5.x (Tweak arrow demo size.) +* :ghpull:`22492`: Backport PR #22476: FIX: Include (0, 0) offsets in scatter autoscaling +* :ghpull:`22483`: Tweak arrow demo size. +* :ghpull:`22476`: FIX: Include (0, 0) offsets in scatter autoscaling +* :ghpull:`22481`: Backport PR #22479 on branch v3.5.x (adds _enum qualifier for QColorDialog.ShowAlphaChannel. Closes #22471.) +* :ghpull:`22479`: adds _enum qualifier for QColorDialog.ShowAlphaChannel. Closes #22471. +* :ghpull:`22475`: Backport PR #22474 on branch v3.5.x (Clarify secondary_axis documentation) +* :ghpull:`22474`: Clarify secondary_axis documentation +* :ghpull:`22462`: Backport PR #22458 on branch v3.5.x (Fix Radar Chart Gridlines for Non-Circular Charts) +* :ghpull:`22456`: Backport PR #22375 on branch v3.5.x (Re-enable cibuildwheel on push) +* :ghpull:`22375`: Re-enable cibuildwheel on push +* :ghpull:`22443`: Backport PR #22442 on branch v3.5.x (CI: skip test to work around gs bug) +* :ghpull:`22442`: CI: skip test to work around gs bug +* :ghpull:`22441`: Backport PR #22434 on branch v3.5.x (DOC: imbalanced backticks.) +* :ghpull:`22436`: Backport PR #22431 on branch v3.5.x (Update Scipy intersphinx inventory link) +* :ghpull:`22438`: Backport PR #22430 on branch v3.5.x (fix method name in doc) +* :ghpull:`22434`: DOC: imbalanced backticks. +* :ghpull:`22426`: Backport PR #22398 on branch v3.5.x (Pin coverage to fix CI) +* :ghpull:`22428`: Backport PR #22368 on branch v3.5.x (Pin dependencies to fix CI) +* :ghpull:`22427`: Backport PR #22396 on branch v3.5.x (Clarify note in get_cmap()) +* :ghpull:`22396`: Clarify note in get_cmap() +* :ghpull:`22398`: Pin coverage to fix CI +* :ghpull:`22368`: Pin dependencies to fix CI +* :ghpull:`22358`: Backport PR #22349 on branch v3.5.x (Use latex as the program name for kpsewhich) +* :ghpull:`22349`: Use latex as the program name for kpsewhich +* :ghpull:`22348`: Backport PR #22346 on branch v3.5.x (Remove invalid ```` tag in ``animation.HTMLWriter``) +* :ghpull:`22346`: Remove invalid ```` tag in ``animation.HTMLWriter`` +* :ghpull:`22328`: Backport PR #22288 on branch v3.5.x (update documentation after #18966) +* :ghpull:`22288`: update documentation after #18966 +* :ghpull:`22325`: Backport PR #22283: Fixed ``repr`` for ``SecondaryAxis`` +* :ghpull:`22322`: Backport PR #22077 on branch v3.5.x (Fix keyboard event routing in Tk backend (fixes #13484, #14081, and #22028)) +* :ghpull:`22321`: Backport PR #22290 on branch v3.5.x (Respect ``position`` and ``group`` argument in Tk toolmanager add_toolitem) +* :ghpull:`22318`: Backport PR #22293 on branch v3.5.x (Modify example for x-axis tick labels at the top) +* :ghpull:`22319`: Backport PR #22279 on branch v3.5.x (Remove Axes sublists from docs) +* :ghpull:`22327`: Backport PR #22326 on branch v3.5.x (CI: ban coverage 6.3 that may be causing random hangs in fork test) +* :ghpull:`22326`: CI: ban coverage 6.3 that may be causing random hangs in fork test +* :ghpull:`22077`: Fix keyboard event routing in Tk backend (fixes #13484, #14081, and #22028) +* :ghpull:`22290`: Respect ``position`` and ``group`` argument in Tk toolmanager add_toolitem +* :ghpull:`22293`: Modify example for x-axis tick labels at the top +* :ghpull:`22311`: Backport PR #22285 on branch v3.5.x (Don't warn on grid removal deprecation if grid is hidden) +* :ghpull:`22310`: Backport PR #22294 on branch v3.5.x (Add set_cursor method to FigureCanvasTk) +* :ghpull:`22285`: Don't warn on grid removal deprecation if grid is hidden +* :ghpull:`22294`: Add set_cursor method to FigureCanvasTk +* :ghpull:`22309`: Backport PR #22301 on branch v3.5.x (FIX: repositioning axes labels: use get_window_extent instead for spines.) +* :ghpull:`22301`: FIX: repositioning axes labels: use get_window_extent instead for spines. +* :ghpull:`22307`: Backport PR #22306 on branch v3.5.x (FIX: ensure that used sub-packages are actually imported) +* :ghpull:`22306`: FIX: ensure that used sub-packages are actually imported +* :ghpull:`22283`: Fixed ``repr`` for ``SecondaryAxis`` +* :ghpull:`22275`: Backport PR #22254 on branch v3.5.x (Disable QuadMesh cursor data by default) +* :ghpull:`22254`: Disable QuadMesh cursor data by default +* :ghpull:`22269`: Backport PR #22265 on branch v3.5.x (Fix Qt enum access.) +* :ghpull:`22265`: Fix Qt enum access. +* :ghpull:`22259`: Backport PR #22256 on branch v3.5.x (Skip tests on the -doc branches) +* :ghpull:`22238`: Backport PR #22235 on branch v3.5.x (Run wheel builds on PRs when requested by a label) +* :ghpull:`22241`: Revert "Backport PR #22179 on branch v3.5.x (FIX: macosx check case-insensitive app name)" +* :ghpull:`22248`: Backport PR #22206 on branch v3.5.x (Improve formatting of "Anatomy of a figure") +* :ghpull:`22235`: Run wheel builds on PRs when requested by a label +* :ghpull:`22206`: Improve formatting of "Anatomy of a figure" +* :ghpull:`22220`: Backport PR #21833: Enforce backport conditions on v*-doc branches +* :ghpull:`22219`: Backport PR #22218 on branch v3.5.x (Fix typo in ``tutorials/intermediate/arranging_axes.py``) +* :ghpull:`22218`: Fix typo in ``tutorials/intermediate/arranging_axes.py`` +* :ghpull:`22217`: Backport PR #22209 on branch v3.5.x (DOC: Document default join style) +* :ghpull:`22209`: DOC: Document default join style +* :ghpull:`22214`: Backport PR #22208 on branch v3.5.x (Stop sorting artists in Figure Options dialog) +* :ghpull:`22215`: Backport PR #22177 on branch v3.5.x (Document ArtistList) +* :ghpull:`22177`: Document ArtistList +* :ghpull:`22208`: Stop sorting artists in Figure Options dialog +* :ghpull:`22199`: DOC: git:// is deprecated. +* :ghpull:`22210`: Backport PR #22202 on branch v3.5.x (PR: Fix merge of 18966) +* :ghpull:`22202`: PR: Fix merge of 18966 +* :ghpull:`22201`: Backport PR #22053 on branch v3.5.x (DOC: Document default cap styles) +* :ghpull:`22053`: DOC: Document default cap styles +* :ghpull:`22195`: Backport PR #22179 on branch v3.5.x (FIX: macosx check case-insensitive app name) +* :ghpull:`22192`: Backport PR #22190 on branch v3.5.x (DOC: Fix upstream URL for merge in CircleCI) +* :ghpull:`22188`: Backport PR #22187 on branch v3.5.x (Fix typo in ``axhline`` docstring) +* :ghpull:`22187`: Fix typo in ``axhline`` docstring +* :ghpull:`22185`: Backport PR #22184 on branch v3.5.x (Removed dev from 3.10-version) +* :ghpull:`22186`: Backport PR #21943 on branch v3.5.x (DOC: explain too many ticks) +* :ghpull:`21943`: DOC: explain too many ticks +* :ghpull:`22184`: Removed dev from 3.10-version +* :ghpull:`22168`: Backport PR #22144 on branch v3.5.x (Fix cl subgridspec) +* :ghpull:`22144`: Fix cl subgridspec +* :ghpull:`22155`: Backport PR #22082 on branch v3.5.x (Update both zoom/pan states on wx when triggering from keyboard.) +* :ghpull:`22082`: Update both zoom/pan states on wx when triggering from keyboard. +* :ghpull:`22153`: Backport PR #22147 on branch v3.5.x (Fix loading user-defined icons for Tk toolbar) +* :ghpull:`22152`: Backport PR #22135 on branch v3.5.x (Fix loading user-defined icons for Qt plot window) +* :ghpull:`22151`: Backport PR #22078 on branch v3.5.x (Prevent tooltips from overlapping buttons in NavigationToolbar2Tk (fixes issue mentioned in #22028)) +* :ghpull:`22135`: Fix loading user-defined icons for Qt plot window +* :ghpull:`22078`: Prevent tooltips from overlapping buttons in NavigationToolbar2Tk (fixes issue mentioned in #22028) +* :ghpull:`22147`: Fix loading user-defined icons for Tk toolbar +* :ghpull:`22136`: Backport PR #22132 on branch v3.5.x (TST: Increase fp tolerances for some images) +* :ghpull:`22132`: TST: Increase fp tolerances for some images +* :ghpull:`22121`: Backport PR #22116 on branch v3.5.x (FIX: there is no add_text method, fallback to add_artist) +* :ghpull:`22117`: Backport PR #21860 on branch v3.5.x (DOC: Update style sheet reference) +* :ghpull:`22116`: FIX: there is no add_text method, fallback to add_artist +* :ghpull:`22038`: DOC: Include alternatives to deprecations in the documentation +* :ghpull:`22074`: Backport PR #22066 on branch v3.5.x (FIX: Remove trailing zeros from offset significand) +* :ghpull:`22106`: Backport PR #22089: FIX: squash memory leak in colorbar +* :ghpull:`22089`: FIX: squash memory leak in colorbar +* :ghpull:`22101`: Backport PR #22099 on branch v3.5.x (CI: Disable numpy avx512 instructions) +* :ghpull:`22099`: CI: Disable numpy avx512 instructions +* :ghpull:`22095`: Backport PR #22083 on branch v3.5.x (Fix reference to Matplotlib FAQ in doc/index.rst) +* :ghpull:`22066`: FIX: Remove trailing zeros from offset significand +* :ghpull:`22072`: Backport PR #22071 on branch v3.5.x (Fix a small typo in docstring ("loation" --> "location")) +* :ghpull:`22071`: Fix a small typo in docstring ("loation" --> "location") +* :ghpull:`22070`: Backport PR #22069 on branch v3.5.x ([Doc] Fix typo in ``units.py`` documentation example) +* :ghpull:`22069`: [Doc] Fix typo in ``units.py`` documentation example +* :ghpull:`22067`: Backport PR #22064 on branch v3.5.x (DOC: Clarify y parameter in Axes.set_title) +* :ghpull:`22064`: DOC: Clarify y parameter in Axes.set_title +* :ghpull:`22049`: Backport PR #22048 on branch v3.5.x (Document how to prevent TeX from treating ``&``, ``#`` as special.) +* :ghpull:`22048`: Document how to prevent TeX from treating ``&``, ``#`` as special. +* :ghpull:`22047`: Backport PR #22044 on branch v3.5.x (Get correct source code link for decorated functions) +* :ghpull:`22044`: Get correct source code link for decorated functions +* :ghpull:`22024`: Backport PR #22009 on branch v3.5.x (FIX: Prevent set_alpha from changing color of legend patch) +* :ghpull:`22009`: FIX: Prevent set_alpha from changing color of legend patch +* :ghpull:`22019`: Backport PR #22018 on branch v3.5.x (BUG: fix handling of zero-dimensional arrays in cbook._reshape_2D) +* :ghpull:`22018`: BUG: fix handling of zero-dimensional arrays in cbook._reshape_2D +* :ghpull:`21996`: Backport PR #21990 on branch v3.5.x (Fix rubberbanding on wx+py3.10.) +* :ghpull:`21990`: Fix rubberbanding on wx+py3.10. +* :ghpull:`21987`: Backport PR #21862 on branch v3.5.x (DOC: Simplify markevery demo) +* :ghpull:`21969`: Backport PR #21948 on branch v3.5.x (Distinguish AbstractMovieWriter and MovieWriter in docs.) +* :ghpull:`21948`: Distinguish AbstractMovieWriter and MovieWriter in docs. +* :ghpull:`21953`: Backport PR #21946 on branch v3.5.x (DOC: fix interactive to not put Event Handling and Interactive Guide …) +* :ghpull:`21946`: DOC: fix interactive to not put Event Handling and Interactive Guide … + +Issues (61): + +* :ghissue:`22954`: [Doc]: v3.5.1 github stats are missing +* :ghissue:`22959`: [MNT]: macos-latest memory leak over threshold +* :ghissue:`22921`: [Bug]: Regression in animation from #22175 +* :ghissue:`22908`: [Bug]: QuadMesh get_cursor_data errors if no array is set +* :ghissue:`21901`: Suggested clarification of comments in errorbar helpers +* :ghissue:`22932`: [Doc]: small edits to the Pull request guidelines +* :ghissue:`22858`: [Bug]: FigureCanvasTkAgg call creates memory leak +* :ghissue:`20490`: Memory leaks on matplotlib 3.4.2 (and 3.4.0) +* :ghissue:`22900`: [Doc]: Typo in triage acknowledgment +* :ghissue:`22341`: [Bug]: GridSpec or related change between 3.4.3 and 3.5.1 +* :ghissue:`22472`: [Bug]: ConciseDateFormatter not showing year anywhere when plotting <12 months +* :ghissue:`22874`: [Bug]: Textbox doesn't accept input +* :ghissue:`21893`: [Bug]: ``backend_pdf`` gives ``TTLibError`` with ``pdf.fonttype : 42`` +* :ghissue:`22840`: [Bug]: Blank output EPS file when using latex and figure.autolayout = True +* :ghissue:`22762`: [Bug]: Issue with find_nearest_contour in contour.py +* :ghissue:`22823`: [Bug]: Changing Linestyle in plot window swaps some plotted lines +* :ghissue:`22804`: [Bug]: Quiver not working with subfigure? +* :ghissue:`22673`: [Bug]: tight_layout (version 3.5+) +* :ghissue:`21930`: [Bug]: EPS savefig messed up by 'figure.autolayout' rcParam on 3.5.0 +* :ghissue:`22753`: windows CI broken on azure +* :ghissue:`22088`: [Bug]: Tool Manager example broken +* :ghissue:`22624`: [Bug]: invalid value encountered with 'ortho' projection mode +* :ghissue:`22640`: [Bug]: Confusing deprecation warning when empty data passed to axis with category units +* :ghissue:`22137`: [Bug]: Cannot clear figure of subfigures +* :ghissue:`22706`: [Bug]: RangeSlider.set_val does not move the slider (only poly and value) +* :ghissue:`22727`: MAtplolib pan and zoom dead slow on new PC +* :ghissue:`22687`: [Bug]: Empty text or text with a newline at either end + path_effects crashes +* :ghissue:`22694`: Revert set_show_cursor_data +* :ghissue:`22520`: [Bug]: Slow lasso selector over QuadMesh collection +* :ghissue:`22648`: Add packaging to setup_requires? +* :ghissue:`22052`: [Bug]: invert_yaxis function cannot invert the "over value" in colorbar axes +* :ghissue:`22576`: [Bug]: ``inset_axes`` colorbar + ``tight_layout`` raises ``AttributeError`` +* :ghissue:`22590`: [Bug]: ValueError: Do not know how to convert "list" to dashes; when using axes errorbar. +* :ghissue:`21998`: [Bug]: Working with PyQt5, the different import order will make different result. +* :ghissue:`22330`: [Bug]: possible regression with pandas 1.4 with plt.plot when using a single column dataframe as the x argument +* :ghissue:`22125`: [Bug]: ``plt.plot`` thinks ``pandas.Series`` is 2-dimensional when nullable data type is used +* :ghissue:`22378`: [Bug]: TkAgg fails to find Tcl/Tk libraries in Windows for processes with a large number of modules loaded +* :ghissue:`22577`: [Bug]: Erroneous deprecation warning help message +* :ghissue:`21798`: [Bug]: Unhandled _get_renderer.Done exception in wxagg backend +* :ghissue:`22532`: [Issue]: Manually placing contour labels using ``clabel`` not working +* :ghissue:`22470`: [Bug]: Subsequent scatter plots work incorrectly +* :ghissue:`22471`: [Bug]: formlayout fails on PyQt6 due to the unqualified enum ShowAlphaChannel in class ColorButton +* :ghissue:`22473`: [Bug]: Secondary axis does not accept python builtins for transform +* :ghissue:`22384`: [Bug]: Curve styles gets mixed up when edited in the Curves Tab of Figure Options (Edit Axis) +* :ghissue:`22028`: [Bug]: mpl with py3.10.1 - Interactive figures - Constrain pan/zoom to x/y axis not work +* :ghissue:`13484`: Matplotlib keymap stop working after pressing tab +* :ghissue:`20130`: tk toolmanager add_toolitem fails to add tool to group other than the last one +* :ghissue:`21723`: [Bug]: Some styles trigger pcolormesh grid deprecation +* :ghissue:`22300`: [Bug]: Saving a fig with a colorbar using a ``TwoSlopeNorm`` sometimes results in 'posx and posy should be finite values' +* :ghissue:`22305`: [Bug]: Import Error in Matplotlib 3.5.1 +* :ghissue:`21917`: [Bug]: pcolormesh is not responsive in Matplotlib 3.5 +* :ghissue:`22094`: [Doc]: No documentation on ArtistList +* :ghissue:`21979`: [Doc]: Clarify default capstyle +* :ghissue:`22143`: [Bug]: ``constrained_layout`` merging similar subgrids +* :ghissue:`22131`: [Bug]: png icon image fails to load for manually defined tool buttons +* :ghissue:`22093`: [Bug]: AttributeError: 'AxesSubplot' object has no attribute 'add_text' +* :ghissue:`22085`: [Bug]: Memory leak with colorbar.make_axes +* :ghissue:`22065`: [Bug]: Additive offset with trailing zeros +* :ghissue:`15493`: common_texification misses & (ampersand) +* :ghissue:`22039`: [Doc]: [source] link for deprecated functions leads to _api/deprecation.py +* :ghissue:`22016`: [Bug]: matplotlib 3.3 changed how plt.hist handles iterables of zero-dimensional arrays. diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.5.3.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.5.3.rst new file mode 100644 index 0000000000000000000000000000000000000000..bafd6d5c27eb82f28fe855cb635e9afca143cc07 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.5.3.rst @@ -0,0 +1,127 @@ +.. _github-stats-3-5-3: + +GitHub statistics for 3.5.3 (Aug 10, 2022) +========================================== + +GitHub statistics for 2022/05/03 (tag: v3.5.2) - 2022/08/10 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 19 issues and merged 66 pull requests. +The full list can be seen `on GitHub `__ + +The following 20 authors contributed 99 commits. + +* Antony Lee +* Biswapriyo Nath +* David Gilbertson +* DWesl +* Elliott Sales de Andrade +* GavinZhang +* Greg Lucas +* Jody Klymak +* Kayran Schmidt +* Matthew Feickert +* Nickolaos Giannatos +* Oscar Gustafsson +* Ruth Comer +* SaumyaBhushan +* Scott Jones +* Scott Shambaugh +* tfpf +* Thomas A Caswell +* Tim Hoffmann +* wsykala + +GitHub issues and pull requests: + +Pull Requests (66): + +* :ghpull:`23591`: Backport PR #23549 on branch v3.5.x (Don't clip colorbar dividers) +* :ghpull:`23593`: STY: Fix whitespace error from new flake8 +* :ghpull:`23549`: Don't clip colorbar dividers +* :ghpull:`23528`: Backport PR #23523 on branch v3.5.x (TST: Update Quantity test class) +* :ghpull:`23523`: TST: Update Quantity test class +* :ghpull:`23508`: Add explicit registration of units in examples +* :ghpull:`23515`: Backport PR #23462: Fix AttributeError for pickle load of Figure class +* :ghpull:`23518`: Backport PR #23514 on branch v3.5.x (Fix doc build) +* :ghpull:`23517`: Backport PR #23511 on branch v3.5.x (supporting IBM i OS) +* :ghpull:`23511`: supporting IBM i OS +* :ghpull:`23462`: Fix AttributeError for pickle load of Figure class +* :ghpull:`23488`: Backport PR #23066 on branch v3.5.x (BLD: Define PyErr_SetFromWindowsErr on Cygwin.) +* :ghpull:`23066`: BLD: Define PyErr_SetFromWindowsErr on Cygwin. +* :ghpull:`23479`: Pin setuptools_scm on v3.5.x +* :ghpull:`22998`: Backport PR #22987 on branch v3.5.x (CI: bump test limit from tkagg on osx) +* :ghpull:`23478`: Backport PR #23476: FIX: reset to original DPI in getstate +* :ghpull:`23476`: FIX: reset to original DPI in getstate +* :ghpull:`23458`: Backport PR #23445 on branch v3.5.x (Compare thread native ids when checking whether running on main thread.) +* :ghpull:`23440`: Backport PR #23430 on branch v3.5.x (Fix divide by 0 runtime warning) +* :ghpull:`23430`: Fix divide by 0 runtime warning +* :ghpull:`23344`: Backport PR #23333: Fix errorbar handling of nan. +* :ghpull:`23333`: Fix errorbar handling of nan. +* :ghpull:`23338`: Backport PR #23278: Remove internal use of get/set dpi +* :ghpull:`23331`: Backport PR #22835 on branch v3.5.x (Fix BoundaryNorm cursor data output) +* :ghpull:`22835`: Fix BoundaryNorm cursor data output +* :ghpull:`23292`: Backport PR #23232 on branch v3.5.x (Fix passing stem markerfmt positionally when locs are not given) +* :ghpull:`23275`: Backport PR #23260 on branch v3.5.x (Fix Colorbar extend patches to have correct alpha) +* :ghpull:`23312`: Pin to an older pydata-sphinx-theme for v3.5.x +* :ghpull:`23278`: Remove internal use of get/set dpi +* :ghpull:`23232`: Fix passing stem markerfmt positionally when locs are not given +* :ghpull:`22865`: Fix issue with colorbar extend and drawedges +* :ghpull:`23260`: Fix Colorbar extend patches to have correct alpha +* :ghpull:`23245`: Backport PR #23144 on branch v3.5.x (Only import setuptools_scm when we are in a matplotlib git repo) +* :ghpull:`23144`: Only import setuptools_scm when we are in a matplotlib git repo +* :ghpull:`23242`: Backport PR #23203 on branch v3.5.x (Honour ``panchor`` keyword for colorbar on subplot) +* :ghpull:`23203`: Honour ``panchor`` keyword for colorbar on subplot +* :ghpull:`23228`: Backport PR #23209 on branch v3.5.x (Fix the vertical alignment of overunder symbols.) +* :ghpull:`23209`: Fix the vertical alignment of overunder symbols. +* :ghpull:`23184`: Backport PR #23174: Make sure SubFigure has _cachedRenderer +* :ghpull:`23194`: Backport PR #23095: Try to unbreak CI by xfailing OSX Tk tests +* :ghpull:`23113`: Backport PR #23057 and #23106 +* :ghpull:`23185`: Backport PR #23168 on branch v3.5.x (Corrected docstring for artist.Artist.set_agg_filter) +* :ghpull:`23168`: Corrected docstring for artist.Artist.set_agg_filter +* :ghpull:`23174`: Make sure SubFigure has _cachedRenderer +* :ghpull:`23110`: Tweak subprocess_run_helper. +* :ghpull:`23138`: Backport PR #23137 on branch v3.5.x (DOC fix typo) +* :ghpull:`23137`: DOC fix typo +* :ghpull:`23125`: Backport PR #23122 on branch v3.5.x (Remove redundant rcparam default) +* :ghpull:`23120`: Backport PR #23115 on branch v3.5.x (DOC fixed duplicate/wrong default) +* :ghpull:`23095`: Try to unbreak CI by xfailing OSX Tk tests +* :ghpull:`23106`: Reuse subprocess_run_helper in test_pylab_integration. +* :ghpull:`23112`: Backport PR #23111 on branch v3.5.x (Fix _g_sig_digits for value<0 and delta=0.) +* :ghpull:`23111`: Fix _g_sig_digits for value<0 and delta=0. +* :ghpull:`23057`: FIX: ensure switching the backend installs repl hook +* :ghpull:`23075`: Backport PR #23069 on branch v3.5.x (TST: forgive more failures on pyside2 / pyside6 cross imports) +* :ghpull:`23069`: TST: forgive more failures on pyside2 / pyside6 cross imports +* :ghpull:`22981`: Backport PR #22979 on branch v3.5.x (Skip additional backend tests on import error) +* :ghpull:`23064`: Backport PR #22975 on branch v3.5.x (MNT: fix __array__ to numpy) +* :ghpull:`22975`: MNT: fix __array__ to numpy +* :ghpull:`23058`: Backport PR #23051 on branch v3.5.x (Fix variable initialization due to jump bypassing it) +* :ghpull:`23051`: Fix variable initialization due to jump bypassing it +* :ghpull:`23010`: Backport PR #23000 on branch v3.5.x (Additional details on VS install on installation page) +* :ghpull:`22995`: Backport PR #22994 on branch v3.5.x (Docs: ignore >>> on code prompts on documentation prompts) +* :ghpull:`23001`: CI: Add trivial pre-commit.ci config to avoid CI failure +* :ghpull:`22987`: CI: bump test limit from tkagg on osx +* :ghpull:`22979`: Skip additional backend tests on import error + +Issues (19): + +* :ghissue:`22864`: [Bug]: Colorbar with drawedges=True and extend='both' does not draw edges at extremities +* :ghissue:`23382`: [TST] Upcoming dependency test failures +* :ghissue:`23470`: [Bug]: fig.canvas.mpl_connect in 3.5.2 not registering events in jupyter lab unless using widget pan or zoom controls +* :ghissue:`22997`: [Bug]: Cygwin build fails due to use of Windows-only functions in _tkagg.cpp +* :ghissue:`23471`: [Bug]: DPI of a figure is doubled after unpickling on M1 Mac +* :ghissue:`23050`: [Doc]: Docstring for artist.Artist.set_agg_filter is incorrect +* :ghissue:`23307`: [Bug]: PEX warns about missing ``setuptools`` from ``install_requires`` in matplotlib +* :ghissue:`23330`: [Bug]: Missing values cause exception in errorbar plot +* :ghissue:`21915`: [Bug]: scalar mappable format_cursor_data crashes on BoundarNorm +* :ghissue:`22970`: [Bug]: Colorbar extend patches do not have correct alpha +* :ghissue:`23114`: [Bug]: matplotlib __init__.py checks for .git folder 2 levels up, then errors due to setup tools_scm +* :ghissue:`23157`: [Bug]: colorbar ignores keyword panchor=False +* :ghissue:`23229`: [Bug]: matplotlib==3.5.2 breaks ipywidgets +* :ghissue:`18085`: vertical alignment of \sum depends on the presence of subscripts and superscripts +* :ghissue:`23173`: [Bug]: Crash when adding clabels to subfigures +* :ghissue:`23108`: [Bug]: Imshow with all negative values leads to math domain errors. +* :ghissue:`23042`: [Bug]: Figures fail to redraw with IPython +* :ghissue:`23004`: [Bug]: test failure of test_cross_Qt_imports in 3.5.2 +* :ghissue:`22973`: [Bug]: v3.5.2 causing plot to crash when plotting object with ``__array__`` method diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.6.0.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.6.0.rst new file mode 100644 index 0000000000000000000000000000000000000000..6764c78177411425e9274698b5aa5b3f6949dba2 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.6.0.rst @@ -0,0 +1,1292 @@ +.. _github-stats-3-6-0: + +GitHub statistics for 3.6.0 (Sep 15, 2022) +========================================== + +GitHub statistics for 2021/11/16 (tag: v3.5.0) - 2022/09/15 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 202 issues and merged 894 pull requests. +The full list can be seen `on GitHub `__ + +The following 174 authors contributed 4425 commits. + +* Abhishek K M +* Adeel Hassan +* agra +* Aitik Gupta +* ambi7 +* Andras Deak +* Andres Martinez +* Andrew Fennell +* andrzejnovak +* Andrés Martínez +* Anna Mastori +* AnnaMastori +* Ante Sikic +* Antony Lee +* arndRemy +* Ben Root +* Biswapriyo Nath +* cavesdev +* Clément Phan +* Clément Walter +* code-review-doctor +* Connor Cozad +* Constantine Evans +* Croadden +* daniilS +* Danilo Palumbo +* David Gilbertson +* David Ketcheson +* David Matos +* David Poznik +* David Stansby +* Davide Sandonà +* dependabot[bot] +* dermasugita +* Diego Solano +* Dimitri Papadopoulos +* dj4t9n +* Dmitriy Fishman +* DWesl +* Edouard Berthe +* eindH +* Elliott Sales de Andrade +* Eric Firing +* Eric Larson +* Eric Prestat +* Federico Ariza +* Felix Nößler +* Fernando +* Gajendra Pal +* gajendra0180 +* GavinZhang +* Greg Lucas +* hannah +* Hansin Ahuja +* Harshal Prakash Patankar +* Hassan Kibirige +* Haziq Khurshid +* Henry +* henrybeUM +* Hood +* Hood Chatham +* Ian Hunt-Isaak +* Ian Thomas +* igurin-invn +* ikhebgeenaccount +* Isha Mehta +* Jake Bowhay +* Jake Li +* Jake Lishman +* Jake VanderPlas +* Jakub Klus +* James Tocknell +* Jan-Hendrik Müller +* Jay Joshi +* Jay Stanley +* jayjoshi112711 +* Jeff Beck +* Jody Klymak +* Joel Frederico +* Joseph Fox-Rabinovitz +* Josh Soref +* Jouni K. Seppänen +* Kayran Schmidt +* kdpenner +* Kian Eliasi +* Kinshuk Dua +* kislovskiy +* KIU Shueng Chuan +* kjain +* kolibril13 +* krassowski +* Krish-sysadmin +* Leeh Peter +* lgfunderburk +* Liam Toney +* Lucas Ricci +* Luke Davis +* luz paz +* mackopes +* MAKOMO +* MalikIdreesHasa +* Marcin Swaltek +* Mario +* Mario Sergio Valdés Tresanco +* martinRenou +* Matthew Feickert +* Matthias Bussonnier +* Mauricio Collares +* MeeseeksMachine +* melissawm +* Mr-Milk +* Navid C. Constantinou +* Nickolaos Giannatos +* Nicolas P. Rougier +* Niyas Sait +* noatamir +* ojeda-e +* Olivier Gauthé +* Oscar Gustafsson +* patquem +* Philipp Rohde +* Pieter Eendebak +* Pieter P +* Péter Leéh +* Qijia Liu +* Quentin Peter +* Raphael Quast +* rditlar9 +* Richard Penney +* richardsheridan +* Rike-Benjamin Schuppner +* Robert Cimrman +* Roberto Toro +* root +* Ruth Comer +* Ruth G. N +* Ruth Nainggolan +* Ryan May +* Rémi Achard +* SaumyaBhushan +* Scott Jones +* Scott Shambaugh +* selormtamakloe +* Simon Hoxbro +* skywateryang +* Stefanie Molin +* Steffen Rehberg +* stone +* Sven Eschlbeck +* sveneschlbeck +* takimata +* tfpf +* Thomas A Caswell +* Tim Hoffmann +* Tobias Megies +* Tomas Hrnciar +* Tomasz Kuliński +* trichter +* unknown +* Uwe Hubert +* vfdev-5 +* Vishal Chandratreya +* Vishal Pankaj Chandratreya +* Vishnu V K +* vk0812 +* Vlad Korolev +* Will Qian +* William Qian +* wqh17101 +* wsykala +* yaaun +* Yannic Schroeder +* yuanx749 +* 渡邉 美希 + +GitHub issues and pull requests: + +Pull Requests (894): + +* :ghpull:`23814`: Consolidate release notes for 3.6 +* :ghpull:`23899`: Backport PR #23885 on branch v3.6.x (DOC: Rearrange navbar-end elements) +* :ghpull:`23898`: Backport PR #23892 on branch v3.6.x (DOC: Fix docs for linestyles in contour) +* :ghpull:`23885`: DOC: Rearrange navbar-end elements +* :ghpull:`23894`: Backport PR #23881 on branch v3.6.x (Fix Pillow compatibility in example) +* :ghpull:`23897`: Backport PR #23887 on branch v3.6.x (Add missing label argument to barh docs) +* :ghpull:`23892`: DOC: Fix docs for linestyles in contour +* :ghpull:`23887`: Add missing label argument to barh docs +* :ghpull:`23893`: Backport PR #23886 on branch v3.6.x (CI: prefer (older) binaries over (newer) sdists) +* :ghpull:`23881`: Fix Pillow compatibility in example +* :ghpull:`23886`: CI: prefer (older) binaries over (newer) sdists +* :ghpull:`23880`: Backport PR #23862 on branch v3.6.x (Remove triggering of deprecation warning in AnchoredEllipse) +* :ghpull:`23862`: Remove triggering of deprecation warning in AnchoredEllipse +* :ghpull:`23879`: Backport PR #23864 on branch v3.6.x (Correct and improve documentation for anchored artists) +* :ghpull:`23877`: Backport PR #23841 on branch v3.6.x (clarified that hist computes histogram on unbinned data) +* :ghpull:`23872`: Backport PR #23871 on branch v3.6.x (DOC: Fix formatting of pick event demo example) +* :ghpull:`23841`: clarified that hist computes histogram on unbinned data +* :ghpull:`23864`: Correct and improve documentation for anchored artists +* :ghpull:`23871`: DOC: Fix formatting of pick event demo example +* :ghpull:`23869`: Backport PR #23867 on branch v3.6.x (DOC: fix deprecation warnings in examples) +* :ghpull:`23867`: DOC: fix deprecation warnings in examples +* :ghpull:`23858`: Backport PR #23855 on branch v3.6.x (DOC: fix deprecation warnings) +* :ghpull:`23859`: Backport PR #23844 on branch v3.6.x (Further improve dev setup instructions) +* :ghpull:`23844`: Further improve dev setup instructions +* :ghpull:`23855`: DOC: fix deprecation warnings +* :ghpull:`23854`: Backport PR #23852 on branch v3.6.x (Fix cross-compiling internal freetype) +* :ghpull:`23852`: Fix cross-compiling internal freetype +* :ghpull:`23853`: Backport PR #23830 on branch v3.6.x (Start testing on Python 3.11) +* :ghpull:`23830`: Start testing on Python 3.11 +* :ghpull:`23851`: Backport PR #23850 on branch v3.6.x (removed single word in documenting doc) +* :ghpull:`23850`: removed single word in documenting doc +* :ghpull:`23848`: Backport PR #23843 on branch v3.6.x (Clarify that pycairo>=1.14.0 is needed.) +* :ghpull:`23843`: Clarify that pycairo>=1.14.0 is needed. +* :ghpull:`23842`: Backport PR #23840 on branch v3.6.x (Remove documentation for axes_grid) +* :ghpull:`23838`: Backport PR #23834 on branch v3.6.x (Revert "Refactor handling of tick and ticklabel visibility in Axis.clear") +* :ghpull:`23840`: Remove documentation for axes_grid +* :ghpull:`23837`: Backport PR #23833 on branch v3.6.x (Remove search field from sidebar) +* :ghpull:`23836`: Backport PR #23823 on branch v3.6.x ([DOC] Improve dev setup description) +* :ghpull:`23834`: Revert "Refactor handling of tick and ticklabel visibility in Axis.clear" +* :ghpull:`23833`: Remove search field from sidebar +* :ghpull:`23823`: [DOC] Improve dev setup description +* :ghpull:`23822`: Backport PR #23813 on branch v3.6.x (Triplot duplicated label) +* :ghpull:`23813`: Triplot duplicated label +* :ghpull:`23811`: Backport PR #23805 on branch v3.6.x (sphinxext: Do not copy plot_directive.css's metadata) +* :ghpull:`23805`: sphinxext: Do not copy plot_directive.css's metadata +* :ghpull:`23800`: Backport PR #23785 on branch v3.6.x (FIX: ensure type stability for missing cmaps in ``set_cmap``) +* :ghpull:`23799`: Backport PR #23790 on branch v3.6.x (DOC: Add cache busting to all static assets) +* :ghpull:`23785`: FIX: ensure type stability for missing cmaps in ``set_cmap`` +* :ghpull:`23790`: DOC: Add cache busting to all static assets +* :ghpull:`23791`: Backport PR #23774 on branch v3.6.x (Correct rcParams-name in AutoDateFormatter doc-string) +* :ghpull:`23792`: Backport PR #23781 on branch v3.6.x (ci: Add plot types to sphinx-gallery artifacts) +* :ghpull:`23789`: Backport PR #23786 on branch v3.6.x (DOC: fontfallback works for most of the backends) +* :ghpull:`23788`: Backport PR #23784 on branch v3.6.x (DOC: Fix num2date docstring) +* :ghpull:`23786`: DOC: fontfallback works for most of the backends +* :ghpull:`23784`: DOC: Fix num2date docstring +* :ghpull:`23781`: ci: Add plot types to sphinx-gallery artifacts +* :ghpull:`23783`: Backport PR #23782 on branch v3.6.x (Remove ``Axes.cla`` from examples) +* :ghpull:`23782`: Remove ``Axes.cla`` from examples +* :ghpull:`23774`: Correct rcParams-name in AutoDateFormatter doc-string +* :ghpull:`23773`: Backport PR #23772 on branch v3.6.x (3d plots what's new cleanups) +* :ghpull:`23772`: 3d plots what's new cleanups +* :ghpull:`23765`: Backport PR #23762 on branch v3.6.x (FIX: legend handler warning too liberal) +* :ghpull:`23762`: FIX: legend handler warning too liberal +* :ghpull:`23759`: Backport PR #23686 on branch v3.6.x (Improve matplotlib.pyplot importtime by caching ArtistInspector) +* :ghpull:`23686`: Improve matplotlib.pyplot importtime by caching ArtistInspector +* :ghpull:`23756`: Backport PR #23569 on branch v3.6.x (Fix hidden xlabel bug in colorbar) +* :ghpull:`23755`: Backport PR #23742 on branch v3.6.x (FIX: unbreak ipympl) +* :ghpull:`23569`: Fix hidden xlabel bug in colorbar +* :ghpull:`23742`: FIX: unbreak ipympl +* :ghpull:`23752`: Backport PR #23750 on branch v3.6.x (Fix rcParams documentation) +* :ghpull:`23749`: Backport PR #23735 on branch v3.6.x (Correctly handle Axes subclasses that override cla) +* :ghpull:`23735`: Correctly handle Axes subclasses that override cla +* :ghpull:`23748`: Backport PR #23746 on branch v3.6.x (DOC: add numpydoc docstring + commentary to Axis.get_ticklocs) +* :ghpull:`23747`: Backport PR #23721 on branch v3.6.x (3d plot view angle documentation) +* :ghpull:`23746`: DOC: add numpydoc docstring + commentary to Axis.get_ticklocs +* :ghpull:`23721`: 3d plot view angle documentation +* :ghpull:`23744`: Backport PR #23740 on branch v3.6.x (Clarify error for colorbar with unparented mappable) +* :ghpull:`23741`: Backport PR #23674 on branch v3.6.x (Re-rename builtin seaborn styles to not include a dot.) +* :ghpull:`23740`: Clarify error for colorbar with unparented mappable +* :ghpull:`23674`: Re-rename builtin seaborn styles to not include a dot. +* :ghpull:`23738`: Backport PR #23639 on branch v3.6.x (Adding the new contributor meeting) +* :ghpull:`23739`: Backport PR #23712 on branch v3.6.x (FIX: do not try to help CPython with garbage collection) +* :ghpull:`23712`: FIX: do not try to help CPython with garbage collection +* :ghpull:`23639`: Adding the new contributor meeting +* :ghpull:`23732`: Backport PR #23729 on branch v3.6.x (Use cleaner recursion check in PyQt FigureCanvas' resizeEvent.) +* :ghpull:`23734`: Backport PR #23733 on branch v3.6.x (DOC: Update theme configuration for upcoming changes) +* :ghpull:`23733`: DOC: Update theme configuration for upcoming changes +* :ghpull:`23728`: Backport PR #23722 on branch v3.6.x (Restore deprecation class aliases in cbook) +* :ghpull:`23729`: Use cleaner recursion check in PyQt FigureCanvas' resizeEvent. +* :ghpull:`23726`: Backport PR #23711 on branch v3.6.x (Fix deprecation messages for vendoring unused things) +* :ghpull:`23722`: Restore deprecation class aliases in cbook +* :ghpull:`23727`: Backport PR #23724 on branch v3.6.x (Fix/harmonize spacing in dependencies.rst.) +* :ghpull:`23724`: Fix/harmonize spacing in dependencies.rst. +* :ghpull:`23711`: Fix deprecation messages for vendoring unused things +* :ghpull:`23715`: Backport PR #23708 on branch v3.6.x (Loosen up test_Normalize test) +* :ghpull:`23713`: Backport PR #23710 on branch v3.6.x (Fix cmap deprecations) +* :ghpull:`23708`: Loosen up test_Normalize test +* :ghpull:`23710`: Fix cmap deprecations +* :ghpull:`23696`: Backport PR #23695 on branch v3.6.x (Document polar handling of _interpolation_steps.) +* :ghpull:`23706`: Backport PR #23705 on branch v3.6.x (DOC: Added link to class under discussion) +* :ghpull:`23705`: DOC: Added link to class under discussion +* :ghpull:`23695`: Document polar handling of _interpolation_steps. +* :ghpull:`23668`: Api deprecate cmap functions +* :ghpull:`23049`: Add ``minor`` keyword argument to ``plt.x/yticks`` +* :ghpull:`23665`: Harmonize docstrings for boxstyle/connectionstyle/arrowstyle. +* :ghpull:`23636`: FIX: macosx flush_events should process all events +* :ghpull:`23555`: Uncamelcase offsetTrans in draw_path_collection. +* :ghpull:`23682`: Fix generated documentation for deprecated modules +* :ghpull:`23678`: Get rcParams from mpl +* :ghpull:`23571`: Simplify _bind_draw_path_function. +* :ghpull:`23673`: DOC: Highlight information about avoiding labels in legend +* :ghpull:`22506`: Replace MathtextBackend mechanism. +* :ghpull:`23340`: Set correct path for Arc +* :ghpull:`23562`: Fix issue with get_edgecolor and get_facecolor in 3D plots +* :ghpull:`23634`: make.bat: Don't override SPHINXOPTS/O from the environment +* :ghpull:`23675`: Deprecate helper functions in axis3d +* :ghpull:`23676`: MNT: Get rcParams from mpl +* :ghpull:`23677`: TST: Use article class when checking for pgf +* :ghpull:`23669`: CI: Azure update from ubuntu-18.04 to ubuntu-latest and ubuntu-20.04 +* :ghpull:`23670`: Add bar color demo. +* :ghpull:`23644`: Standardize edge-on axis locations when viewing primary 3d axis planes +* :ghpull:`23563`: Fix issue with drawing 3D lines where points are from nparray +* :ghpull:`23666`: MNT: Deprecate macosx prepare subplots tool +* :ghpull:`23572`: Deprecate ``get_grid_positions(..., raw=True)``. +* :ghpull:`23525`: Add functionality to label individual bars with Axes.bar() +* :ghpull:`23667`: Fix flake8 errors introduced by crossed PRs +* :ghpull:`23554`: MNT: Remove unused imports +* :ghpull:`23659`: Simplify/fix save_diff_image. +* :ghpull:`23663`: Small cleanups to _find_fonts_by_props. +* :ghpull:`23662`: Add tolerance to test failing on ppc64le +* :ghpull:`23623`: MNT: remove _gridspecs attribute on Figure classes +* :ghpull:`23654`: Reverts macosx change to ARC +* :ghpull:`23661`: Remove unused fontsize argument from private mathtext _get_info. +* :ghpull:`23655`: Merge branch v3.5.x into main +* :ghpull:`23658`: Increase tolerance on multi-font tests +* :ghpull:`23657`: Add eps to extension list in image triager +* :ghpull:`23656`: Fix broken link to MathML torture tests. +* :ghpull:`23649`: CI: Use anaconda-client v1.10.0 for upload of nightlies +* :ghpull:`23647`: Allow any color format to be used for axis3d.Axis.set_pane_color +* :ghpull:`23643`: Enable wheels for PyPy 3.8+ +* :ghpull:`23621`: DOC: update and extend fonts explanation +* :ghpull:`23612`: CI: try installing a different version of noto on OSX +* :ghpull:`23619`: add pikepdf and visual c++ dependency +* :ghpull:`23631`: Leave out ``barh`` from the basic plot types. +* :ghpull:`23637`: BLD: Add Python 3.11 builds to CI +* :ghpull:`23632`: Add discouraged admonitions +* :ghpull:`23620`: Doc update deps +* :ghpull:`23627`: Bump pypa/cibuildwheel from 2.8.1 to 2.9.0 +* :ghpull:`23628`: Change Title Case to Upper lower in templates +* :ghpull:`23206`: Change exception type for incorrect SVG date metadata +* :ghpull:`23387`: Remove setuptools_scm_git_archive dependency and add sdist test +* :ghpull:`23605`: Fix issues in examples, docs, and tutorials +* :ghpull:`23618`: [Doc]: Document the position parameter in apply_aspect() +* :ghpull:`23355`: Revert "Try to unbreak CI by xfailing OSX Tk tests" +* :ghpull:`23610`: TST: be more forgiving about IDing Noto +* :ghpull:`23609`: print version number when building docs +* :ghpull:`20832`: Implement multi-font embedding for PS Backend +* :ghpull:`20804`: Implement multi-font embedding for PDF Backend +* :ghpull:`23202`: MNT: Remove cached renderer from figure +* :ghpull:`23497`: Avoid gridspec in more examples +* :ghpull:`23602`: Editing "issues for new contributors" +* :ghpull:`23600`: DOC: view_init docstring for 3d axes primary view angles +* :ghpull:`23587`: BUG:datetime list starting with none +* :ghpull:`23559`: re-base of font fallback for pdf and eps output + SVG support +* :ghpull:`23557`: BLD: update the manylinux versions used +* :ghpull:`23596`: Minor cleanup of axes_grid1 +* :ghpull:`23594`: Expire deprecation on passing bytes to FT2Font.set_text +* :ghpull:`23435`: Add conda env to setup instructions +* :ghpull:`23574`: Move colorbar() doc to method itself. +* :ghpull:`23584`: Bump Ubuntu to 20.04 on GitHub Actions +* :ghpull:`23561`: Clean up code in tri +* :ghpull:`23582`: Cleanup axis3d.Axis.draw +* :ghpull:`23510`: Refactor Widget tests +* :ghpull:`20718`: Circle: Build docs in parallel. +* :ghpull:`22452`: ENH: add ability to remove layout engine +* :ghpull:`23516`: warning when scatter plot color settings discarded +* :ghpull:`23577`: apply_aspect cleanups +* :ghpull:`23575`: Cleanup parasite_simple example. +* :ghpull:`23567`: Remove noop setattr_cm. +* :ghpull:`23412`: Fix dash offset bug in Patch +* :ghpull:`21756`: MNT: Clean up some UTF strings and memory autorelease +* :ghpull:`23558`: MNT: Use UTF-8 string in macosx backend +* :ghpull:`23550`: Change exception types, improve argument checking, and cleanups in mpl_toolkits +* :ghpull:`23196`: Unify set_pickradius argument +* :ghpull:`20740`: Implement Font-Fallback in Matplotlib +* :ghpull:`22566`: Add rcparam for figure label size and weight +* :ghpull:`23551`: Remove transform arguments from _iter_collection +* :ghpull:`23444`: Deduplicate common parts in LatexManager.{__init__,_setup_latex_process} +* :ghpull:`23017`: [ENH] : Provide axis('equal') for Axes3D (replace PR #22705) +* :ghpull:`22950`: Simplify definition of mathtext symbols & correctly end tokens in mathtext parsing +* :ghpull:`23409`: Provide axis('equal') for Axes3D (replaces PR #23017) +* :ghpull:`23434`: Fix array-like linewidth for 3d scatter +* :ghpull:`23500`: Move the common implementation of Axes.set_x/y/zscale to Axis. +* :ghpull:`23533`: Add tests for sankey and minor fixes +* :ghpull:`23535`: Make margins error as claimed in doc-string +* :ghpull:`23546`: Simplify impl. of functions optionally used as context managers. +* :ghpull:`23494`: Fix various issues from SonarQube +* :ghpull:`23529`: Add workflow dispatch GitHub CI +* :ghpull:`23539`: Small improvements to WebAgg example +* :ghpull:`23541`: Change doc-build CI install order +* :ghpull:`23526`: DOC: make "family" less ambiguous in FontProperties docs +* :ghpull:`23537`: Move the deprecated RendererGTK{3,4}Cairo to a single place. +* :ghpull:`23140`: [Features] Allow setting legend title alignment +* :ghpull:`23538`: Fix imprecise docs re: backend dependencies. +* :ghpull:`23532`: Add test for RGBAxes +* :ghpull:`23453`: Add more tests for mplot3d +* :ghpull:`23501`: Let Axes.clear iterate over Axises. +* :ghpull:`23469`: Inline _init_axis_artists & _init_gridlines into clear. +* :ghpull:`23475`: Add markerfacealt to pass-through arguments for error bar lines +* :ghpull:`23527`: STY: fix whitespace on an assert +* :ghpull:`23495`: Fix sgskip'd examples +* :ghpull:`23404`: Restore matplotlib.__doc__ in Sphinx docs +* :ghpull:`23507`: Add hint when More than {max_open_warning} figures have been opened +* :ghpull:`23499`: Fix outdated comment re: event handlers in test_backends_interactive. +* :ghpull:`23498`: Fix direct instantiation of webagg_core managers. +* :ghpull:`23504`: Clarify formatting of the code-for-reproduction field in bug reports. +* :ghpull:`23489`: Add missing test data to install +* :ghpull:`23482`: Mathtext spaces must be independent of font style. +* :ghpull:`23486`: Bump pypa/cibuildwheel from 2.8.0 to 2.8.1 +* :ghpull:`23461`: Tweak Axes repr. +* :ghpull:`16931`: Make it easier to improve UI event metadata. +* :ghpull:`23468`: Display grid in floating axes example. +* :ghpull:`23467`: Remove old handling for factor=None in axisartist. +* :ghpull:`23443`: Try running the pgf backend off the article class. +* :ghpull:`23373`: Fix pan/zoom crashing when widget lock is unavailable +* :ghpull:`23466`: Update filename in example. +* :ghpull:`23464`: Deprecate macos close handler. +* :ghpull:`23463`: Deprecate Tick.label +* :ghpull:`23455`: Deprecate properties w_xaxis, w_yaxis, and w_zaxis +* :ghpull:`23448`: Tweak callbacks to generate pick events. +* :ghpull:`23233`: Default stem marker color follows the linecolor +* :ghpull:`23452`: Generalize Axes __repr__ to 3D +* :ghpull:`23445`: Compare thread native ids when checking whether running on main thread. +* :ghpull:`20752`: Set norms using scale names. +* :ghpull:`23438`: DOC: numpydoc-ify date Locator classes +* :ghpull:`23427`: Tweak pgf escapes. +* :ghpull:`23432`: Fixed typo in docs animation api +* :ghpull:`23420`: Clean up test_chunksize_fails() +* :ghpull:`23415`: Minor improvements to units_sample example +* :ghpull:`21339`: Added linear scaling test to Hexbin marginals +* :ghpull:`23414`: Bump pypa/cibuildwheel from 2.7.0 to 2.8.0 +* :ghpull:`23413`: Combine chunk size tests into one +* :ghpull:`23403`: Small cleanup to VertexSelector. +* :ghpull:`23291`: In the new/simplified backend API, don't customize draw_if_interactive. +* :ghpull:`23350`: Fixed SVG-as-text image comparison tests. +* :ghpull:`23406`: DOC: Fix calculation of bin centers in multi-histogram +* :ghpull:`23407`: TST: Add missing warning type to pytest.warns +* :ghpull:`23402`: Link 3D animation examples to one another. +* :ghpull:`23401`: Upload wheel artifacts from the correct directory +* :ghpull:`23374`: GOV: point CoC reports at CoC steering council subcomittee mailing list +* :ghpull:`23393`: Clean up formatting of custom cmap example +* :ghpull:`23146`: Update cibuildwheel +* :ghpull:`23368`: Add a helper to generate closed paths. +* :ghpull:`20220`: DOC: add mission statement +* :ghpull:`22364`: Tweak mathtext/tex docs. +* :ghpull:`23377`: Use tick_params more often over tick iteration +* :ghpull:`22820`: [Doc] consolidate ``rect`` documentation +* :ghpull:`23371`: Default animation.convert_args to ["-layers", "OptimizePlus"]. +* :ghpull:`23148`: DOC: change address to send security issues to +* :ghpull:`23365`: DOC: add new showcase example, replace gendered one +* :ghpull:`23033`: Fix issue with tex-encoding on non-Unicode platforms +* :ghpull:`23358`: Shorten/clarify definition of extension types. +* :ghpull:`23370`: Small cleanups to animation. +* :ghpull:`23364`: Rename/change signature of PyGlyph_new. +* :ghpull:`23363`: Simplify FigureCanvas multiple inheritance init by swapping bases order. +* :ghpull:`23366`: MNT: use devel version of theme +* :ghpull:`23357`: Fixed decimal points not appearing at end of Mathtext string. +* :ghpull:`23351`: DOC/MNT install docs with dev version of sphinx theme +* :ghpull:`23349`: CI: Remove old scipy-wheels-nightly uploads to ensure space +* :ghpull:`23348`: Support multi-figure MultiCursor; prepare improving its signature. +* :ghpull:`23360`: embedding_in_tk_sgskip.py: use root.destroy +* :ghpull:`23354`: MNT: Use list comprehension +* :ghpull:`23299`: FIX/API: do not reset backend key in rc_context +* :ghpull:`23191`: ENH: add width_ratios and height_ratios to subplots +* :ghpull:`23060`: MNT: Change objective C code to Automatic Reference Counting (ARC) +* :ghpull:`23347`: Simplify/improve check for pycairo in Gtk-based backends. +* :ghpull:`23316`: DOC: improve spines crosslinking +* :ghpull:`23100`: Remove custom backend_nbagg.show(), putting logic in manager show. +* :ghpull:`23342`: FIX: make sure addFont test removes the test font +* :ghpull:`23266`: negative_linestyles kwarg in contour.py +* :ghpull:`23332`: Validate Text linespacing on input. +* :ghpull:`23336`: Remove ineffective exclusion of Arcs without parent Axes. +* :ghpull:`23341`: MNT: Use '--pytest-test-first' option for naming clarity +* :ghpull:`23337`: Remove now inexistent "datapath" rcParam from style blacklist. +* :ghpull:`22004`: Make RendererCairo auto-infer surface size. +* :ghpull:`23208`: ENH: enable stripey lines +* :ghpull:`23288`: Correct URL area with rotated texts in PDFs +* :ghpull:`23197`: Add tests for pan +* :ghpull:`22167`: Deprecate selector ``visible`` attribute +* :ghpull:`23322`: Cleanup FontProperties examples. +* :ghpull:`23321`: Tweak examples capitalization/punctuation. +* :ghpull:`23270`: Fix handling of nonmath hyphens in mathtext. +* :ghpull:`23310`: Move Cursor demo from examples/misc to examples/event_handling +* :ghpull:`23313`: Drop CSS styles that are in mpl-sphinx-theme +* :ghpull:`23314`: Don't draw invisible 3D Axes +* :ghpull:`23302`: Deprecate stem(..., use_line_collection=False) +* :ghpull:`23309`: Remove front page examples +* :ghpull:`23282`: Backport PR #22865 on branch v3.5.x (Fix issue with colorbar extend and drawedges) +* :ghpull:`23231`: Add pytest-xvfb as test dependency +* :ghpull:`23318`: No need to return OrderedDict from _gen_axes_spines. +* :ghpull:`23295`: Replace re.sub by the faster str.translate. +* :ghpull:`23300`: Modify example of "Fig Axes Customize Simple" +* :ghpull:`23014`: Improve consistency in LogLocator and LogFormatter API +* :ghpull:`23286`: Refactor URL handling in PDF backend +* :ghpull:`23065`: Fix test_image_comparison_expect_rms +* :ghpull:`23294`: Simplify binary data handling in ps backend. +* :ghpull:`23284`: DOC: Switch to HTML5 and cleanup CSS +* :ghpull:`23276`: Add get/set methods for DPI in SubFigure +* :ghpull:`23207`: Update build environment and improve test +* :ghpull:`23213`: DEV: Add name-tests-test to pre-commit hooks +* :ghpull:`23289`: Properly make Name.hexify go through a deprecation cycle. +* :ghpull:`23177`: Deprecate positional passing of most Artist constructor parameters +* :ghpull:`23287`: Minor tweaks to pdf Name. +* :ghpull:`23285`: In mathtext, replace manual caching (via ``glyphd``) by lru_cache. +* :ghpull:`23034`: Correctly read the 'style' argument while processing 'genfrac'. +* :ghpull:`23247`: Support inverted parentheses in mathtext. +* :ghpull:`23190`: Deprecate unused methods in axis.py +* :ghpull:`23219`: MNT: Rename example files with 'test' in name +* :ghpull:`23277`: MNT: Remove dead code in SVG backend +* :ghpull:`23261`: Bump actions/setup-python from 3 to 4 +* :ghpull:`23264`: Changing environment.yml for it to work on Windows +* :ghpull:`23269`: MNT: Remove dead code in Colorbar +* :ghpull:`23262`: Simplify qt_compat, in particular post-removal of qt4 support. +* :ghpull:`23263`: Private helper to get requested backend without triggering resolution. +* :ghpull:`23243`: Fix spacing after mathtext operators with sub/superscripts +* :ghpull:`22839`: Fix spacing after mathtext operators with sub/superscripts +* :ghpull:`23256`: DOC: Add note about Inkscape install on Windows +* :ghpull:`23258`: DOC: remove Blue Book url +* :ghpull:`23255`: Add a helper to generate mathtext error strings. +* :ghpull:`23246`: Fix argument checking for set_interpolation_stage +* :ghpull:`22881`: Support not embedding glyphs in svg mathtests. +* :ghpull:`23198`: Rename ncol parameter in legend to ncols +* :ghpull:`23251`: Small simplifications to mathtext tests. +* :ghpull:`23249`: Don't allow ``r"$\left\\|\right.$"``, as in TeX. +* :ghpull:`23248`: Rename test markers +* :ghpull:`22507`: Remove *math* parameter of various mathtext internal APIs. +* :ghpull:`23192`: Add tests, improve error messages in axis/_base, and code cleanup +* :ghpull:`23241`: Fix invalid value in radio buttons example +* :ghpull:`23187`: Correct docs and use keyword arguments in _mathtext.py +* :ghpull:`23045`: MNT: Merge locally defined test marks +* :ghpull:`22289`: ENH: compressed layout +* :ghpull:`23237`: Expire BoxStyle._Base deprecation. +* :ghpull:`23225`: DOC: Fix version switcher links to documentation +* :ghpull:`23221`: DOC: recommend numpy random number generator class +* :ghpull:`23223`: Changed offset reference, add small doc +* :ghpull:`23215`: DOC: link the transforms tutorial from the module +* :ghpull:`23201`: Rework tricontour and tricontourf documentation +* :ghpull:`23013`: Add tests for date module +* :ghpull:`23188`: Mnt new default dates +* :ghpull:`22745`: MNT: Don't require renderer for window_extent and tightbbox +* :ghpull:`23077`: MNT: Remove keyword arguments to gca() +* :ghpull:`23182`: Simplify webagg blitting. +* :ghpull:`23181`: Init FigureCanvasAgg._lastKey in ``__init__``. +* :ghpull:`23175`: Point the version switcher to a name listed in switcher.json +* :ghpull:`22669`: Cleanup documentation generation for pyplot +* :ghpull:`22519`: fix markevery plot option with nans in data +* :ghpull:`21584`: Move towards having get_shared_{x,y}_axes return immutable views. +* :ghpull:`23170`: ENH: update ticks when requesting labels +* :ghpull:`23169`: DOC: Migrate to sphinx-design +* :ghpull:`23180`: Improve docstring of triplot() and PatchCollection +* :ghpull:`23153`: Restore accidentally removed pytest.ini and tests.py. +* :ghpull:`23166`: Deprecate passing most Legend arguments positionally +* :ghpull:`23165`: DOCS Fix a few typos +* :ghpull:`23167`: DOCS fix typo +* :ghpull:`23062`: Add stackplot to plot types listing +* :ghpull:`23161`: Added my (open access) book +* :ghpull:`23141`: Minor fix for astropy units support broken in earlier PR +* :ghpull:`23156`: No longer call draw_if_interactive in parasite_axes. +* :ghpull:`23150`: DOC fix typo +* :ghpull:`23149`: DOCS remove duplicate text +* :ghpull:`23145`: Fix format error in switcher.json +* :ghpull:`21755`: MNT: Clean up macosx backend set_message +* :ghpull:`23128`: DOCS Fix typos +* :ghpull:`23130`: Drop pytest warning config in nightly tests +* :ghpull:`23135`: Unpin coverage again +* :ghpull:`23133`: Make module deprecation messages consistent +* :ghpull:`23134`: Remove newline from start of deprecation warnings +* :ghpull:`22964`: Fix spelling errors +* :ghpull:`22929`: Handle NaN in bar labels and error bars +* :ghpull:`23093`: MNT: Removing 3.4 deprecations +* :ghpull:`23090`: Derive new_figure_manager from FigureCanvas.new_manager. +* :ghpull:`23099`: Remove unneeded cutout for webagg in show(). +* :ghpull:`23097`: Tweak check for IPython pylab mode. +* :ghpull:`23088`: Improve error for invalid format strings / misspelled data keys. +* :ghpull:`23092`: Ensure updated monkey-patching of sphinx-gallery EXAMPLE_HEADER +* :ghpull:`23087`: Fix width/height inversion in dviread debug helper. +* :ghpull:`23089`: Normalize tk load failures to ImportErrors. +* :ghpull:`23091`: Move test that fig.add_axes() needs parameters +* :ghpull:`23067`: more explicit in windows doc build instructions +* :ghpull:`23081`: MNT: Deprecate date_ticker_factory +* :ghpull:`23079`: MNT: Remove key_press and button_press from FigureManager +* :ghpull:`23076`: MNT: Remove positional argument handling in LineCollection +* :ghpull:`23078`: MNT: Remove deprecated axis.cla() +* :ghpull:`23054`: Slightly simplify tcl/tk load in extension. +* :ghpull:`23073`: MNT: Remove dummy_threading because threading is always available +* :ghpull:`22405`: DOC: put the gallery keywords in the meta tag +* :ghpull:`23071`: Fix installing contourpy on CI +* :ghpull:`23068`: Slight refactor of _c_internal_utils to linewrap it better. +* :ghpull:`23070`: Pathlibify autotools invocation in build. +* :ghpull:`22755`: Maybe run autogen as part of freetype install +* :ghpull:`23063`: doc: mathtext example: use axhspan() instead of fill_between() for backdrop rectangle shading +* :ghpull:`23055`: Cleanup Annotation.update_position. +* :ghpull:`22567`: Use contourpy for quad contour calculations +* :ghpull:`22801`: TST: fully parameterize test_lazy_linux_headless +* :ghpull:`22180`: ENH: Use rcParams savefig.directory on macosx backend +* :ghpull:`23048`: Add rrulewrapper to docs +* :ghpull:`23047`: Fix issue with hist and float16 data +* :ghpull:`23044`: Fix missing section header for nightly builds +* :ghpull:`23029`: Demonstrate both usetex and non-usetex in demo_text_path.py. +* :ghpull:`23038`: Factor out errorevery parsing for 2D and 3D errorbars. +* :ghpull:`23036`: Suppress traceback chaining for tex subprocess failures. +* :ghpull:`23037`: Suppress exception chaining in FontProperties. +* :ghpull:`23020`: Add test to close legend issue +* :ghpull:`23031`: Specify that style files are utf-8. +* :ghpull:`22991`: Enable ``plt.sca`` on subfigure's axes +* :ghpull:`23030`: DOC: Fix charset declaration in redirects +* :ghpull:`23022`: Fix some possible encoding issues for non-utf8 systems. +* :ghpull:`23023`: Bump docker/setup-qemu-action from 1 to 2 +* :ghpull:`23024`: DOC: do not suggest to sudo pip install Matplotlib +* :ghpull:`23018`: Fix typo in font family +* :ghpull:`22627`: ENH: rect for constrained_layout +* :ghpull:`22891`: Font example monospace +* :ghpull:`23006`: docs: add subplot-mosaic string compact notation +* :ghpull:`23009`: Fixed installation guide command typo +* :ghpull:`22926`: Fix RangeSlider for same init values #22686 +* :ghpull:`22989`: Merge v3.5.x back into main +* :ghpull:`22993`: STY: Fix typos in colormap +* :ghpull:`22777`: DEV: Add codespell to pre-commit hooks +* :ghpull:`22940`: Fixed dpi bug in rainbow text example +* :ghpull:`22298`: MNT: Remove cmap_d colormap access +* :ghpull:`22387`: Add a registry for color sequences +* :ghpull:`21594`: Document text alignment +* :ghpull:`22967`: TST: Add some tests for QuadMesh contains function +* :ghpull:`22936`: ENH: Add full-screen toggle to the macosx backend +* :ghpull:`22886`: MNT: remove mpl_toolkits.axes_grid +* :ghpull:`22952`: Make MarkerStyle immutable +* :ghpull:`22953`: MNT: Move set_cursor to the FigureCanvas +* :ghpull:`18854`: Standardize creation of FigureManager from a given FigureCanvas class. +* :ghpull:`22925`: Standardize creation of FigureManager from a given FigureCanvas class. +* :ghpull:`22875`: Remove Forward definitions where possible. +* :ghpull:`22928`: ENH: Add option to disable raising the window for macosx +* :ghpull:`22912`: DOC: Better doc of colors +* :ghpull:`22931`: BUG: Fix regression with ls=(0, ()) +* :ghpull:`22909`: FIX: skip sub directories when finding fonts on windows +* :ghpull:`22911`: Clarify docstring of [un]install_repl_displayhook() +* :ghpull:`22919`: CI: Add concurrency skips for GH Actions +* :ghpull:`22899`: Fix documentation markup issues +* :ghpull:`22906`: Clarify logic for repl displayhook. +* :ghpull:`22892`: Remove support for IPython<4. +* :ghpull:`22896`: Remove python-dateutil as test requirement +* :ghpull:`22885`: Deprecate two-layered backend_pdf.Op enum. +* :ghpull:`22883`: Tweak argument checking in tripcolor(). +* :ghpull:`22884`: Missing ``f`` prefix on f-strings fix +* :ghpull:`22877`: Small cleanups to mathtext. +* :ghpull:`21374`: Snap selectors +* :ghpull:`22824`: Remove some unnecessary extra boundaries for colorbars with extensions. +* :ghpull:`21448`: Use named groups in mathtext parser. +* :ghpull:`22609`: Improve usability of dviread.Text by third parties. +* :ghpull:`22809`: STY: Apply pre-commit hooks to codebase +* :ghpull:`22730`: Fix removed cross-references +* :ghpull:`22857`: Slightly simplify twin axes detection in MEP22 zoom. +* :ghpull:`22813`: MNT: Deprecate figure callbacks +* :ghpull:`22802`: MNT: make Axes.cla an alias for Axes.clear in all cases +* :ghpull:`22855`: Remove non-needed remove_text=False. +* :ghpull:`22854`: TST: Avoid floating point errors in asinh ticker +* :ghpull:`22850`: Simplify tick creation +* :ghpull:`22841`: Fix Tk error when updating toolbar checkbutton images +* :ghpull:`22707`: Proposed ENH: Allow user to turn off breaking of streamlines in streamplot (rebased) +* :ghpull:`22826`: Bump actions/upload-artifact from 2 to 3 +* :ghpull:`22825`: Bump codecov/codecov-action from 2 to 3 +* :ghpull:`22821`: Use bool for bool keyword arguments +* :ghpull:`22815`: Fix pickling of globally available, dynamically generated norm classes. +* :ghpull:`22702`: Doc tweak transform tutorial +* :ghpull:`22613`: DOC: Add links to explicit vs implicit API everywhere "OO" is used +* :ghpull:`22712`: Use repr in error messages +* :ghpull:`22794`: Fix ps export of colored hatches with no linewidth +* :ghpull:`22797`: Deprecate functions in backends +* :ghpull:`22608`: Axes.inset_axes: enable Axes subclass creation +* :ghpull:`22795`: Replace "marker simplification" by "marker subsampling" in docs. +* :ghpull:`22768`: Fix inkscape tests +* :ghpull:`22791`: Tweak _ConverterError reporting. +* :ghpull:`22447`: Improve bar_label annotation +* :ghpull:`22710`: Fix the error- TypeError: 'float' object is not iterable +* :ghpull:`22444`: Revert "CI: skip test to work around gs bug" +* :ghpull:`22785`: CI: Update weekly dependency test job +* :ghpull:`22784`: Fix 'misspelled' transform variable +* :ghpull:`22778`: Fix LaTeX formatting in examples +* :ghpull:`22779`: Improve mlab documentation (and example) +* :ghpull:`22759`: MNT: Skip existing wheels during nightly wheel upload +* :ghpull:`22751`: BLD: do not put an upper bound on pyparsing +* :ghpull:`22752`: DOC: Correct nightly wheels pip install command +* :ghpull:`22742`: Fix deprecation of backend_tools.ToolBase.destroy +* :ghpull:`22725`: Move towards making texmanager stateless. +* :ghpull:`22734`: Added clim support to tripcolor +* :ghpull:`22733`: CI: Add GHA workflow to upload nightly wheels +* :ghpull:`21637`: Also upload a subset of nightly wheels +* :ghpull:`22698`: Correct cross-references in documentation +* :ghpull:`22263`: DOC: condense version switcher +* :ghpull:`22361`: Revert datetime usetex ticklabels to use default tex font. +* :ghpull:`22721`: Small style fixes. +* :ghpull:`22356`: Cleanup tripcolor() +* :ghpull:`22360`: Let TeX handle multiline strings itself. +* :ghpull:`22418`: Deprecate auto-removal of overlapping Axes by plt.subplot{,2grid}. +* :ghpull:`22722`: Rename confusingly-named cm_fallback. +* :ghpull:`22697`: Deprecate in testing.decorators +* :ghpull:`22556`: Add text.parse_math rcParams +* :ghpull:`22163`: Change colour of Tk toolbar icons on dark backgrounds +* :ghpull:`22704`: Small simplification to textpath. +* :ghpull:`22498`: TST: increase coverage on tk tests +* :ghpull:`21425`: Make Axis3D constructor signature closer to the one of 2D axis. +* :ghpull:`22665`: Improve error message for incorrect color string +* :ghpull:`22685`: Rewrite plot format detection from sphinx build target +* :ghpull:`22670`: Update deprecated vmImage 'vs2017-win2016' in azure pipelines +* :ghpull:`22503`: Deprecate backend_qt.qApp. +* :ghpull:`22683`: Add missing space before : for parameters +* :ghpull:`22591`: Fix Path/str-discrepancy in FontManager.addpath and improve documentation +* :ghpull:`22680`: Bump actions/cache from 2 to 3 +* :ghpull:`22659`: Add description on quiver head parameters +* :ghpull:`22668`: Raise on missing closing quotes in matplotlibrc +* :ghpull:`22675`: Tweak colorbar_placement example. +* :ghpull:`22276`: Merge "Scatter Symbol" and "Scatter Custom Symbol" examples +* :ghpull:`22658`: Remove reference to now-deleted reminder note. +* :ghpull:`22652`: Update documentation example and fix See also +* :ghpull:`22587`: Refactor handling of tick and ticklabel visibility in Axis.clear() +* :ghpull:`22148`: MNT: Deprecate ``docstring`` +* :ghpull:`22170`: Add example to polygon selector docstring showing how to set vertices programmatically +* :ghpull:`22650`: Fix new leak in ft2font introduced in #22604 +* :ghpull:`22644`: FIX: Flush events after closing figures in macosx backend +* :ghpull:`22643`: Suppress exception chaining in colormap lookup. +* :ghpull:`22639`: ENH: MacOSX backend to use sRGB instead of GenericRGB colorspace +* :ghpull:`22509`: Simplifications to ToolManager.{add,remove}_tool. +* :ghpull:`22633`: DOC: remove space in directive. +* :ghpull:`22631`: Add space between individual transform components in svg output. +* :ghpull:`22523`: MNT: Use a context manager to change the norm in colorbar code +* :ghpull:`22615`: FIX: Change get_axis_map to axis_map now +* :ghpull:`22508`: Move tracking of autoscale status to Axis. +* :ghpull:`22547`: Small cleanups around TexManager usage. +* :ghpull:`22511`: Remove redundant rcParam-lookup in patches +* :ghpull:`22516`: Expire deprecations in backends +* :ghpull:`22612`: Updated grammar to reflect more common usage of output vs outputted in animation.py +* :ghpull:`22589`: Support quoted strings in matplotlibrc +* :ghpull:`22604`: MNT: Fix types in C-code to reduce warnings +* :ghpull:`22610`: Fix alternative suggestion in epoch2num() deprecation +* :ghpull:`22554`: Prepare for making create_dummy_axis not necessary. +* :ghpull:`22607`: ENH: Add dark/light mode theme to the buttons +* :ghpull:`21790`: FIX: Update blitting and drawing on the macosx backend +* :ghpull:`22175`: FIX: Update macosx animation handling +* :ghpull:`22569`: Require non-zero dash value +* :ghpull:`22544`: Correct paper sizes +* :ghpull:`20470`: Issues warnings for legend handles without handlers +* :ghpull:`22558`: MNT: Simplify imports +* :ghpull:`22580`: fix doc for annotation_clip parameter +* :ghpull:`22581`: DOC: fix various typos +* :ghpull:`22573`: Bump actions/setup-python from 2 to 3 +* :ghpull:`22568`: Rename qhull source to _qhull_wrapper.cpp. +* :ghpull:`22561`: FIX: Handle stopped animation figure resize +* :ghpull:`22562`: TST: Add a frame test for animations +* :ghpull:`22514`: Expire deprecations in cbook.deprecation +* :ghpull:`22555`: Use picklable callbacks for DraggableBase. +* :ghpull:`22552`: Tweak dependency checking in doc/conf.py. +* :ghpull:`22550`: Require sphinx>=3 & numpydoc>=1.0 for building docs. +* :ghpull:`22539`: Deprecate toplevel mpl.text.get_rotation; normalize rotations early. +* :ghpull:`22502`: Cleanup unused imports and variables in backends +* :ghpull:`20071`: Document, test, and simplify impl. of auto_adjustable_area. +* :ghpull:`22366`: Deprecation removal/updates in axes3d +* :ghpull:`22484`: Simplify the internal API to connect picklable callbacks. +* :ghpull:`22417`: Support passing rgbaFace as an array to agg's draw_path. +* :ghpull:`22412`: Turn _get_axis_map() into a property and remove _get_axis_list() +* :ghpull:`22486`: Expire deprecations in lines and patches +* :ghpull:`22512`: Increase coverage +* :ghpull:`22504`: Simplify FontProperties init. +* :ghpull:`22497`: Remove entries of MathTextParser._backend_mapping deprecated in 3.4. +* :ghpull:`22487`: Don't key MathTextParser cache off a mutable FontProperties. +* :ghpull:`22468`: Turn _mathtext.ship into a plain function. +* :ghpull:`22490`: Deprecate unused, untested Affine2D.identity(). +* :ghpull:`22491`: Linewrap setupext to 79 character lines. +* :ghpull:`22488`: Some more maintenance for mathtext internal implementation. +* :ghpull:`22485`: Change string representation of AxesImage +* :ghpull:`22240`: Add minimum macosx version +* :ghpull:`22480`: Remove _point_size_reduction. +* :ghpull:`22204`: Cleanup _mathtext internal API +* :ghpull:`22469`: Improve readability of mathtext internal structures. +* :ghpull:`22477`: Un-pyplot some examples which were already explicitly referencing axes. +* :ghpull:`22467`: Small cleanup to font handling in agg. +* :ghpull:`21178`: Add asinh axis scaling (*smooth* symmetric logscale) +* :ghpull:`22411`: Move cbook._define_aliases() to _api.define_aliases() +* :ghpull:`22465`: Deprecate unused AddList. +* :ghpull:`22451`: Clarify error message for bad keyword arguments. +* :ghpull:`21267`: Cleanup AnnotationBbox. +* :ghpull:`22464`: Small improvements related to radar_chart example. +* :ghpull:`22421`: Make most params to figure()/Figure() kwonly. +* :ghpull:`22457`: Copy arrowprops argument to FancyAnnotationBbox. +* :ghpull:`22454`: move ``_toolbar_2`` from webagg_core to webagg +* :ghpull:`22413`: Remove some trivial private getters/setters in axisartist +* :ghpull:`21634`: TST: Add future dependency tests as a weekly CI job +* :ghpull:`22079`: Share FigureManager class between gtk3 and gtk4. +* :ghpull:`22440`: Clarify warning about labels with leading underscores. +* :ghpull:`17488`: Make error message explicit in legend.py +* :ghpull:`22453`: Simplify impl. of polar limits setting API. +* :ghpull:`22449`: Small cleanup to quiver. +* :ghpull:`22415`: Make emit and auto args of set_{x,y,z}lim keyword only. +* :ghpull:`22422`: Deprecate backend_ps.convert_psfrags. +* :ghpull:`22194`: Drop support for Python 3.7 +* :ghpull:`22234`: Partial fix for grid alpha +* :ghpull:`22433`: Fix ambiguous link targets in docs. +* :ghpull:`22420`: Update plt.figure() docstring. +* :ghpull:`22388`: Make signature of Axes.annotate() more explicit. +* :ghpull:`22419`: Remove "Matplotlib version" from docs issue template +* :ghpull:`22423`: Avoid indiscriminate glob-remove in xpdf_distill. +* :ghpull:`22406`: [DOC]: Removed a redundant 'The' +* :ghpull:`21442`: Factor out common limits handling for x/y/z axes. +* :ghpull:`22397`: Axes capitalization in widgets and axes3d +* :ghpull:`22394`: Tweak Axes3D docstrings that refer to 2D plotting methods. +* :ghpull:`22383`: TST: fix doc build +* :ghpull:`21877`: DOC: attempt to explain the main different APIs +* :ghpull:`21238`: Raise when unknown signals are connected to CallbackRegistries. +* :ghpull:`22345`: MNT: make layout deprecations pending +* :ghpull:`21597`: FIX: Remove the deepcopy override from transforms +* :ghpull:`22370`: Replace tabs with spaces in C code. +* :ghpull:`22371`: Corrected a mistake in comments (Issue #22369) +* :ghpull:`21352`: Refactor hexbin(). +* :ghpull:`19214`: Improve autoscaling for high order Bezier curves +* :ghpull:`22268`: Deprecated is_decade and is_close_to_int +* :ghpull:`22359`: Slightly refactor TeX source generation. +* :ghpull:`22365`: Remove deprecated ``MovieWriter.cleanup`` +* :ghpull:`22363`: Properly capitalize "Unicode". +* :ghpull:`22025`: Deprecate various custom FigureFrameWx attributes/methods. +* :ghpull:`21391`: Reuse imsave()'s background-blending code in FigureCanvasAgg.print_jpeg. +* :ghpull:`22026`: Simplify wxframe deletion. +* :ghpull:`22351`: Fix "trailing" whitespace in C docstrings. +* :ghpull:`22342`: Docstrings for _qhull. +* :ghpull:`21836`: Slightly shorten ft2font init. +* :ghpull:`21962`: Privatize various internal APIs of backend_pgf. +* :ghpull:`22114`: Rewrite AxesStack independently of cbook.Stack. +* :ghpull:`22332`: Let TransformedPatchPath inherit most functionality from TransformedPath. +* :ghpull:`22292`: Cleanup Axis._translate_tick_kw +* :ghpull:`22339`: wx.App() should be init'ed in new_figure_manager_given_figure +* :ghpull:`22315`: More standardization of floating point slop in mpl_toolkits. +* :ghpull:`22337`: DOC: More cleanup axes -> Axes +* :ghpull:`22323`: Replace sole use of maxdict by lru_cache. +* :ghpull:`22229`: FIX: make safe to add / remove artists during ArtistList iteration +* :ghpull:`22196`: ``dates`` classes and functions support ``tz`` both as string and ``tzinfo`` +* :ghpull:`22161`: Add box when setting ``PolygonSelector.verts`` +* :ghpull:`19368`: Raise warning and downsample if data given to _image.resample is too large +* :ghpull:`22250`: Unify toolbar init across backends. +* :ghpull:`22304`: Added tests for ContourSet.legend_elements +* :ghpull:`21583`: Add pre-commit config and dev instructions +* :ghpull:`21547`: Custom cap widths in box and whisker plots in bxp() and boxplot() +* :ghpull:`20887`: Implement a consistent behavior in TkAgg backend for bad blit bbox +* :ghpull:`22317`: Rename outdated seaborn styles. +* :ghpull:`22271`: Rework/fix Text layout cache. +* :ghpull:`22097`: In mpl_toolkits, use the same floating point slop as for standard ticks. +* :ghpull:`22295`: Display bad format string in error message. +* :ghpull:`22287`: Removed unused code and variables +* :ghpull:`22244`: MNT: colorbar locators properties +* :ghpull:`22270`: Expanded documentation of Axis.set_ticks as per discussion in issue #22262 +* :ghpull:`22280`: Simplify FontProperties.copy(). +* :ghpull:`22174`: Give the Tk toolbar buttons a flat look +* :ghpull:`22046`: Add the ability to change the focal length of the camera for 3D plots +* :ghpull:`22251`: Colorbar docstring reorg +* :ghpull:`21933`: MNT: privatize colorbar attr +* :ghpull:`22258`: DOC: fix version switcher +* :ghpull:`22261`: DOC: fix switcher json +* :ghpull:`22154`: Add some tests for minspan{x,y} in RectangleSelector +* :ghpull:`22246`: DOC: add dropdown +* :ghpull:`22133`: Deprecated ``afm``, ``fontconfig_pattern``, and ``type1font`` +* :ghpull:`22249`: DOC: More capitalization of Axes +* :ghpull:`22021`: Ensure that all toolbar (old/new) subclasses can be init'ed consistently +* :ghpull:`22213`: Improve ft2font error reporting. +* :ghpull:`22245`: Deprecate cleared kwarg to get_renderer. +* :ghpull:`22239`: Fix typos +* :ghpull:`22216`: turn off the grid after creating colorbar axes +* :ghpull:`22055`: FIX: Return value instead of enum in get_capstyle/_joinstyle +* :ghpull:`22228`: Remove some unnecessary getattrs. +* :ghpull:`20426`: ENH: Layout engine +* :ghpull:`22224`: Trivial doc fix to annotations tutorial. +* :ghpull:`21894`: Jointly track x and y in PolygonSelector. +* :ghpull:`22205`: Bump minimum NumPy to 1.19 +* :ghpull:`22203`: Factor out underline-thickness lookups in mathtext. +* :ghpull:`22189`: DOC: Add hatch API to reference +* :ghpull:`22084`: Clean up 3d plot box_aspect zooming +* :ghpull:`22098`: Expire axes_grid1/axisartist deprecations. +* :ghpull:`22013`: Use standard toolbar in wx. +* :ghpull:`22160`: Removed unused variables etc. +* :ghpull:`22179`: FIX: macosx check case-insensitive app name +* :ghpull:`22157`: Improved coverage of mathtext and removed unused code +* :ghpull:`21781`: Use a fixture to get widget testing axes +* :ghpull:`22140`: Ensure log formatters use Unicode minus +* :ghpull:`21342`: Fix drawing animated artists changed in selector callback +* :ghpull:`22134`: Deprecated ``tight_bbox`` and ``tight_layout`` modules +* :ghpull:`21965`: Switch transOffset to offset_transform. +* :ghpull:`22145`: Make Tk windows use the same icon as other backends +* :ghpull:`22107`: Expire mathttext-related deprecations +* :ghpull:`22139`: FIX: width/height were reversed in macosx rectangle creation +* :ghpull:`22123`: Deprecate accepting arbitrary parameters in some get_window_extent() methods +* :ghpull:`22122`: Hint at draw_without_rendering() in Text.get_window_extent +* :ghpull:`22120`: Drop dependency on scipy in the docs. +* :ghpull:`22063`: FIX: Autoposition title when yaxis has offset +* :ghpull:`22119`: Micro-optimize skew(). +* :ghpull:`22109`: Remove unnecessary null checks in macosx.m, and some more maintenance +* :ghpull:`21977`: Add corner coordinate helper methods to Ellipse/Rectangle +* :ghpull:`21830`: Add option of bounding box for PolygonSelector +* :ghpull:`22115`: Turn _localaxes into a plain list. +* :ghpull:`22108`: Micro-optimize rotation transform. +* :ghpull:`22043`: Cleanup differential equations examples. +* :ghpull:`22080`: Simple style(ish) fixes. +* :ghpull:`22110`: Right-aligned status text in backends +* :ghpull:`21873`: DOC: Update and consolidate Custom Tick Formatter for Time Series example +* :ghpull:`22112`: Fix a small typo +* :ghpull:`20117`: Very soft-deprecate AxesDivider.new_{horizontal,vertical}. +* :ghpull:`22034`: Update lines_with_ticks_demo.py +* :ghpull:`22102`: DOC: rename usage tutorial to quick_start +* :ghpull:`19228`: Validate text rotation in setter +* :ghpull:`22081`: Expire colorbar-related deprecations. +* :ghpull:`22008`: Added color keyword argument to math_to_image +* :ghpull:`22058`: Remove exprired mplot3d deprecations for 3.6 +* :ghpull:`22073`: DOC: Add new tutorial to external resources. +* :ghpull:`22054`: MNT: Set CapStyle member names automatically +* :ghpull:`22061`: De-duplicate mplot3D API docs +* :ghpull:`22075`: Remove unnecessary ``.figure`` qualifier in docs. +* :ghpull:`22051`: Make required_interactive_framework required on FigureCanvas. +* :ghpull:`22050`: Deprecate the noop, unused FigureCanvasBase.resize. +* :ghpull:`22030`: Add explanatory comments to "broken" horizontal bar plot example +* :ghpull:`22001`: Fix: [Bug]: triplot with 'ls' argument yields TypeError #21995 +* :ghpull:`22045`: Fill in missing Axes3D box_aspect argument docstring +* :ghpull:`22042`: Keep FontEntry helpers private. +* :ghpull:`21042`: Make rcParams.copy() return a new RcParams instance. +* :ghpull:`22032`: flipy only affects the drawing of texts, not of images. +* :ghpull:`21993`: Added docstring to rrulewrapper class +* :ghpull:`21935`: Significantly improve tight layout performance for cartopy axes +* :ghpull:`22000`: Some gtk cleanups. +* :ghpull:`21983`: Simplify canvas class control in FigureFrameWx. +* :ghpull:`21985`: Slightly tighten the _get_layout_cache_key API. +* :ghpull:`22020`: Simplify wx _print_image. +* :ghpull:`22010`: Fix syntax highlighting in contrib guide. +* :ghpull:`22003`: Initialize RendererCairo.{width,height} in constructor. +* :ghpull:`21992`: Use _make_classic_style_pseudo_toolbar more. +* :ghpull:`21916`: Fix picklability of make_norm_from_scale norms. +* :ghpull:`21981`: FigureCanvasCairo can init RendererCairo; kill RendererCairo subclasses. +* :ghpull:`21986`: InvLogTransform should only return masked arrays for masked inputs. +* :ghpull:`21991`: PEP8ify wx callback names. +* :ghpull:`21975`: DOC: remove experimental tag from CL +* :ghpull:`21989`: Autoinfer norm bounds. +* :ghpull:`21980`: Removed loaded modules logging +* :ghpull:`21982`: Deprecate duplicated FigureManagerGTK{3,4}Agg classes. +* :ghpull:`21963`: Clarify current behavior of draw_path_collection. +* :ghpull:`21974`: Reword inset axes example. +* :ghpull:`21835`: Small improvements to interactive examples +* :ghpull:`21050`: Store dash_pattern as single attribute, not two. +* :ghpull:`21557`: Fix transparency when exporting to png via pgf backend. +* :ghpull:`21904`: Added _repr_html_ for fonts +* :ghpull:`21696`: Use cycling iterators in RendererBase. +* :ghpull:`21955`: Refactor common parts of ImageMagick{,File}Writer. +* :ghpull:`21952`: Clarify coordinates for RectangleSelector properties +* :ghpull:`21964`: Fix some more missing references. +* :ghpull:`21516`: Make _request_autoscale_view more generalizable to 3D. +* :ghpull:`21947`: Slightly cleanup RendererBase docs. +* :ghpull:`21961`: Privatize various internal APIs of backend_pgf. +* :ghpull:`21956`: Remove tests for avconv animation writers. +* :ghpull:`21954`: DOC: Move Animation and MovieWriter inheritance diagrams ... +* :ghpull:`21780`: Add a click_and_move widget test helper +* :ghpull:`21941`: Merge branch v3.5.x into main +* :ghpull:`21936`: Small ``__getstate__`` cleanups. +* :ghpull:`21939`: Update comment re: register_at_fork. +* :ghpull:`21910`: Fold _rgbacache into _imcache. +* :ghpull:`21921`: Clean up RectangleSelector move code +* :ghpull:`21925`: Drop labelling from PR welcome action +* :ghpull:`14930`: Set Dock icon on the macosx backend +* :ghpull:`21920`: Improve square state calculation in RectangleSelector +* :ghpull:`21919`: Fix use_data_coordinates docstring +* :ghpull:`21881`: Add a PolygonSelector.verts setter +* :ghpull:`20839`: Fix centre and square state and add rotation for rectangle selector +* :ghpull:`21874`: DOC: Add Date Tick Locators and Formatters example +* :ghpull:`21799`: Added get_font_names() to fontManager +* :ghpull:`21871`: DOC: Code from markevery_prop_cycle moved to test. +* :ghpull:`21395`: Expire _check_savefig_extra_args-related deprecations. +* :ghpull:`21867`: Remove unused bbox arg to _convert_agg_to_wx_bitmap. +* :ghpull:`21868`: Use partialmethod for better signatures in backend_ps. +* :ghpull:`21520`: Shorten some inset_locator docstrings. +* :ghpull:`21737`: Update the "Rotating a 3D plot" gallery example to show all 3 rotation axes +* :ghpull:`21851`: Re-order a widget test function +* :ghpull:`10762`: Normalization of elevation and azimuth angles for surface plots +* :ghpull:`21426`: Add ability to roll the camera in 3D plots +* :ghpull:`21822`: Replace NSDictionary by switch-case. +* :ghpull:`21512`: MNT: Add modifier key press handling to macosx backend +* :ghpull:`21784`: Set macOS icon when using Qt backend +* :ghpull:`21748`: Shorten PyObjectType defs in macosx.m. +* :ghpull:`21809`: MNT: Turn all macosx warnings into errors while building +* :ghpull:`21792`: Fix missing return value in closeButtonPressed. +* :ghpull:`21767`: Inherit many macos backend docstrings. +* :ghpull:`21766`: Don't hide build log on GHA. +* :ghpull:`21728`: Factor out some macosx gil handling for py-method calls from callbacks. +* :ghpull:`21754`: Update gitattributes so that objc diffs are correctly contextualized. +* :ghpull:`21752`: Add a helper for directly output pdf streams. +* :ghpull:`21750`: Don't sort pdf dicts. +* :ghpull:`21745`: DOC: Clarify Coords Report Example +* :ghpull:`21746`: Fix/add docstring signatures to many C++ methods. +* :ghpull:`21631`: DOC: change gridspec tutorial to arranging_axes tutorial +* :ghpull:`21318`: FIX: better error message for shared axes and axis('equal') +* :ghpull:`21519`: mark_inset should manually unstale axes limits before drawing itself. +* :ghpull:`21724`: Fix copyright date with SOURCE_DATE_EPOCH set +* :ghpull:`21398`: FIX: logic of title repositioning +* :ghpull:`21717`: Simplify macosx toolbar init. +* :ghpull:`21690`: Whitespace/braces/#defines cleanup to macosx. +* :ghpull:`21695`: Use _api.check_shape more. +* :ghpull:`21698`: Small code cleanups and style fixes. +* :ghpull:`21529`: Delay-load keymaps in toolmanager. +* :ghpull:`21525`: Fix support for clim in scatter. +* :ghpull:`21697`: Drop non-significant zeros from ps output. +* :ghpull:`21692`: CI: Remove CI test runs from forks of matplotlib +* :ghpull:`21591`: Make ToolFullScreen a Tool, not a ToolToggle. +* :ghpull:`21677`: Simplify test for negative xerr/yerr. +* :ghpull:`21657`: Replace some image_comparisons by return-value-tests/check_figures_e… +* :ghpull:`21664`: Merge 3.5.x into main +* :ghpull:`21490`: Make Line2D copy its inputs +* :ghpull:`21639`: Skip some uses of packaging's PEP440 version for non-Python versions. +* :ghpull:`21604`: Fix centre square rectangle selector part 1 +* :ghpull:`21593`: Check for images added-and-modified in a same PR +* :ghpull:`20750`: Shorten issue templates +* :ghpull:`21590`: Make gtk3 full_screen_toggle more robust against external changes. +* :ghpull:`21582`: Organize checklist in PR template +* :ghpull:`21580`: Rename/remove _lastCursor, as needed. +* :ghpull:`21567`: Removed the range parameter from the validate_whiskers function's err… +* :ghpull:`21565`: Further remove remnants of offset_position. +* :ghpull:`21542`: [ENH]: Use new style format strings for colorbar ticks +* :ghpull:`21564`: Skip invisible artists when doing 3d projection. +* :ghpull:`21558`: Various small fixes for streamplot(). +* :ghpull:`21544`: Return minorticks as array, not as list. +* :ghpull:`21546`: Added links to the mosaic docs in figure and pyplot module docstrings +* :ghpull:`21545`: Turn mouseover into a mpl-style getset_property. +* :ghpull:`21537`: Remove unnecessary False arg when constructing wx.App. +* :ghpull:`21536`: Reword margins docstrings, and fix bounds on zmargin values. +* :ghpull:`21535`: typo-correction-on-line-185 +* :ghpull:`21534`: Do not use space in directive calling. +* :ghpull:`21494`: Adding tutorial links for blitting in widgets.py +* :ghpull:`21407`: Stash exceptions when FT2Font closes the underlying stream. +* :ghpull:`21431`: set_ticks([single_tick]) should also expand view limits. +* :ghpull:`21444`: Make pipong example self-contained. +* :ghpull:`21392`: Add label about workflow to new contributor PRs +* :ghpull:`21440`: Install sphinx-panels along with development setup +* :ghpull:`21434`: Remove coords_flat variable +* :ghpull:`21415`: Move gui_support.macosx option to packages section. +* :ghpull:`21412`: Privatize some SVG internal APIs. +* :ghpull:`21401`: Uncamelcase some internal variables in axis.py; rename _get_tick_bboxes. +* :ghpull:`21417`: Use Bbox.unit() more. +* :ghpull:`20253`: Simplify parameter handling in FloatingAxesBase. +* :ghpull:`21379`: Simplify filename tracking in FT2Font. +* :ghpull:`21278`: Clear findfont cache when calling addfont(). +* :ghpull:`21400`: Use bbox.{size,bounds,width,height,p0,...} where appropriate. +* :ghpull:`21408`: Reword annotations tutorial section titles. +* :ghpull:`21371`: Rename default branch +* :ghpull:`21389`: Log pixel coordinates in event_handling coords_demo example on terminal/console +* :ghpull:`21376`: Factor common parts of saving to different formats using pillow. +* :ghpull:`21377`: Enable tests for text path based markers +* :ghpull:`21283`: Demonstrate inset_axes in scatter_hist example. +* :ghpull:`21356`: Raise an exception when find_tex_file fails to find a file. +* :ghpull:`21362`: Simplify wording of allowed errorbar() error values +* :ghpull:`21274`: ENH: Add support to save images in WebP format +* :ghpull:`21289`: Simplify _init_legend_box. +* :ghpull:`21256`: Make image_comparison work even without the autoclose fixture. +* :ghpull:`21343`: Fix type1font docstring markup/punctuation. +* :ghpull:`21341`: Fix trivial docstring typo. +* :ghpull:`21301`: Simplify ``Colormap.__call__`` a bit. +* :ghpull:`21280`: Make ``Path.__deepcopy__`` interact better with subclasses, e.g. TextPath. +* :ghpull:`21266`: Fix #21101 Add validator to errorbar method +* :ghpull:`20921`: Fix problem with (deep)copy of TextPath +* :ghpull:`20914`: 19195 rotated markers +* :ghpull:`21276`: Add language about not assigning issues +* :ghpull:`20715`: Improve Type-1 font parsing +* :ghpull:`21218`: Parametrize/simplify test_missing_psfont. +* :ghpull:`21213`: Compress comments in make_image. +* :ghpull:`21187`: Deprecate error_msg_foo helpers. +* :ghpull:`21190`: Deprecate mlab.stride_windows. +* :ghpull:`21152`: Rename ``**kw`` to ``**kwargs``. +* :ghpull:`21087`: Move colormap examples from userdemo to images_contours_and_fields. +* :ghpull:`21074`: Deprecate MarkerStyle(None). +* :ghpull:`20990`: Explicit registration of canvas-specific tool subclasses. +* :ghpull:`21049`: Simplify setting Legend attributes +* :ghpull:`21056`: Deprecate support for no-args MarkerStyle(). +* :ghpull:`21059`: Remove dummy test command from setup.py +* :ghpull:`21015`: Prepare for rcParams.copy() returning a new RcParams instance in the future +* :ghpull:`21021`: Factor out for_layout_only backcompat support in get_tightlayout. +* :ghpull:`21023`: Inline ToolManager._trigger_tool to its sole call site. +* :ghpull:`21005`: Test the rcParams deprecation machinery. +* :ghpull:`21010`: Avoid TransformedBbox where unneeded. +* :ghpull:`21019`: Reword custom_ticker1 example. +* :ghpull:`20995`: Deprecate some backend_gtk3 helper globals. +* :ghpull:`21004`: Remove now-unused rcParams _deprecated entries. +* :ghpull:`20986`: Make HandlerLine2D{,Compound} inherit constructors from HandlerNpoints. +* :ghpull:`20974`: Rename symbol_name to glyph_name where appropriate. +* :ghpull:`20961`: Small cleanups to math_to_image. +* :ghpull:`20957`: legend_handler_map cleanups. +* :ghpull:`20955`: Remove unused HostAxes._get_legend_handles. +* :ghpull:`20851`: Try to install the Noto Sans CJK font + +Issues (202): + +* :ghissue:`23827`: backend_gtk3agg.py calls set_device_scale +* :ghissue:`23560`: [Doc]: mpl_toolkits.axes_grid still mentioned as maintained +* :ghissue:`23794`: [Doc]: Version switcher broken in devdocs +* :ghissue:`23806`: [Bug]: possible regression in axis ticks handling in matplotlib 3.6.0rc2 +* :ghissue:`22965`: [Bug]: triplot duplicates label legend +* :ghissue:`23807`: streamplot raises ValueError when the input is zeros +* :ghissue:`23761`: [Bug]: False positive legend handler warnings in 3.6.0.rc1 +* :ghissue:`23398`: [Bug]: Newer versions of matplotlib ignore xlabel on colorbar axis +* :ghissue:`23699`: [Bug]: Bug with toolbar instantiation in notebook +* :ghissue:`23745`: [Doc]: Minor rcParams/matplotlibrc doc issues +* :ghissue:`23717`: [Bug]: AxesSubplot.get_yticks not returning the actual printed ticks +* :ghissue:`21508`: [Doc]: Create diagram to show rotation directions for 3D plots +* :ghissue:`23709`: [Bug]: colorbar with unattached mappables can't steal space +* :ghissue:`23701`: [Bug]: plt.figure(), plt.close() leaks memory +* :ghissue:`22409`: [Bug]: AttributeError: 'QResizeEvent' object has no attribute 'pos' +* :ghissue:`19609`: DeprecationWarning when changing color maps +* :ghissue:`23716`: MatplotlibDeprecationWarning removal hard-breaks seaborn in 3.6rc1 +* :ghissue:`23719`: [Bug]: register_cmap deprecation message seems wrong +* :ghissue:`23707`: test_Normalize fails on aarch64/ppc64le/s390x +* :ghissue:`21107`: [MNT]: Should plt.xticks() get a minor keyword argument +* :ghissue:`23679`: [Doc]: Deprecated modules not in docs +* :ghissue:`19550`: Arc and pathpatch_2d_to_3d plots full ellipse +* :ghissue:`23329`: [Bug]: ``plt.autoscale()`` fails for partial ``Arc`` +* :ghissue:`11266`: Arc patch ignoring theta1/theta2 when added to Axes via PatchCollection +* :ghissue:`4067`: 'Poly3DCollection' object has no attribute '_facecolors2d' +* :ghissue:`23622`: [MNT]: make.bat not parsing sphinxopt +* :ghissue:`23459`: [Bug]: 'Line3D' object has no attribute '_verts3d' +* :ghissue:`23653`: [Bug]: macosx subplot tool causes segfault when window closed +* :ghissue:`23660`: [Bug]: Test test_figure.py::test_subfigure_ss[png] FAILED on ppc64le +* :ghissue:`23645`: [MNT]: Python 3.11 manylinux wheels +* :ghissue:`23650`: TTF fonts loaded from file are not embedded/displayed properly when saved to pdf +* :ghissue:`23583`: [Doc]: Document the position parameter in apply_aspect() +* :ghissue:`23386`: setuptools_scm-git-archive is obsolete +* :ghissue:`23220`: [Doc]: Clarify ``offset`` parameter in linestyle +* :ghissue:`22746`: [Doc]: Document that rcParams['font.family'] can be a list +* :ghissue:`8187`: Axes doesn't have ````legends```` attribute? +* :ghissue:`23580`: [Bug]: TypeError when plotting against list of datetime.date where 0th element of list is None +* :ghissue:`15514`: Relevant methods are only documented in base classes and thus not easily discoverable +* :ghissue:`21611`: DOC: Add conda environment instructions to developers guide +* :ghissue:`23487`: [Bug]: scatter plot color settings discarded unless c given +* :ghissue:`22977`: [Bug]: offset dash linestyle has no effect in patch objects +* :ghissue:`18883`: Matplotlib would not try to apply all the font in font list to draw all characters in the given string. +* :ghissue:`22570`: [ENH]: Provide ``axis('equal')`` for ``Axes3D``. +* :ghissue:`23433`: [Bug]: array-like linewidth raises an error for scatter3D +* :ghissue:`12388`: Legend Title Left Alignment +* :ghissue:`23375`: [Bug]: markerfacecoloralt not supported when drawing errorbars +* :ghissue:`17973`: DOC: matplotlib.__doc__ not included in online docs ? +* :ghissue:`23474`: [Bug]: ``\,`` and ``\mathrm{\,}`` are not identical in Mathtext when using CM and STIX +* :ghissue:`8715`: event handlers have different signatures across backends +* :ghissue:`18271`: PGF uses the minimal document class +* :ghissue:`23324`: [Bug]: Exception not handled in widgetlock() +* :ghissue:`15710`: doc for type of tz parameter is inconsistent throughout dates.py +* :ghissue:`21165`: Hexbin marginals need a test for linear scaling +* :ghissue:`23105`: [MNT]: Deprecate per-backend customization of draw_if_interactive +* :ghissue:`23147`: [Bug]: with setuptools>=60, cannot find msbuild +* :ghissue:`23379`: [Bug]: Offset notation on y-axis can overlap with a long title +* :ghissue:`22819`: [Doc]: Make rect argument consistent in the docstrings +* :ghissue:`23172`: [Bug]: Calling matplotlib.pyplot.show() outside of matplotlib.pyplot.rc_context no longer works +* :ghissue:`23019`: [Bug]: ``UnicodeDecodeError`` when using some special and accented characters in TeX +* :ghissue:`23334`: [Doc]: Tk embedding example crashes Spyder +* :ghissue:`23298`: [Bug]: get_backend() clears figures from Gcf.figs if they were created under rc_context +* :ghissue:`21942`: [ENH]: add width/height_ratios to subplots and friends +* :ghissue:`23028`: [ENH]: contour kwarg for negative_linestyle +* :ghissue:`19223`: Certain non-hashable parameters to text() give cryptic error messages +* :ghissue:`18351`: Add the ability to plot striped lines +* :ghissue:`23205`: [Bug]: URL-area not rotated in PDFs +* :ghissue:`23268`: [Bug]: hyphen renders different length depending on presence of MathText +* :ghissue:`23308`: [Bug]: set_visible() not working for 3d projection +* :ghissue:`23296`: Set_color method for line2d object in latest document not work +* :ghissue:`22992`: [Bug]: test_image_comparison_expect_rms nondeterministic failure +* :ghissue:`23008`: [ENH]: Use ``\genfrac`` in display style? +* :ghissue:`23214`: [MNT]: Rename examples with "test" in the name +* :ghissue:`17852`: Thin space missing after mathtext operators +* :ghissue:`12078`: Inconsistency in keyword-arguments ncol/ncols, nrow/nrows +* :ghissue:`23239`: [Doc]: steps is not implemented in line styles. +* :ghissue:`23151`: [MNT]: default date limits... +* :ghissue:`9462`: Misaligned bottoms of subplots for png output with bbox_inches='tight' +* :ghissue:`21369`: [Bug]: ax.invert_xaxis() and ax.invert_yaxis() both flip the X axis +* :ghissue:`20797`: ``macosx`` cursors break with images +* :ghissue:`23084`: [TST] Upcoming dependency test failures +* :ghissue:`22910`: [Bug]: bar_label fails with nan errorbar values +* :ghissue:`23074`: [Bug]: matplotlib crashes if ``_tkinter`` doesn't have ``__file__`` +* :ghissue:`23083`: [Bug]: Confusing error messages +* :ghissue:`22391`: [Doc]: Remove "keywords" line at the bottom of all examples +* :ghissue:`20202`: Daylocator causes frozen computer when used with FuncAnimation +* :ghissue:`22529`: Replace C++ quad contouring code with use of ContourPy +* :ghissue:`21710`: [ENH]: macosx backend does not respect rcParams["savefig.directory"] +* :ghissue:`21880`: [Doc]: rrulewrapper not included in API docs +* :ghissue:`22622`: [Bug]: Gaps and overlapping areas between bins when using float16 +* :ghissue:`23043`: [TST] Upcoming dependency test failures +* :ghissue:`17960`: Line2D object markers are lost when retrieved from legend.get_lines() when linestyle='None' +* :ghissue:`23026`: [MNT]: Require that matplotlibrc/style files use utf-8 (or have an encoding cookie) +* :ghissue:`22947`: [Bug]: Can't use ``plt.sca()`` on axes created using subfigures +* :ghissue:`22623`: [ENH]: support rect with constrained_layout ("layout only to part of the figure") +* :ghissue:`22917`: "ab;cd" missing in subplot_mosaic tutorial +* :ghissue:`22686`: [Bug]: cannot give init value for RangeSlider widget +* :ghissue:`22740`: [MNT]: Add codespell to pre-commit hooks +* :ghissue:`22893`: rainbow text example is broken +* :ghissue:`21571`: [Doc]: Clarify text positioning +* :ghissue:`22092`: [Bug]: Configure subplots dialog freezes for TkAgg with toolmanager +* :ghissue:`22760`: [Bug]: Macosx legend picker doesn't work anymore +* :ghissue:`16369`: Call to input blocks slider input on osx with the default agg 'MacOSX'. It works fine on when TkAgg is used. +* :ghissue:`22915`: [Bug]: figure.raise_window rcParam does not work on MacOSX backend +* :ghissue:`22930`: [Bug]: Regression in dashes due to #22569 +* :ghissue:`22859`: [Bug]: findSystemFonts should not look in subdirectories of C:\Windows\Fonts\ +* :ghissue:`22882`: Missing ``f`` prefix on f-strings +* :ghissue:`22738`: [MNT]: make Axes.cla an alias for Axes.clear in all cases +* :ghissue:`22708`: [TST] Upcoming dependency test failures +* :ghissue:`8388`: Proposed ENH: Allow user to turn off breaking of streamlines in streamplot +* :ghissue:`20755`: [Bug]: make_norm_from_scale should create picklable classes even when used in-line. +* :ghissue:`18249`: Expand the explanation of the Object-Oriented interface +* :ghissue:`22792`: [Bug]: .eps greyscale hatching of patches when lw=0 +* :ghissue:`22630`: [ENH]: enable passing of projection keyword to Axes.inset_axes +* :ghissue:`22414`: [Bug]: bar_label overlaps bars when y-axis is inverted +* :ghissue:`22726`: [Bug]: tripcolor ignores clim +* :ghissue:`21635`: [ENH]: Add a nightly wheel build +* :ghissue:`9994`: document where nightly wheels are published +* :ghissue:`22350`: [Bug]: text.usetex Vs. DateFormatter +* :ghissue:`4976`: missing imshow() subplots when using tight_layout() +* :ghissue:`22150`: [ENH]: Tool icons are hardly visible in Tk when using a dark theme +* :ghissue:`22662`: Leave color parameter empty should be fine[ENH]: +* :ghissue:`22671`: [Doc]: plot_format adaption invalidates sphinx cache +* :ghissue:`22582`: [Bug]: FontManager.addfont doesn't accept pathlib.Path of TTF font +* :ghissue:`22657`: [ENH]: vector map +* :ghissue:`16181`: The great API cleanup +* :ghissue:`22636`: [Bug]: Infinite loop when there is single double quote in matplotlibrc +* :ghissue:`22266`: [Doc]: Improve examples in documentation +* :ghissue:`11861`: Figure does not close until script finishes execution +* :ghissue:`19288`: Escape # character in matplotlibrc +* :ghissue:`22579`: [Bug]: Replacement for epoch2num behaves differently (does not accept arrays) +* :ghissue:`22605`: [Bug]: Tool contrast low with dark theme on macosx backend +* :ghissue:`17642`: bring osx backend flush_events to feature parity with other backend +* :ghissue:`19268`: Drawing the canvas does not populate ticklabels on MacOSX backend +* :ghissue:`17445`: MacOSX does not render frames in which new artists are added when blitting +* :ghissue:`10980`: Current versions cannot reproduce rotate_axes_3d_demo.py +* :ghissue:`18451`: MacOSX backend fails with animation in certain scripts +* :ghissue:`22603`: [MNT]: Replace str(n)cpy etc with safe versions (C++) +* :ghissue:`19121`: Handle and label not created for Text with label +* :ghissue:`22563`: [Doc]: annotation_clip=None not correctly documented +* :ghissue:`12528`: Empty axes on draw after blitted animation finishes +* :ghissue:`20991`: [Bug]: Error when using path effect with a PolyCollection +* :ghissue:`19563`: path_effects kwarg triggers exception on 3D scatterplot +* :ghissue:`8650`: System Error in backend_agg. (with a fix!) +* :ghissue:`20294`: ``AxesImage.__str__`` is wrong if the image does not span the full Axes. +* :ghissue:`18066`: Document minimum supported OSX version for macos backend +* :ghissue:`17018`: Add documentation about transparency of frame +* :ghissue:`22403`: [MNT]: Confusing prompt in docs issue template +* :ghissue:`8839`: mpl_connect silently does nothing when passed an invalid event type string +* :ghissue:`22343`: [MNT]: Delay (or make pending) the deprecation of set_constrained_layout/set_tight_layout +* :ghissue:`21554`: [Bug]: ``ValueError`` upon deepcopy of a ``Figure`` object +* :ghissue:`22369`: [Doc]: Incorrect comment in example code for creating adjacent subplots +* :ghissue:`19174`: connectionstyle arc3 with high rad value pushes up data interval of x-axis and y-axis. +* :ghissue:`8351`: seaborn styles make "+", "x" markers invisible; proposed workaround for shipped styles +* :ghissue:`22278`: Deprecate/remove maxdict +* :ghissue:`19276`: imshow with very large arrays not working as expected +* :ghissue:`22035`: [ENH]: Specify a custom focal length / FOV for the 3d camera +* :ghissue:`22264`: [Bug]: new constrained_layout causes axes to go invisible(?) +* :ghissue:`21774`: [MNT]: Improvements to widget tests +* :ghissue:`18722`: Consider removing AFM+mathtext support +* :ghissue:`21540`: [Bug]: cm fontset in log scale does not use Unicode minus +* :ghissue:`22062`: [Bug]: Autopositioned title overlaps with offset text +* :ghissue:`22093`: [Bug]: AttributeError: 'AxesSubplot' object has no attribute 'add_text' +* :ghissue:`22012`: [Bug]: Mouseover coordinate/value text should be right aligned +* :ghissue:`21995`: [Bug]: triplot with 'ls' argument yields TypeError +* :ghissue:`20249`: MatplotlibDeprecationWarning when updating rcparams +* :ghissue:`15781`: MatplotlibDeprecationWarning examples.directory is deprecated +* :ghissue:`13118`: No MatplotlibDeprecationWarning for default rcParams +* :ghissue:`21978`: Remove logging debug of loaded modules +* :ghissue:`11738`: pgf backend doesn't make background transparent +* :ghissue:`18039`: Add ``_repr_html_`` for fonts +* :ghissue:`21970`: [Bug]: tight layout breaks with toolbar.push_current() +* :ghissue:`14850`: No icon showing up with macosx backend +* :ghissue:`17283`: Create Date Formatter/Locator Reference +* :ghissue:`21761`: [Doc]: add how to know available fonts... +* :ghissue:`21863`: [Doc]: Remove example "prop_cycle property markevery in rcParams" +* :ghissue:`10241`: Axes3D.view_init elevation issue between 270 and 360 degrees +* :ghissue:`14453`: add third angle to view_init() +* :ghissue:`20486`: Modifier key press events not recognized on MacOSX backend +* :ghissue:`9837`: MacOS: Key modifiers deprecated +* :ghissue:`11416`: RuntimeError: adjustable='datalim' is not allowed when both axes are shared. +* :ghissue:`17711`: inset_locator.mark_inset() misplaces box connectors +* :ghissue:`20854`: [Doc]: Incorrect copyright start year at the bottom of devdocs page +* :ghissue:`21394`: [Bug]: Subplot title does not obey padding +* :ghissue:`20998`: [Bug]: ToolManager does not respect rcParams["keymap."] set after import time +* :ghissue:`7075`: Superscripts in axis label cut when saving .eps with bbox_inches="tight" +* :ghissue:`21514`: [Doc]: Error message of validate_whiskers is not updated +* :ghissue:`21532`: [Doc]: subplot_mosaic docstring should link to the tutorial +* :ghissue:`16550`: Docs: performance discussion of tight_layout +* :ghissue:`21378`: [ENH]: use new style format strings for colorbar ticks +* :ghissue:`19323`: Streamplot color mapping fails on (near-)empty array. +* :ghissue:`19559`: Axes.get_xticks() returns a numpy array but Axes.get_xticks(minor=True) returns a plain list +* :ghissue:`21526`: [Doc]: Little Typo on Introductory Tutorial +* :ghissue:`19195`: Rotate Markers in functions like plot, scatter, etcetera +* :ghissue:`21364`: [Bug]: double free when FT2Font constructor is interrupted by KeyboardInterrupt +* :ghissue:`16581`: Can't not refresh new font in running interpreter +* :ghissue:`21162`: [ENH]: saving images in webp format +* :ghissue:`18168`: The example of the testing decorator does not work. +* :ghissue:`20943`: [Bug]: Deepcopy of TextPath fails +* :ghissue:`21101`: [Bug]: Errorbars separated from markers with negative errors +* :ghissue:`17986`: MEP22 per-backend tool registration +* :ghissue:`4938`: Feature request: add option to disable mathtext parsing +* :ghissue:`11435`: plt.subplot eats my subplots diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.6.1.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.6.1.rst new file mode 100644 index 0000000000000000000000000000000000000000..d47dc28fa076fafb5ea49676dba0566ef262638c --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.6.1.rst @@ -0,0 +1,143 @@ +.. _github-stats-3-6-1: + +GitHub statistics for 3.6.1 (Oct 08, 2022) +========================================== + +GitHub statistics for 2022/09/16 (tag: v3.6.0) - 2022/10/08 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 22 issues and merged 80 pull requests. +The full list can be seen `on GitHub `__ + +The following 19 authors contributed 129 commits. + +* Antony Lee +* baharev +* David Stansby +* dependabot[bot] +* Eli Rykoff +* Elliott Sales de Andrade +* erykoff +* Greg Lucas +* hannah +* Ian Hunt-Isaak +* Jody Klymak +* melissawm +* Oscar Gustafsson +* Ruth Comer +* slackline +* Steffen Rehberg +* Thomas A Caswell +* Tim Hoffmann +* مهدي شينون (Mehdi Chinoune) + +GitHub issues and pull requests: + +Pull Requests (80): + +* :ghpull:`24124`: Backport PR #24111 on branch v3.6.x (FIX: add missing method to ColormapRegistry) +* :ghpull:`24111`: FIX: add missing method to ColormapRegistry +* :ghpull:`24117`: Backport PR #24113 on branch v3.6.x (Add exception class to pytest.warns calls) +* :ghpull:`24116`: Backport PR #24115 on branch v3.6.x (Fix mask lookup in fill_between for NumPy 1.24+) +* :ghpull:`24113`: Add exception class to pytest.warns calls +* :ghpull:`24115`: Fix mask lookup in fill_between for NumPy 1.24+ +* :ghpull:`24112`: Backport PR #24109 on branch v3.6.x (DOC: add API change note for colorbar deprecation) +* :ghpull:`24109`: DOC: add API change note for colorbar deprecation +* :ghpull:`24107`: Backport PR #24088 on branch v3.6.x (MNT: make orphaned colorbar deprecate versus raise) +* :ghpull:`24088`: MNT: make orphaned colorbar deprecate versus raise +* :ghpull:`24103`: Backport PR #23684 on branch v3.6.x (Fix rectangle and hatches for colorbar) +* :ghpull:`23684`: Fix rectangle and hatches for colorbar +* :ghpull:`24087`: Backport PR #24084 on branch v3.6.x (Revert argument checking for label_mode) +* :ghpull:`24084`: Revert argument checking for label_mode +* :ghpull:`24078`: Backport PR #24047 on branch v3.6.x (Revert #22360: Let TeX handle multiline strings itself) +* :ghpull:`24047`: Revert #22360: Let TeX handle multiline strings itself +* :ghpull:`24077`: Backport PR #24054 on branch v3.6.x ( DOC: Move OO-examples from pyplot section) +* :ghpull:`24054`: DOC: Move OO-examples from pyplot section +* :ghpull:`24072`: Backport PR #24069 on branch v3.6.x (Clarification of marker size in scatter) +* :ghpull:`24073`: Backport PR #24070 on branch v3.6.x (DOC: colorbar may steal from array of axes) +* :ghpull:`24070`: DOC: colorbar may steal from array of axes +* :ghpull:`24069`: Clarification of marker size in scatter +* :ghpull:`24059`: Backport PR #23638 on branch v3.6.x (FIX: correctly handle generic font families in svg text-as-text mode) +* :ghpull:`23638`: FIX: correctly handle generic font families in svg text-as-text mode +* :ghpull:`24048`: Backport PR #24045 on branch v3.6.x (Fix _FigureManagerGTK.resize on GTK4) +* :ghpull:`24055`: Backport PR #24046 on branch v3.6.x (Ignore 'CFMessagePort: bootstrap_register' messages) +* :ghpull:`24046`: Ignore 'CFMessagePort: bootstrap_register' messages +* :ghpull:`24051`: Backport PR #24037 on branch v3.6.x ([DOC]: make spanselector example codeblock continuous) +* :ghpull:`24037`: [DOC]: make spanselector example codeblock continuous +* :ghpull:`24045`: Fix _FigureManagerGTK.resize on GTK4 +* :ghpull:`24043`: Backport PR #24041 on branch v3.6.x (DOC: Fix incorrect redirect) +* :ghpull:`24030`: Backport PR #24019 on branch v3.6.x (Don't require FigureCanvas on backend module more) +* :ghpull:`24040`: Backport PR #24018 on branch v3.6.x (When comparing eps images, run ghostscript with -dEPSCrop.) +* :ghpull:`24018`: When comparing eps images, run ghostscript with -dEPSCrop. +* :ghpull:`24033`: Backport PR #24032 on branch v3.6.x (Reword SpanSelector example.) +* :ghpull:`24029`: Backport PR #24026 on branch v3.6.x (Don't modify Axes property cycle in stackplot) +* :ghpull:`23994`: Backport PR #23964 on branch v3.6.x (Fix issue with empty line in ps backend) +* :ghpull:`24019`: Don't require FigureCanvas on backend module more +* :ghpull:`24026`: Don't modify Axes property cycle in stackplot +* :ghpull:`24027`: Backport PR #23904 on branch v3.6.x (added a reversing section to colormap reference) +* :ghpull:`24017`: Backport PR #24014 on branch v3.6.x (Bump pypa/cibuildwheel from 2.10.1 to 2.10.2) +* :ghpull:`24014`: Bump pypa/cibuildwheel from 2.10.1 to 2.10.2 +* :ghpull:`24007`: Backport PR #24004 on branch v3.6.x (Increase consistency in tutorials and examples) +* :ghpull:`23964`: Fix issue with empty line in ps backend +* :ghpull:`23904`: added a reversing section to colormap reference +* :ghpull:`23990`: Backport PR #23978 on branch v3.6.x (DOC: Suppress IPython output in examples and tutorials where not needed) +* :ghpull:`23978`: DOC: Suppress IPython output in examples and tutorials where not needed +* :ghpull:`23916`: Backport PR #23912 on branch v3.6.x (FIX: only expect FigureCanvas on backend module if using new style) +* :ghpull:`23989`: Backport PR #23944 on branch v3.6.x (FIX: ValueError when hexbin is run with empty arrays and log scaling.) +* :ghpull:`23944`: FIX: ValueError when hexbin is run with empty arrays and log scaling. +* :ghpull:`23988`: Backport PR #23987 on branch v3.6.x (FIX: do not set constrained layout on false-y values) +* :ghpull:`23987`: FIX: do not set constrained layout on false-y values +* :ghpull:`23982`: Backport PR #23980 on branch v3.6.x (DOC: Move Quick Start Tutorial to first position) +* :ghpull:`23979`: Backport PR #23975 on branch v3.6.x (Reword docstring of reset_position.) +* :ghpull:`23975`: Reword docstring of reset_position. +* :ghpull:`23966`: Backport PR #23930 on branch v3.6.x (Fix edge color, links, wording; closes matplotlib/matplotlib#23895) +* :ghpull:`23971`: Backport PR #23906 on branch v3.6.x (Edit mplot3d examples for correctness and consistency) +* :ghpull:`23906`: Edit mplot3d examples for correctness and consistency +* :ghpull:`23963`: Backport PR #23957 on branch v3.6.x (Bump pypa/cibuildwheel from 2.9.0 to 2.10.1) +* :ghpull:`23930`: Fix edge color, links, wording; closes matplotlib/matplotlib#23895 +* :ghpull:`23910`: FIX: do not append None to stream in ps +* :ghpull:`23957`: Bump pypa/cibuildwheel from 2.9.0 to 2.10.1 +* :ghpull:`23960`: Backport PR #23947 on branch v3.6.x (Fix building on MINGW) +* :ghpull:`23942`: DOC: fix versions in v3.6.x doc switcher +* :ghpull:`23961`: Backport PR #23958 on branch v3.6.x (DOC: Remove Adding Animations section) +* :ghpull:`23958`: DOC: Remove Adding Animations section +* :ghpull:`23947`: Fix building on MINGW +* :ghpull:`23945`: Backport PR #23941 on branch v3.6.x (consistent notation for minor/patch branches) +* :ghpull:`23956`: Backport PR #23751 on branch v3.6.x (FIX: show bars when the first location is nan) +* :ghpull:`23751`: FIX: show bars when the first location is nan +* :ghpull:`23938`: Backport PR #23919 on branch v3.6.x (DOC: remove dead "Show Source" links) +* :ghpull:`23952`: Backport PR #23951 on branch v3.6.x (DOC: Make animation continuous) +* :ghpull:`23949`: DOC: Display "dev" instead of "devdocs" in the version switcher +* :ghpull:`23940`: Fix typos in github_stats.rst +* :ghpull:`23936`: Backport PR #23935 on branch v3.6.x (DOC: fix versions is doc switcher) +* :ghpull:`23933`: Backport PR #23932 on branch v3.6.x (DOC: Fix formatting in image tutorial) +* :ghpull:`23932`: DOC: Fix formatting in image tutorial +* :ghpull:`23926`: Backport PR #23925 on branch v3.6.x (FIX: use process_event in dpi changes on macosx backend) +* :ghpull:`23925`: FIX: use process_event in dpi changes on macosx backend +* :ghpull:`23912`: FIX: only expect FigureCanvas on backend module if using new style + +Issues (22): + +* :ghissue:`23981`: [ENH]: Default ``matplotlib.colormaps[None]`` to call ``matplotlib.colormaps[matplotlib.rcParams['image.cmap']]``? +* :ghissue:`24106`: [Bug]: fill_between gives IndexError with numpy 1.24.0.dev +* :ghissue:`24053`: Cartopy axes_grid_basic example broken by Matplotlib 3.6 +* :ghissue:`23977`: [Bug]: Eqnarray in AnchoredText results in misplaced text (new in v3.6.0) +* :ghissue:`23973`: [Bug]: ValueError: Unable to determine Axes to steal space for Colorbar. +* :ghissue:`23456`: [Bug]: Horizontal colorbars drawn incorrectly with hatches +* :ghissue:`15922`: Pyplot gallery section is mostly OO examples +* :ghissue:`23700`: [Doc]: scatter points +* :ghissue:`23492`: [Bug]: svg backend does not use configured generic family lists +* :ghissue:`22528`: [Bug]: problem with font property in text elements of svg figures +* :ghissue:`23911`: [Bug]: 3.6.0 doesn't interact well with pycharm throwing "backend_interagg" exception +* :ghissue:`24024`: stackplot should not change Axes cycler +* :ghissue:`23954`: [Bug]: Text label with empty line causes a "TypeError: cannot unpack non-iterable NoneType object" in PostScript backend +* :ghissue:`23922`: [Bug]: Refactor of hexbin for 3.6.0 crashes with empty arrays and log scaling +* :ghissue:`23986`: [Bug]: Constrained layout UserWarning even when False +* :ghissue:`23895`: [Bug]: 3D surface is not plotted for the contour3d_3 example in the gallery +* :ghissue:`23955`: [Doc]: Adding animations to Youtube channel +* :ghissue:`23943`: [Bug]: Couldn't build matplotlib 3.6.0 with both Clang-15 and GCC-12 +* :ghissue:`23687`: [Bug]: barplot does not show anything when x or bottom start and end with NaN +* :ghissue:`23876`: [Doc]: Missing source files +* :ghissue:`23909`: [Doc]: add animation examples to show animated subplots +* :ghissue:`23921`: [Bug]: resize_event deprecation warnings when creating figure on macOS with version 3.6.0 diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.6.2.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.6.2.rst new file mode 100644 index 0000000000000000000000000000000000000000..f633448aeaf14dcd9e2933a7d18378cfddbcf4ec --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.6.2.rst @@ -0,0 +1,151 @@ +.. _github-stats-3-6-2: + +GitHub statistics for 3.6.2 (Nov 02, 2022) +========================================== + +GitHub statistics for 2022/10/08 (tag: v3.6.1) - 2022/11/02 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 21 issues and merged 86 pull requests. +The full list can be seen `on GitHub `__ + +The following 22 authors contributed 27 commits. + +* Antony Lee +* Carsten Schnober +* dependabot[bot] +* Elliott Sales de Andrade +* hannah +* j1642 +* Jaco Verster +* jacoverster +* Jae-Joon Lee +* Jeffrey Aaron Paul +* jeffreypaul15 +* Jody Klymak +* Kostya Farber +* Kyle Sunden +* Martok +* Muhammad Abdur Rakib +* Oscar Gustafsson +* Pavel Grunt +* Ruth Comer +* Thomas A Caswell +* Tiger Nie +* Tim Hoffmann + +GitHub issues and pull requests: + +Pull Requests (86): + +* :ghpull:`24341`: Backport PR #24301 on branch v3.6.x (Restore get_renderer function in deprecated tight_layout) +* :ghpull:`24301`: Restore get_renderer function in deprecated tight_layout +* :ghpull:`24337`: Backport PR #24238 on branch v3.6.x (Update example and docstring to encourage the use of functools.partial in FuncAnimation) +* :ghpull:`24336`: Backport PR #24335 on branch v3.6.x (Fix missing word in ImageMagickWriter docstring.) +* :ghpull:`20358`: Updates example and docstring to encourage the use of functools.partial in FuncAnimation +* :ghpull:`24238`: Update example and docstring to encourage the use of functools.partial in FuncAnimation +* :ghpull:`24335`: Fix missing word in ImageMagickWriter docstring. +* :ghpull:`24330`: Backport PR #24282 on branch v3.6.x (Fix some minor docstring typos) +* :ghpull:`24323`: Backport PR #24320 on branch v3.6.x (DOC: add warning note to imsave) +* :ghpull:`24282`: Fix some minor docstring typos +* :ghpull:`24327`: Backport PR #24310 on branch v3.6.x (show axes changing in animate decay example) +* :ghpull:`24310`: show axes changing in animate decay example +* :ghpull:`24324`: Backport PR #24259 on branch v3.6.x (Move empty hexbin fix to make_norm_from_scale.) +* :ghpull:`24325`: Backport PR #24095 on branch v3.6.x (nb/webagg: Move mouse events to outer canvas div) +* :ghpull:`24326`: Backport PR #24318 on branch v3.6.x (Bump pypa/cibuildwheel from 2.11.1 to 2.11.2) +* :ghpull:`24318`: Bump pypa/cibuildwheel from 2.11.1 to 2.11.2 +* :ghpull:`24095`: nb/webagg: Move mouse events to outer canvas div +* :ghpull:`24259`: Move empty hexbin fix to make_norm_from_scale. +* :ghpull:`24320`: DOC: add warning note to imsave +* :ghpull:`24297`: Backport PR #24294 on branch v3.6.x (Run test if fontconfig is present) +* :ghpull:`24294`: Run test if fontconfig is present +* :ghpull:`24286`: Backport PR #24284 on branch v3.6.x (Remove comment about cmap from voxels docstring) +* :ghpull:`24284`: Remove comment about cmap from voxels docstring +* :ghpull:`24280`: Backport PR #24145 on branch v3.6.x (Updated Angles on Bracket arrow styles example to make angles clear #23176) +* :ghpull:`24145`: Updated Angles on Bracket arrow styles example to make angles clear #23176 +* :ghpull:`24270`: Backport PR #24265 on branch v3.6.x (Restore (and warn on) seaborn styles in style.library) +* :ghpull:`24271`: Backport PR #24266 on branch v3.6.x (TST: Increase fp tolerance on more tests for new NumPy) +* :ghpull:`24266`: TST: Increase fp tolerance on more tests for new NumPy +* :ghpull:`24265`: Restore (and warn on) seaborn styles in style.library +* :ghpull:`24267`: Backport PR #24261 on branch v3.6.x (Fix pie chart in demo_agg_filter.py) +* :ghpull:`24261`: Fix pie chart in demo_agg_filter.py +* :ghpull:`24258`: Backport PR #24108 on branch v3.6.x (Add 3D plots to plot_types doc page) +* :ghpull:`24108`: Add 3D plots to plot_types doc page +* :ghpull:`24255`: Backport PR #24250 on branch v3.6.x (Fix key reporting in pick events) +* :ghpull:`24250`: Fix key reporting in pick events +* :ghpull:`24237`: Backport PR #24197 on branch v3.6.x (Properly set and inherit backend_version.) +* :ghpull:`24197`: Properly set and inherit backend_version. +* :ghpull:`24234`: Backport PR #23607 on branch v3.6.x (DOC: document that appearance is part of our stable API) +* :ghpull:`24233`: Backport PR #23985 on branch v3.6.x (Improve rubberband rendering in wx and tk) +* :ghpull:`24232`: Backport PR #24096 on branch v3.6.x ([DOC]: Add simple animation scatter plot to the example documentation) +* :ghpull:`24231`: Backport PR #24009 on branch v3.6.x (Fix evaluating colormaps on non-numpy arrays) +* :ghpull:`24230`: Backport PR #24229 on branch v3.6.x (FIX: do not mutate dictionaries passed in by user) +* :ghpull:`23607`: DOC: document that appearance is part of our stable API +* :ghpull:`23985`: Improve rubberband rendering in wx and tk +* :ghpull:`24096`: [DOC]: Add simple animation scatter plot to the example documentation +* :ghpull:`24009`: Fix evaluating colormaps on non-numpy arrays +* :ghpull:`24229`: FIX: do not mutate dictionaries passed in by user +* :ghpull:`24223`: Backport PR #24184 on branch v3.6.x (Add tests for ToolManager) +* :ghpull:`24219`: Backport PR #23995 on branch v3.6.x (DOC: Lowercase some parameter names) +* :ghpull:`23995`: DOC: Lowercase some parameter names +* :ghpull:`24184`: Add tests for ToolManager +* :ghpull:`24211`: Backport PR #24202 on branch v3.6.x (Bump pypa/cibuildwheel from 2.10.2 to 2.11.1) +* :ghpull:`24214`: Backport PR #24169 on branch v3.6.x ([DOC]: added parent link for ``FuncAnimation`` and ``ArtistAnimation``) +* :ghpull:`24169`: [DOC]: add parent link for ``FuncAnimation`` and ``ArtistAnimation`` +* :ghpull:`24202`: Bump pypa/cibuildwheel from 2.10.2 to 2.11.1 +* :ghpull:`24206`: Backport PR #24081 on branch v3.6.x (TST: force test with shared test image to run in serial) +* :ghpull:`24181`: Backport PR #24177 on branch v3.6.x (Don't simplify paths used for autoscaling) +* :ghpull:`24200`: Backport PR #24193 on branch v3.6.x (DOC: Explain gridsize in hexbin()) +* :ghpull:`24201`: Backport PR #24194 on branch v3.6.x (DOC: Improve plot_directive documentation) +* :ghpull:`24194`: DOC: Improve plot_directive documentation +* :ghpull:`24193`: DOC: Explain gridsize in hexbin() +* :ghpull:`24192`: Backport PR #24187 on branch v3.6.x (DOC: Fix toc structure in explain/interactive) +* :ghpull:`24186`: Backport PR #24157 on branch v3.6.x (test only PR milestoning guidance) +* :ghpull:`24187`: DOC: Fix toc structure in explain/interactive +* :ghpull:`24190`: DOC: fix markup +* :ghpull:`24157`: test only PR milestoning guidance +* :ghpull:`24183`: Backport PR #24178 on branch v3.6.x (Fall back to Python-level Thread for GUI warning) +* :ghpull:`24180`: Backport PR #24173 on branch v3.6.x (TST: convert nose-style tests) +* :ghpull:`24178`: Fall back to Python-level Thread for GUI warning +* :ghpull:`24177`: Don't simplify paths used for autoscaling +* :ghpull:`24173`: TST: convert nose-style tests +* :ghpull:`24174`: Backport PR #24171 on branch v3.6.x (Fix example where wrong variable was used) +* :ghpull:`24176`: Backport PR #24167 on branch v3.6.x (FIX: turn off layout engine tightbbox) +* :ghpull:`24167`: FIX: turn off layout engine tightbbox +* :ghpull:`24171`: Fix example where wrong variable was used +* :ghpull:`24172`: Backport PR #24158 on branch v3.6.x (Fix Qt with PySide6 6.4.0) +* :ghpull:`24158`: Fix Qt with PySide6 6.4.0 +* :ghpull:`24165`: Backport PR #24164 on branch v3.6.x (Fix argument order in hist() docstring.) +* :ghpull:`24164`: Fix argument order in hist() docstring. +* :ghpull:`24151`: Backport PR #24149 on branch v3.6.x (FIX: handle input to ax.bar that is all nan) +* :ghpull:`24149`: FIX: handle input to ax.bar that is all nan +* :ghpull:`24146`: Backport PR #24137 on branch v3.6.x (Add note about blitting and zorder in animations) +* :ghpull:`24137`: Add note about blitting and zorder in animations +* :ghpull:`24134`: Backport PR #24130 on branch v3.6.x (DOC: align contour parameter doc with implementation) +* :ghpull:`24130`: DOC: align contour parameter doc with implementation +* :ghpull:`24081`: TST: force test with shared test image to run in serial + +Issues (21): + +* :ghissue:`20326`: FuncAnimation Named Arguments +* :ghissue:`24332`: [Bug]: backend bug in matplotlib==3.6.1 with python3.11 and PySide6==6.4.0.1 +* :ghissue:`24296`: [Doc]: Axes limits not updated in animate decay +* :ghissue:`24089`: [Bug]: Resizing does not work in WebAgg backend in Safari +* :ghissue:`3657`: matplotlib.pyplot.imsave colormaps some grayscale images before saving them +* :ghissue:`24060`: [TST] Upcoming dependency test failures +* :ghissue:`24264`: [Bug]: Setting matplotlib.pyplot.style.library['seaborn-colorblind'] result in key error on matplotlib v3.6.1 +* :ghissue:`23900`: [Doc]: Adding some 3D plots to plot gallery +* :ghissue:`24199`: [Bug]: pick events do not forward mouseevent-key on Linux +* :ghissue:`23969`: [ENH]: Make rubber band more visible +* :ghissue:`23132`: [Bug]: call cmap object on torch.tensor will output first element all 0 +* :ghissue:`21349`: [Bug]: Hexbin gridsize interpreted differently for x and y +* :ghissue:`22905`: [Doc]: Duplicated toc entries +* :ghissue:`24094`: [Bug]: macOS: PyPy 3.8 (v7.3.9) threading get_native_id Broken +* :ghissue:`24097`: [Bug]: ax.hist density not auto-scaled when using histtype='step' +* :ghissue:`24148`: remove nose-style test classes +* :ghissue:`24133`: [Bug]: Incorrect crop after constrained layout with equal aspect ratio and bbox_inches = tight +* :ghissue:`24155`: [Bug]: TypeError: int() argument must be a string, a bytes-like object or a number, not 'KeyboardModifier' +* :ghissue:`24127`: [Bug]: ax.bar raises for all-nan data on matplotlib 3.6.1 +* :ghissue:`2959`: artists zorder is ignored during animations +* :ghissue:`24121`: [Doc]: Contour functions: auto-generated levels diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.6.3.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.6.3.rst new file mode 100644 index 0000000000000000000000000000000000000000..b1d17a791c870a81a9b056c37da9b728a5ebcc41 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.6.3.rst @@ -0,0 +1,165 @@ +.. _github-stats-3-6-3: + +GitHub statistics for 3.6.3 (Jan 11, 2023) +========================================== + +GitHub statistics for 2022/11/02 (tag: v3.6.2) - 2023/01/11 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 16 issues and merged 107 pull requests. +The full list can be seen `on GitHub `__ + +The following 20 authors contributed 198 commits. + +* Antony Lee +* Chahak Mehta +* David Stansby +* Elliott Sales de Andrade +* Eric Larson +* hannah +* iofall +* Jody Klymak +* Kaidong Hu +* Kyle Sunden +* matt statham +* Matthias Bussonnier +* Muhammad Abdur Rakib +* Oscar Gustafsson +* ramvikrams +* Ruth Comer +* Steffen Rehberg +* Thomas A Caswell +* Tim Hoffmann +* yuanx749 + +GitHub issues and pull requests: + +Pull Requests (107): + +* :ghpull:`24939`: Backport PR #23390 on branch v3.6.x (FIX: colorbar contour with log norm should default to log locator and formatter...) +* :ghpull:`24936`: Backport PR #24927 on branch v3.6.x (DOC: Remove space after directive name, before double-colon) +* :ghpull:`23390`: FIX: colorbar contour with log norm should default to log locator and formatter... +* :ghpull:`24932`: Backport PR #24783 on branch v3.6.x (inset locator fix with tests added) +* :ghpull:`24783`: inset locator fix with tests added +* :ghpull:`24927`: DOC: Remove space after directive name, before double-colon +* :ghpull:`24881`: Backport PR #24880 on branch v3.6.x (Minor cleanups to named colors example.) +* :ghpull:`24876`: Backport PR #24873 on branch v3.6.x (Copy-edit fonts docs.) +* :ghpull:`24857`: Backport PR #24856 on branch v3.6.x (fix typo) +* :ghpull:`24852`: Backport PR #24843 on branch v3.6.x (Show that fill_between and span_where provide similar functionalities.) +* :ghpull:`24808`: Backport PR #24807 on branch v3.6.x (Axes.stem docstring document orientation as literals) +* :ghpull:`24807`: Axes.stem docstring document orientation as literals +* :ghpull:`24791`: Backport PR #24785 on branch v3.6.x (Fix random generation of single floats) +* :ghpull:`24777`: Backport PR #24772 on branch v3.6.x (Fix Left ventricle bullseye example) +* :ghpull:`24775`: Backport PR #24774 on branch v3.6.x (DOC: fix strip_chart example with numpy 1.24) +* :ghpull:`24765`: Backport PR #24764 on branch v3.6.x (DOC: ``subplot_mosaic`` tutorial - clarify ratios keywords used directly) +* :ghpull:`24739`: Backport PR #24732 on branch v3.6.x (Use masked stack to preserve mask info) +* :ghpull:`24738`: Backport PR #24735 on branch v3.6.x (Correct note about aspect) +* :ghpull:`24732`: Use masked stack to preserve mask info +* :ghpull:`24735`: Correct note about aspect +* :ghpull:`24729`: Backport PR #24715 on branch v3.6.x (Add note that users do not instantiate Axes directly) +* :ghpull:`24715`: Add note that users do not instantiate Axes directly +* :ghpull:`24721`: Backport PR #24607 on branch v3.6.x (DOC: tweak wording on Figure.show warning) +* :ghpull:`24607`: DOC: tweak wording on Figure.show warning +* :ghpull:`24694`: Backport PR #24692 on branch v3.6.x (Avoid rgba8888->argb32 conversion if qt can do it for us.) +* :ghpull:`24692`: Avoid rgba8888->argb32 conversion if qt can do it for us. +* :ghpull:`24684`: Backport PR #24654: Don't manually invalidate cached lines in _update_transScale +* :ghpull:`24687`: Backport PR #24003 on branch v3.6.x (Fix wording and links lifecycle tutorial) +* :ghpull:`24685`: Backport PR #23974 on branch v3.6.x (Fix repeated word typos) +* :ghpull:`24680`: Backport PR #24677 on branch v3.6.x (FIX: do not replace the Axes._children list object) +* :ghpull:`24677`: FIX: do not replace the Axes._children list object +* :ghpull:`24659`: Backport PR #24657 on branch v3.6.x (BUG: Fix bug with mutable input modification) +* :ghpull:`24657`: BUG: Fix bug with mutable input modification +* :ghpull:`24654`: Don't manually invalidate cached lines in _update_transScale. +* :ghpull:`24650`: Backport PR #24645 on branch v3.6.x (Removed 'above' wording from Input hook integration docs (#24632)) +* :ghpull:`24647`: Backport PR #24643 on branch v3.6.x (DOC: annotation coords are not floats) +* :ghpull:`24643`: DOC: annotation coords are not floats +* :ghpull:`24625`: Backport PR #24606: FIX: do not use deprecated API in gtk4 backend +* :ghpull:`24633`: Backport PR #24592 on branch v3.6.x (DOC: Don't try to link paths that are on a different drive) +* :ghpull:`24592`: DOC: Don't try to link paths that are on a different drive +* :ghpull:`24628`: Backport PR #24584 on branch v3.6.x (DOC: add "See Also: draw_idle" reference to pyplot.draw) +* :ghpull:`24584`: DOC: add "See Also: draw_idle" reference to pyplot.draw +* :ghpull:`24601`: Backport PR #24600 on branch v3.6.x (Fix: Gracefully fail the string validator for tuple inputs) +* :ghpull:`24609`: Backport PR #24595 on branch v3.6.x (ci: Stop building wheels on AppVeyor) +* :ghpull:`24616`: Backport PR #24397 on branch v3.6.x (Simplify appveyor to only use conda) +* :ghpull:`24615`: Backport PR #24598 on branch v3.6.x (Check for errors/warnings on failed doc-builds) +* :ghpull:`24606`: FIX: do not use deprecated API in gtk4 backend +* :ghpull:`24612`: Backport PR #23868 on branch v3.6.x (Show errors and warnings in doc CI after build.) +* :ghpull:`24595`: ci: Stop building wheels on AppVeyor +* :ghpull:`24600`: Fix: Gracefully fail the string validator for tuple inputs +* :ghpull:`24593`: Backport PR #24580 on branch v3.6.x (Update the polar transform information in doc #24499) +* :ghpull:`24587`: Backport PR #24579: Add explicit permissions to GitHub Actions +* :ghpull:`24579`: Add explicit permissions to GitHub Actions +* :ghpull:`24561`: Backport PR #24540 on branch v3.6.x (DOC: add note about enabling c++11 support for old gcc) +* :ghpull:`24559`: Backport PR #24299 on branch v3.6.x (Rework style sheet reference example to cycle props) +* :ghpull:`24551`: Backport PR #24548 on branch v3.6.x (DOC: improved the doc for layout_engine.py) +* :ghpull:`24548`: DOC: improved the doc for layout_engine.py +* :ghpull:`24535`: Backport PR #24514 on branch v3.6.x (Fix potential issue in contour) +* :ghpull:`24534`: Backport PR #24521 on branch v3.6.x (Doc: improve spelling and grammar) +* :ghpull:`24533`: Backport PR #24517 on branch v3.6.x (DOC: improve grammar and consistency) +* :ghpull:`24532`: Backport PR #24520 on branch v3.6.x (Doc: Fix grammar and spelling) +* :ghpull:`24514`: Fix potential issue in contour +* :ghpull:`24521`: Doc: improve spelling and grammar +* :ghpull:`24517`: DOC: improve grammar and consistency +* :ghpull:`24520`: Doc: Fix grammar and spelling +* :ghpull:`24515`: Backport PR #24512 on branch v3.6.x (Tweak markup in toolkits tutorials.) +* :ghpull:`24503`: Backport PR #24502 on branch v3.6.x (Remove link from demo_floating_axes title.) +* :ghpull:`24505`: Backport PR #24482 on branch v3.6.x (Use relative frame path in HTMLWriter) +* :ghpull:`24506`: Backport of PR#24488 (Update for pydata-sphinx-theme 0.12.0) +* :ghpull:`24482`: Use relative frame path in HTMLWriter +* :ghpull:`24496`: Backport PR #24495 on branch v3.6.x (Update adding of google analytics key for docs) +* :ghpull:`24495`: Update adding of google analytics key for docs +* :ghpull:`24488`: Update for pydata-sphinx-theme 0.12.0 +* :ghpull:`24485`: Backport PR #24481 on branch v3.6.x (Fix floating-point drift in oscilloscope example) +* :ghpull:`24475`: DOC: Fix examples gallery layout issues +* :ghpull:`24478`: Backport PR #24444 on branch v3.6.x (DOC: AnnotationBbox keyword descriptions) +* :ghpull:`24444`: DOC: AnnotationBbox keyword descriptions +* :ghpull:`24468`: Backport PR #24429 on branch v3.6.x (DOC: Clarify transparency in colors) +* :ghpull:`24466`: Backport PR #24460 on branch v3.6.x (Define autoscale() based on autoscale_None().) +* :ghpull:`24460`: Define autoscale() based on autoscale_None(). +* :ghpull:`24463`: Backport PR #24459 on branch v3.6.x (removed unused variable and fixed text in doc) +* :ghpull:`24459`: removed unused variable and fixed text in doc +* :ghpull:`24458`: Backport PR #24434 on branch v3.6.x (Fix pyplot.figlegend docstring) +* :ghpull:`24434`: Fix pyplot.figlegend docstring +* :ghpull:`24456`: Backport PR #24402 on branch v3.6.x (DOC: Fix title formats in backend api docs) +* :ghpull:`24438`: Backport PR #24435 on branch v3.6.x (Minor improvements to LogLocator docstring) +* :ghpull:`24435`: Minor improvements to LogLocator docstring +* :ghpull:`24426`: Backport PR #24422 on branch v3.6.x (Make QT_API a link in the qt embedding example.) +* :ghpull:`24411`: Backport PR #24407 on branch v3.6.x (Reword "Reordering is not commutative" phrase in tutorial.) +* :ghpull:`24400`: Backport PR #24399 on branch v3.6.x (Fix docstring of Figure.subfigures.) +* :ghpull:`24399`: Fix docstring of Figure.subfigures. +* :ghpull:`24391`: Backport PR #24380 on branch v3.6.x (DOC: Remove the example "Pythonic Matplotlib") +* :ghpull:`24384`: Backport PR #24377 on branch v3.6.x (DOC: Cleanup Spine placement example) +* :ghpull:`24381`: Backport PR #24366 on branch v3.6.x (DOC: Improve Image Slices Viewer example) +* :ghpull:`24382`: Backport PR #24378 on branch v3.6.x (DOC: Cleanup spines usage in examples) +* :ghpull:`24378`: DOC: Cleanup spines usage in examples +* :ghpull:`24366`: DOC: Improve Image Slices Viewer example +* :ghpull:`24370`: Backport PR #24368 on branch v3.6.x (DOC: Install dev dependencies before building matplotlib) +* :ghpull:`24368`: DOC: Install dev dependencies before building matplotlib +* :ghpull:`24365`: Backport PR #24363 on branch v3.6.x (DOC: Fix syntax of suggestion) +* :ghpull:`24358`: Backport PR #24354 on branch v3.6.x (DOC: clarify rc_context resets all rcParams changes) +* :ghpull:`24354`: DOC: clarify rc_context resets all rcParams changes +* :ghpull:`24353`: Backport PR #24343 on branch v3.6.x (Emit "axes not compatible with tight_layout" in a single place.) +* :ghpull:`24343`: Emit "axes not compatible with tight_layout" in a single place. +* :ghpull:`24346`: Backport PR #24344 on branch v3.6.x (Add test for colorbar extend alpha) +* :ghpull:`24344`: Add test for colorbar extend alpha +* :ghpull:`23974`: Fix repeated word typos + +Issues (16): + +* :ghissue:`23389`: [Bug]: Colorbar with log scales wrong format +* :ghissue:`24589`: [Bug]: inset_locator is broken when used with subfigures +* :ghissue:`10160`: Low resolution (dpi problem) with Qt5 backend on new iMac Pro Retina +* :ghissue:`24545`: [Bug]: ``matplotlib.pyplot.scatter`` does not respect mask rules with ``datetime`` +* :ghissue:`24639`: [Bug]: The Axes3D does not work as expected. +* :ghissue:`22169`: [Doc]: figure.show works beyond what is documented +* :ghissue:`23968`: [Bug]: Zoom rubber band lags in larger window +* :ghissue:`24574`: [Bug]: Extension error (sphinx.ext.linkcode) while building docs +* :ghissue:`24602`: ``close_event`` deprecated warning. +* :ghissue:`24518`: [Doc]: ``layout_engine`` description +* :ghissue:`23581`: [BUG]: frame paths relative to the html file when saving an animation to html +* :ghissue:`23976`: [Doc]: Examples Gallery Layout changed to one or two columns +* :ghissue:`24390`: [Doc]: alpha setting for annotation ``TextArea`` +* :ghissue:`24433`: [Doc]: figlegend examples call ``fig.figlegend`` instead of ``plt.figlegend`` or ``fig.legend`` +* :ghissue:`24360`: [ENH]: imshow support for multiple slice image volume +* :ghissue:`24359`: [Bug]: Documentation not so clear that a C/C++-compiler is required to install from source diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.7.0.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.7.0.rst new file mode 100644 index 0000000000000000000000000000000000000000..754c4c1fc059ef13b69d50271407c0e26559f6a5 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.7.0.rst @@ -0,0 +1,681 @@ +.. _github-stats-3-7-0: + +GitHub statistics for 3.7.0 (Feb 13, 2023) +========================================== + +GitHub statistics for 2022/09/16 (tag: v3.6.0) - 2023/02/13 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 120 issues and merged 427 pull requests. +The full list can be seen `on GitHub `__ + +The following 112 authors contributed 1962 commits. + +* Abhijnan Bajpai +* Adrien F. Vincent +* Ahoy Ahoy +* Akshit Tyagi +* Ali Meshkat +* Almar Klein +* Andrés Martínez +* Ante Sikic +* Antony Lee +* Augustin LAVILLE +* baharev +* cargobuild +* Carsten Schnober +* Chahak Mehta +* Charisma Kausar +* David Stansby +* dependabot[bot] +* DerWeh +* Eero Vaher +* Elliott Sales de Andrade +* Eric Larson +* Eric Prestat +* erykoff +* EunHo Lee +* Felix Goudreault +* Greg Lucas +* hannah +* Ian Hunt-Isaak +* Ian Thomas +* intellizEHL +* iofall +* j1642 +* jacoverster +* Jae-Joon Lee +* Jakub Klus +* James Braza +* Jay Stanley +* Jef Myers +* jeffreypaul15 +* Jefro +* Jody Klymak +* John Paul Jepko +* Joseph Fox-Rabinovitz +* Joshua Barrass +* Julian Chen +* Junaid Khan +* Justin Tracey +* Kaidong Hu +* Kanza +* Karan +* Kian Eliasi +* kolibril13 +* Kostya Farber +* Krutarth Patel +* Kyle Sunden +* Leo Singer +* Lucas Ricci +* luke +* Marc Van den Bossche +* Martok +* Marvvxi +* Matthew Feickert +* Mauricio Collares +* MeeseeksMachine +* melissawm +* Mikhail Ryazanov +* Muhammad Abdur Rakib +* noatamir +* NRaudseps +* Olivier Castany +* Oscar Gustafsson +* parthpankajtiwary +* Paul Seyfert +* Pavel Grunt +* Pieter Eendebak +* PIotr Strzelczyk +* Pratim Ugale +* pre-commit-ci[bot] +* ramvikrams +* richardsheridan +* Ruth Comer +* Ryan May +* saranti +* Scott Shambaugh +* Shabnam Sadegh +* Shawn Zhong +* Simon Waldherr +* Skhaki18 +* slackline +* Snipeur060 +* Sourajita Dewasi +* SourajitaDewasi +* Stefanie Molin +* Steffen Rehberg +* Sven Eschlbeck +* sveneschlbeck +* takimata +* tfpf +* Thomas A Caswell +* Tiger Nie +* Tim Hoffmann +* Tom +* Tortar +* tsumli +* tybeller +* vdbma +* Vishal Pankaj Chandratreya +* vivekvedant +* whyvra +* yuanx749 +* zhizheng1 +* مهدي شينون (Mehdi Chinoune) + +GitHub issues and pull requests: + +Pull Requests (427): + +* :ghpull:`25201`: Backport PR #25196 on branch v3.7.x (Add deprecation for setting data with non sequence type in ``Line2D``) +* :ghpull:`25196`: Add deprecation for setting data with non sequence type in ``Line2D`` +* :ghpull:`25197`: Backport PR #25193 on branch v3.7.x (Fix displacement of colorbar for eps with bbox_inches='tight') +* :ghpull:`25193`: Fix displacement of colorbar for eps with bbox_inches='tight' +* :ghpull:`24781`: DOC: restore SHA to footer +* :ghpull:`25188`: Backport PR #25085 on branch v3.7.x (FIX: only try to update blit caches if the canvas we expect) +* :ghpull:`25170`: Backport PR #25097 on branch v3.7.x (fix FigureCanvasTkAgg memory leak via weakrefs) +* :ghpull:`25186`: Backport PR #24893 on branch v3.7.x (STY: make allowed line length 9 longer to 88 from 79) +* :ghpull:`25185`: Backport PR #25183 on branch v3.7.x (FIX: do not use deprecated API internally) +* :ghpull:`25184`: Backport PR #25174 on branch v3.7.x (Accept LA icons for the toolbar) +* :ghpull:`25085`: FIX: only try to update blit caches if the canvas we expect +* :ghpull:`25183`: FIX: do not use deprecated API internally +* :ghpull:`25182`: Backport PR #25052 on branch v3.7.x (Support both Bbox and list for bbox to table/Table) +* :ghpull:`25174`: Accept LA icons for the toolbar +* :ghpull:`25052`: Support both Bbox and list for bbox to table/Table +* :ghpull:`25095`: Backport PR #23442 on branch v3.7.x (Remove need to detect math mode in pgf strings) +* :ghpull:`25097`: fix FigureCanvasTkAgg memory leak via weakrefs +* :ghpull:`25167`: Backport PR #25122 on branch v3.7.x (FIX: scaling factor for window with negative value) +* :ghpull:`25122`: FIX: scaling factor for window with negative value +* :ghpull:`25161`: Backport PR #25158 on branch v3.7.x (Disconnect SubplotTool destroyer callback on tool_fig close) +* :ghpull:`25160`: Backport PR #25129 on branch v3.7.x (Undeprecate Cursor event handlers) +* :ghpull:`25158`: Disconnect SubplotTool destroyer callback on tool_fig close +* :ghpull:`25129`: Undeprecate Cursor event handlers +* :ghpull:`25154`: Backport PR #25151 on branch v3.7.x (Increase timeout to GitHub API) +* :ghpull:`25151`: Increase timeout to GitHub API +* :ghpull:`25136`: Backport PR #25126 on branch v3.7.x (FIX: fully invalidate TransformWrapper parents before swapping) +* :ghpull:`25132`: Backport PR #24993 on branch v3.7.x ([DOC] GitHub spelling and links) +* :ghpull:`25126`: FIX: fully invalidate TransformWrapper parents before swapping +* :ghpull:`24993`: [DOC] GitHub spelling and links +* :ghpull:`25118`: Backport PR #25113 on branch v3.7.x (Fix outdated comment re: _update_label_position.) +* :ghpull:`25113`: Fix outdated comment re: _update_label_position. +* :ghpull:`25111`: Backport PR #25110 on branch v3.7.x (Stop recommending ``ncol`` in legend examples) +* :ghpull:`25110`: Stop recommending ``ncol`` in legend examples +* :ghpull:`25106`: Fix cursor_demo wrt. Line2D.set_x/ydata not accepting scalars anymore. +* :ghpull:`25103`: Backport PR #25098 on branch v3.7.x (Correctly pass valinit as keyword in SliderTool.) +* :ghpull:`25098`: Correctly pass valinit as keyword in SliderTool. +* :ghpull:`23442`: Remove need to detect math mode in pgf strings +* :ghpull:`25093`: Backport PR #25092 on branch v3.7.x (Fix distribution of test data) +* :ghpull:`24893`: STY: make allowed line length 9 longer to 88 from 79 +* :ghpull:`25092`: Fix distribution of test data +* :ghpull:`25089`: Backport PR #25088 on branch v3.7.x (DOC: Fix broken cross-reference when building PDF) +* :ghpull:`25088`: DOC: Fix broken cross-reference when building PDF +* :ghpull:`25083`: Backport PR #25074 on branch v3.7.x (Revert "Use system distutils instead of the setuptools copy") +* :ghpull:`25082`: Backport PR #25079 on branch v3.7.x (FIX: Only send one update signal when autoscaling norms) +* :ghpull:`25084`: DOC: Fix typos in GitHub stats +* :ghpull:`25074`: Revert "Use system distutils instead of the setuptools copy" +* :ghpull:`25079`: FIX: Only send one update signal when autoscaling norms +* :ghpull:`25072`: Merge v3.6.x into v3.7.x +* :ghpull:`25071`: Backport PR #25039 on branch v3.7.x (Updated WebAgg JS to check and send request over wss if using HTTPS) +* :ghpull:`25039`: Updated WebAgg JS to check and send request over wss if using HTTPS +* :ghpull:`25070`: Backport PR #25058 on branch v3.7.x (fix for pcolormesh doesn't allow shading = 'flat' in the option) +* :ghpull:`25058`: fix for pcolormesh doesn't allow shading = 'flat' in the option +* :ghpull:`25067`: Backport PR #25054 on branch v3.7.x (Remove note that mathtext.fontset = "custom" is unsupported.) +* :ghpull:`25066`: Backport PR #24999 on branch v3.7.x (DOC: figure explanation) +* :ghpull:`25054`: Remove note that mathtext.fontset = "custom" is unsupported. +* :ghpull:`25065`: Backport PR #24838 on branch v3.7.x (Add styling support to Check and Radio buttons ) +* :ghpull:`24999`: DOC: figure explanation +* :ghpull:`24838`: Add styling support to Check and Radio buttons +* :ghpull:`25056`: Backport PR #25055 on branch v3.7.x (Reword awkward sentence in FAQ.) +* :ghpull:`25055`: Reword awkward sentence in FAQ. +* :ghpull:`25049`: Backport PR #25047 on branch v3.7.x (Remove dead code from deprecated-and-removed block) +* :ghpull:`25047`: Remove dead code from deprecated-and-removed block +* :ghpull:`25037`: Backport PR #25018 on branch v3.7.x (Simplify "artist reference" example.) +* :ghpull:`25018`: Simplify "artist reference" example. +* :ghpull:`25034`: Backport PR #24812 on branch v3.7.x ([Doc] expanded basic pie example) +* :ghpull:`24812`: [Doc] expanded basic pie example +* :ghpull:`25029`: Backport PR #25019 on branch v3.7.x (Tweak titles pyplot examples.) +* :ghpull:`25019`: Tweak titles pyplot examples. +* :ghpull:`25026`: Backport PR #25017 on branch v3.7.x (Capitalize headings in example Gallery) +* :ghpull:`25017`: Capitalize headings in example Gallery +* :ghpull:`25010`: Backport PR #24989 on branch v3.7.x (Suppress pyparsing warning) +* :ghpull:`25008`: Backport PR #25004 on branch v3.7.x (Bump pypa/cibuildwheel from 2.11.4 to 2.12.0) +* :ghpull:`24989`: Suppress pyparsing warning +* :ghpull:`25004`: Bump pypa/cibuildwheel from 2.11.4 to 2.12.0 +* :ghpull:`25001`: Backport PR #25000 on branch v3.7.x (Update matplotlibrc urls) +* :ghpull:`25000`: Update matplotlibrc urls +* :ghpull:`24977`: Backport PR #24970 on branch v3.7.x (FIX: Handle uint8 indices properly for colormap lookups) +* :ghpull:`24970`: FIX: Handle uint8 indices properly for colormap lookups +* :ghpull:`24975`: Backport PR #24971 on branch v3.7.x (FIX: adjust_bbox should not modify layout engine) +* :ghpull:`24974`: Backport PR #24973 on branch v3.7.x (MNT: Fix double % signs in matplotlibrc) +* :ghpull:`24966`: Backport PR #24965 on branch v3.7.x (Remove additional deprecations from 3.5) +* :ghpull:`24971`: FIX: adjust_bbox should not modify layout engine +* :ghpull:`24973`: MNT: Fix double % signs in matplotlibrc +* :ghpull:`24965`: Remove additional deprecations from 3.5 +* :ghpull:`24963`: Backport PR #24912 on branch v3.7.x (Remove contour warning for "no-valid-levels".) +* :ghpull:`24962`: Backport PR #24957 on branch v3.7.x (DOC: Enable Opensearch) +* :ghpull:`24961`: Backport PR #24948 on branch v3.7.x (Remove remaining deprecations from 3.5) +* :ghpull:`24959`: Backport PR #24254 on branch v3.7.x (Expire deprecations in widgets and keyword only arguments for Selectors) +* :ghpull:`24912`: Remove contour warning for "no-valid-levels". +* :ghpull:`24960`: Backport PR #24825 on branch v3.7.x (Allow non-default scales on polar axes) +* :ghpull:`24957`: DOC: Enable Opensearch +* :ghpull:`24948`: Remove remaining deprecations from 3.5 +* :ghpull:`24825`: Allow non-default scales on polar axes +* :ghpull:`24254`: Expire deprecations in widgets and keyword only arguments for Selectors +* :ghpull:`24956`: Backport PR #24955 on branch v3.7.x (Cleanup bullseye plot example.) +* :ghpull:`24955`: Cleanup bullseye plot example. +* :ghpull:`24949`: Backport PR #24918 on branch v3.7.x (DOC: animation faster) +* :ghpull:`24947`: Auto backport of pr 24897 on v3.7.x +* :ghpull:`24945`: Backport PR #24940 on branch v3.7.x ([MNT] specify which gallery sections come last) +* :ghpull:`24918`: DOC: animation faster +* :ghpull:`24917`: Backport PR #24897: DOC: Add ref for every under examples/animation +* :ghpull:`24940`: [MNT] specify which gallery sections come last +* :ghpull:`24941`: Backport PR #24655 on branch v3.7.x (Update font_manager to only use registry on Win) +* :ghpull:`24655`: Update font_manager to only use registry on Win +* :ghpull:`24937`: Backport PR #24470 on branch v3.7.x ([ENH] hatch keyword for pie + some pie documentation) +* :ghpull:`24938`: Backport PR #23390 on branch v3.7.x (FIX: colorbar contour with log norm should default to log locator and formatter...) +* :ghpull:`24935`: Backport PR #24934 on branch v3.7.x (Swap ipython directives for code-block directives) +* :ghpull:`24470`: [ENH] hatch keyword for pie + some pie documentation +* :ghpull:`24933`: Backport PR #24924 on branch v3.7.x (Fix toggling layout engines) +* :ghpull:`24934`: Swap ipython directives for code-block directives +* :ghpull:`24931`: Backport PR #24783 on branch v3.7.x (inset locator fix with tests added) +* :ghpull:`24924`: Fix toggling layout engines +* :ghpull:`24928`: Backport PR #24927 on branch v3.7.x (DOC: Remove space after directive name, before double-colon) +* :ghpull:`24926`: Backport PR #24925 on branch v3.7.x (DOC: Improve documentation for set_loglevel) +* :ghpull:`24925`: DOC: Improve documentation for set_loglevel +* :ghpull:`24922`: Backport PR #24921 on branch v3.7.x (Pin sphinx != 6.1.2) +* :ghpull:`24921`: Pin sphinx != 6.1.2 +* :ghpull:`24911`: Backport PR #24904 on branch v3.7.x (Deprecate AxisArtistHelpers with inconsistent loc/nth_coord.) +* :ghpull:`24897`: DOC: Add ref for every under examples/animation +* :ghpull:`24904`: Deprecate AxisArtistHelpers with inconsistent loc/nth_coord. +* :ghpull:`22314`: Add a helper to generate xy coordinates for AxisArtistHelper. +* :ghpull:`24841`: changed method in animation tutorial table of methods +* :ghpull:`24902`: Remove provisional note from pyplot.subplot_mosaic +* :ghpull:`24891`: DOC: mark mosaic as no longer provisional +* :ghpull:`24889`: Harmonize exceptions for unknown keyword arguments. +* :ghpull:`24085`: Set facecolor of FilledArrow axisline style and fix tight layout +* :ghpull:`19743`: ENH: allow fig.legend outside axes... +* :ghpull:`24887`: [MNT] Bump NumPy to 1.20 +* :ghpull:`24896`: changed contribute docs link to writing docs +* :ghpull:`24894`: DOC: explain clipbox a bit better +* :ghpull:`24864`: Deprecate BrokenBarHCollection. +* :ghpull:`24869`: Skip displaying pan/zoom navigate mode in toolbar. +* :ghpull:`24892`: FIX: error in formatting in error string in redirect extension +* :ghpull:`24895`: add new & improved doc notices to what's new +* :ghpull:`24888`: update install instructions for conda +* :ghpull:`24886`: CI: rotate the circleci deploy key +* :ghpull:`24879`: Document "." as a filled marker. +* :ghpull:`24870`: Better default bool contour levels. +* :ghpull:`24786`: Increase a few test tolerances on some arches +* :ghpull:`24863`: Add parameter doc to PolarTransform +* :ghpull:`24845`: Fix toggling of MultiCursor.{horizOn,vertOn} +* :ghpull:`24862`: Fix argument checking in ``Axes3D.quiver`` +* :ghpull:`24868`: [pre-commit.ci] pre-commit autoupdate +* :ghpull:`24840`: Simplify/robustify segment-point distance calculation. +* :ghpull:`24850`: Improve PolarAffine docstring +* :ghpull:`24851`: Variable rename t > theta +* :ghpull:`24763`: Allow polar scales where zero is not in valid interval +* :ghpull:`24846`: Promote pending cm deprecations to full deprecations +* :ghpull:`24848`: ``Collection.set_linestyle``: remove redundant string handling +* :ghpull:`24839`: Move geo/polar projections to their own pages +* :ghpull:`24727`: Handle argument "facecolors=None" correctly in plot_surface() +* :ghpull:`24847`: Avoid extra copy initializing empty Affine2D +* :ghpull:`24837`: DOC: Replace .format by f-strings in examples +* :ghpull:`24604`: Enh/extend mosaic kwargs +* :ghpull:`24131`: Deprecate attributes and expire deprecation in animation +* :ghpull:`23457`: Add blitting support to button widgets +* :ghpull:`24832`: [MNT] Improve variable naming in bar +* :ghpull:`24829`: Simplify shape-checking in QuadMesh.set_array. +* :ghpull:`24835`: Delay nightly wheel builds by 2 hours +* :ghpull:`24831`: [Doc] Fix ndarray-links for arguments +* :ghpull:`24824`: Fix incorrect method in doc +* :ghpull:`24826`: space in version added for reverse in legend +* :ghpull:`24819`: Bump pypa/cibuildwheel from 2.11.3 to 2.11.4 +* :ghpull:`24811`: removed casting handles to list in legend +* :ghpull:`24759`: Reverse legend +* :ghpull:`24465`: Reparametrize offsetbox calculations in terms of bboxes. +* :ghpull:`22316`: Arbitrary figure customization hooks. +* :ghpull:`22329`: Enforce that Line data modifications are sequences +* :ghpull:`24730`: Data access API for rcParams +* :ghpull:`24699`: Implement nested four-level TeX cache +* :ghpull:`24752`: DOC: Make event handling table scrollable +* :ghpull:`24637`: Fixes #20044 pass AnnotationBbox to renderer +* :ghpull:`24810`: Don't modify dictionary input to widgets +* :ghpull:`24769`: Improve matplotlib.axes documentation +* :ghpull:`24806`: Deprecate 'x' argument for widgets.TextBox.begin_typing +* :ghpull:`24293`: Handle rasterization start & stop only from Artist +* :ghpull:`24768`: Fix/zorder rasterization +* :ghpull:`24474`: Use scatter for check boxes and set facecolors correctly in check boxes and radio buttons +* :ghpull:`24262`: Fix issue with space allocated for single tick that should not be there +* :ghpull:`24780`: Update environment.yml +* :ghpull:`23576`: Soft deprecate the textpath module (import from text instead) +* :ghpull:`24750`: Fix deprecations of \*Cursor widget event handlers +* :ghpull:`24757`: Allow using masked in ``set_offsets`` +* :ghpull:`21661`: Fix plot directive with func calls +* :ghpull:`24803`: Correct type in docstring of zorder for streamplot and LineCollection +* :ghpull:`24801`: Correct docstring of RangeSlider.on_changed +* :ghpull:`24802`: Correct docstring of CheckButtons.get_status +* :ghpull:`24758`: MNT: Simplify code related to masked arrays +* :ghpull:`24756`: DOC: Simplify some table markup +* :ghpull:`24795`: DOC: Fix duplicate redirect +* :ghpull:`24782`: DOC: update typos and grammar errors +* :ghpull:`24794`: Update README.md +* :ghpull:`24071`: Deprecate undefined label_mode to Grid +* :ghpull:`24724`: Run delvewheel on Windows for wheels +* :ghpull:`24538`: [Doc] Document legend_handles and legend_handlers +* :ghpull:`24751`: DOC: Update Artist inheritance diagram +* :ghpull:`24761`: Don't set the never-used Line2D._contains in set_picker. +* :ghpull:`24760`: Remove unused dicts from backend_cairo. +* :ghpull:`24736`: DOC: simplify CheckButton example +* :ghpull:`22700`: MAINT: Move docstring of ``LogLocator`` to class +* :ghpull:`19763`: Remove visibility changes in draw for \*Cursor widgets +* :ghpull:`23473`: Separately track modifier keys for mouse events. +* :ghpull:`24748`: DOC: remove research notice +* :ghpull:`24734`: Support masked dates +* :ghpull:`24737`: MNT: make fig.colorbar(..., ax=INPUT) even more forgiving +* :ghpull:`24120`: don't try to start a new event loop in WebAgg when in an ipykernel +* :ghpull:`24362`: Allow bool-like values for sharex/sharey +* :ghpull:`24740`: Minor redundancy cleanup of code which sets 3D aspect 3D +* :ghpull:`22273`: Improve inheritance diagrams +* :ghpull:`24668`: Add test for remaining axis options +* :ghpull:`9598`: ENH: rely on non-rectangular patch paths rather than bboxes for legend auto-placing (fix #9580) +* :ghpull:`22920`: Mnt deprecate mlab +* :ghpull:`24408`: Fix: restore make_axes to accept a tuple of axes +* :ghpull:`24731`: DOC: Post warnings as reviews on PRs +* :ghpull:`24652`: Offsetbox default arguments +* :ghpull:`24720`: FIX: be more forgiving in default draw wrapper +* :ghpull:`24719`: Remove quotes from EngFormatter.format_eng example +* :ghpull:`24718`: Remove refresh function from polar ThetaLocator +* :ghpull:`24710`: Drop support for Qt<5.10. +* :ghpull:`24509`: Factor out & improve accuracy of derivatives calculations in axisartist. +* :ghpull:`19591`: reverse order in which stackplot elements are added to axes +* :ghpull:`24367`: STY: Update macosx zoom rect styling +* :ghpull:`24706`: Bump pypa/cibuildwheel from 2.11.2 to 2.11.3 +* :ghpull:`24705`: Cleanup a few examples. +* :ghpull:`21096`: FIX: improve symlog ticker +* :ghpull:`24498`: DOC: Update multiple category bar chart examples +* :ghpull:`24688`: Deprecate quiver_doc and barbs_doc class members +* :ghpull:`24526`: [Doc] Fix spelling and grammar in tutorials +* :ghpull:`24675`: TST: set style in mpl_toolkits to ease later transition +* :ghpull:`24484`: Artist's draw method prevents rasterization by default +* :ghpull:`24667`: Test scroll zoom bbox update +* :ghpull:`24662`: Doc/git force +* :ghpull:`24664`: Deprecate offsetbox.bbox_artist +* :ghpull:`24670`: Tiny capitalization fix. +* :ghpull:`24596`: ENH: Add ellipse class for annotation box styles +* :ghpull:`24249`: Add legend tests for 3D plots +* :ghpull:`24627`: MNT: when clearing an Axes via clear/cla fully detach children +* :ghpull:`24653`: Directly call _long_axis()._set_axes_scale in Colorbar. +* :ghpull:`24640`: Small TransformWrapper cleanups. +* :ghpull:`24528`: BUG: Warn when an existing layout manager changes to tight layout +* :ghpull:`24635`: Remove unneeded _update_transScale calls in _init_axis. +* :ghpull:`24641`: Fix that font files never pass the test on Win +* :ghpull:`24522`: Use pybind11 for tri module +* :ghpull:`24603`: Shorten the definition of sawtooth boxstyle. +* :ghpull:`24630`: Improve error message for gridspec when the index is not an integer. +* :ghpull:`24634`: Init axes._children early enough to avoid need for some getattr calls. +* :ghpull:`24629`: Doc/gitwash redirects +* :ghpull:`24624`: Expire FancyBboxPatch deprecations. +* :ghpull:`24619`: ENH: Allow RGB(A) arrays for pcolormesh +* :ghpull:`23588`: Refactoring gitwash +* :ghpull:`21549`: Unifying the Figure getter/setter interface to match its constructor +* :ghpull:`24582`: Shorten demo_axes_grid example. +* :ghpull:`24577`: Fold _set_ticklabels into set_ticklabels. +* :ghpull:`24581`: Simplify implementation of _is_sorted. +* :ghpull:`24575`: Use std::isnan and fix compiler warning +* :ghpull:`24570`: FIX: VPacker and HPacker bottom/top alignment +* :ghpull:`23812`: Ci add codeql +* :ghpull:`24556`: Fix incorrect window_extent of AxesImage +* :ghpull:`24566`: Improve argument checking for set_xticks(). +* :ghpull:`24544`: DOC: Add links to supported file formats in animations tutorial +* :ghpull:`24511`: Add test for mutating input arrays #8990 +* :ghpull:`24558`: In mplot3d, fix a doc typo and autogen zaxis_inverted. +* :ghpull:`24555`: ENH: Add warning for SymLogScale when values in linear scale range +* :ghpull:`23417`: Consistently set label on axis with units +* :ghpull:`24542`: DOC: Clarify supported animation formats in animation tutorial +* :ghpull:`23685`: Add mathtext support for ``\middle`` and correct rendering of ``\|`` +* :ghpull:`24539`: Fix misnamed api changes entry. +* :ghpull:`23692`: Add ``Axes.get_tick_params()`` method. +* :ghpull:`24132`: CenteredNorm changes +* :ghpull:`24529`: Transform ParasiteAxesBase._update_viewlim into standard callback. +* :ghpull:`24304`: Simplify some patches path definitions. +* :ghpull:`24431`: FIX: Support passing one alpha per event sequence to eventplot() +* :ghpull:`24527`: Fix testing of whether backends use the new pyplot_show API. +* :ghpull:`24537`: Fix triage tool due to test reorganization +* :ghpull:`21831`: FIX: pre-composite animation frames to white background +* :ghpull:`24205`: Plot directive: delegate file handling to Sphinx +* :ghpull:`24274`: Animation Tutorial +* :ghpull:`24519`: MNT: remove unused arguments to private methods and minor doc fixes +* :ghpull:`24525`: [Doc] Fix spelling and grammar in examples +* :ghpull:`24523`: [Doc] fix more spelling and grammar +* :ghpull:`24218`: Document what pyplot expects from a backend. +* :ghpull:`24513`: Modernize a bit floating_axes tests. +* :ghpull:`24491`: Make Path3DCollection store indexed offset, and only apply z-ordered offset during draw +* :ghpull:`24500`: DOC: Removed matplotlib from mission statement title +* :ghpull:`24490`: DOC: Remove text rotation example +* :ghpull:`24487`: Update tests to run with 3.11 (not rc) +* :ghpull:`24439`: Remove custom polar behaviour in LogLocator +* :ghpull:`24461`: Shorten and explain more calculations in axes_divider. +* :ghpull:`24472`: [DOC] removed flake8 from PR template +* :ghpull:`24467`: [DOC] swapped params in fig_compare_error msg +* :ghpull:`24455`: Draw RadioButtons using scatter to ensure circular buttons. +* :ghpull:`24462`: Don't pass unused xdescent to _get_packed_offsets. +* :ghpull:`24446`: Remove axis() manual argument parsing. +* :ghpull:`24334`: ENH: Check labels arg when kwargs passed in Axis.set_ticks() +* :ghpull:`24430`: MNT: Issue a warning instead of logging if RGB(A) passed to scatter(..., c) +* :ghpull:`24397`: Simplify appveyor to only use conda +* :ghpull:`24447`: Factor out error generation for function calls with wrong nargs. +* :ghpull:`24441`: DOC: Fix example for what's new imshow so it isn't cut off or crowded. +* :ghpull:`24443`: Add valid values to ``get_*axis_transform`` docstring +* :ghpull:`24440`: DOC: Fix colorbar what's new entry so it isn't cut off. +* :ghpull:`23787`: Use pybind11 for C/C++ extensions +* :ghpull:`24247`: Split toolkit tests into their toolkits +* :ghpull:`24432`: DOC: Fix What's New entry for bar_label() formatting. +* :ghpull:`23101`: Move show() to somewhere naturally inheritable / document what pyplot expects from a backend. +* :ghpull:`24215`: Add :shows-source-link: option to Sphinx plot directive +* :ghpull:`24423`: Tighten the Qt binding selection docs. +* :ghpull:`24403`: Use ``repr`` in error message Addresses #21959 +* :ghpull:`24415`: made f2tfont error message explicit that it needs path to file +* :ghpull:`24329`: Kill FontconfigPatternParser. +* :ghpull:`23267`: Add location keyword argument to Colorbar +* :ghpull:`24375`: DOC: Group pyplot plotting commands +* :ghpull:`24307`: DOC: Organize Axes3D methods into sections +* :ghpull:`22230`: FIX: add support for imshow extent to have units +* :ghpull:`24252`: Change default rotation mode for 3D labels to 'anchor' +* :ghpull:`24356`: Expire QuadMesh old signature deprecation +* :ghpull:`24355`: Expire unused positional parameters in canvas subclasses +* :ghpull:`24257`: Load style files from third-party packages. +* :ghpull:`24279`: Cleanup BboxImage example. +* :ghpull:`24342`: Use HTML5 for webagg files +* :ghpull:`24339`: DOC: Minor cleanup in "Writing documentation" +* :ghpull:`24338`: DOC: Group pyplot commands by category +* :ghpull:`24314`: Minor improvements to Annotations Tutorial +* :ghpull:`23914`: Add shading of Poly3DCollection +* :ghpull:`24322`: GOV: change security reporting to use tidelift +* :ghpull:`24305`: Unify logic of ConnectionStyle._Base.{_clip,_shrink}. +* :ghpull:`24303`: Simplify generate_fontconfig_pattern. +* :ghpull:`24319`: Bump mamba-org/provision-with-micromamba from 13 to 14 +* :ghpull:`24239`: Fix mathtext rendering of ``\|`` and sizing of ``|`` and ``\|`` +* :ghpull:`23606`: added offset section & restructured annotations tutorial +* :ghpull:`24125`: Expire miscellaneous deprecations from 3.5 +* :ghpull:`24306`: Remove unnecessary/replaceable explicit str calls. +* :ghpull:`24295`: Remove unnecessary np.{,as}array / astype calls. +* :ghpull:`24302`: MNT: Remove redundant int after round +* :ghpull:`24290`: Cleanup Barbs._find_tails. +* :ghpull:`24298`: List all the places to update when adding a dependency. +* :ghpull:`24289`: Cleanup image_zcoord example. +* :ghpull:`23865`: Add test and example for VBoxDivider +* :ghpull:`24287`: Simplifying glyph stream logic in ps backend +* :ghpull:`24291`: Rely on builtin round() instead of manual rounding. +* :ghpull:`24062`: Replaced std::random_shuffle with std::shuffle in tri +* :ghpull:`24278`: Use oldest-supported-numpy for build +* :ghpull:`24161`: Versioning directives policy +* :ghpull:`24013`: Deprecate matplotlib.tri.* submodules +* :ghpull:`24031`: Add rcParams for 3D pane color +* :ghpull:`24220`: Simplify and tighten parse_fontconfig_pattern. +* :ghpull:`24251`: Expire deprecation for ``auto_add_to_figure=True`` in ``Axes3D`` +* :ghpull:`24160`: sample versioning directives, empty + description +* :ghpull:`24253`: Expire deprecation of grid argument name +* :ghpull:`14471`: FIX: don't close figures if switch_backend is a no-op +* :ghpull:`24240`: Deprecate unit_cube-related methods in Axes3D +* :ghpull:`24244`: Clarify that z must be finite for tricountour(f) +* :ghpull:`23536`: Improve mpl_toolkit documentation +* :ghpull:`24243`: Improve documentation for ticker +* :ghpull:`24189`: Do not pass gridspec_kw to inner layouts in subplot_mosaic +* :ghpull:`24242`: Add information about environment variables in matplotlib.__doc__ +* :ghpull:`24241`: Small animation docs/style fixes. +* :ghpull:`24236`: DOC: Mark SubplotBase removals in code style +* :ghpull:`24141`: Set figure options dynamically +* :ghpull:`23796`: Remove useless semicolons in "Introductory / Basic Usage" tutorial +* :ghpull:`23573`: Merge SubplotBase into AxesBase. +* :ghpull:`23931`: Raise ValueError on negative number inputs for set_aspect +* :ghpull:`24065`: Fixed the positioning of cursor in Textbox: no approximation +* :ghpull:`24122`: Add textcolor to legend based on labelcolor string +* :ghpull:`24182`: MNT: Remove redundant method, fix signature and add doc-string to ``draw_tex`` +* :ghpull:`24224`: Deprecate Julian date-related functions and constant +* :ghpull:`24196`: MNT: Update pre-commit hooks +* :ghpull:`24221`: Deprecate BufferRegion.to_string{,_argb}. +* :ghpull:`23683`: Simplify/add pyparsing error messages on mathtext/fontconfig errors. +* :ghpull:`24210`: Small cleanups to axislines docs. +* :ghpull:`24213`: Cleanup make_compound_path_from_poly doc, example. +* :ghpull:`24208`: Deprecate backend_webagg.ServerThread. +* :ghpull:`24207`: Recommend multiple_yaxis_with_spines over parasite axes. +* :ghpull:`24156`: Automatically update rebase label +* :ghpull:`24198`: Deprecate unused backend_ps.{PsBackendHelper,ps_backend_helper}. +* :ghpull:`24129`: Expire cursor-related deprecations +* :ghpull:`24179`: MNT: Refactor ``Renderer.get_text_width_height_descent`` +* :ghpull:`24191`: BLD: be more cautious about checking editable mode +* :ghpull:`24000`: Generalize validation that pyplot commands are documented +* :ghpull:`24144`: Deprecate some label-related attributes on ContourLabeler. +* :ghpull:`24162`: windows doc build parity +* :ghpull:`24102`: Simplest pyproject.toml containing build-system only +* :ghpull:`24091`: MNT: Clean up code in SecondaryAxis +* :ghpull:`24140`: Replace ClabelText by set_transform_rotates_text. +* :ghpull:`24143`: Add QuadContourSet.remove. +* :ghpull:`24138`: [DOC] Fix some documentation typos +* :ghpull:`24128`: Expire deprecations in dates and ticker +* :ghpull:`23907`: Inherit OffsetBox.get_window_extent. +* :ghpull:`23449`: Add pan and zoom toolbar handling to 3D Axes (Replaces PR#22614) +* :ghpull:`24126`: Bump version when invalid hatches error +* :ghpull:`23874`: Expire parameter renaming and deletion and attribute privatization from 3.5 +* :ghpull:`23592`: Polar errcaps +* :ghpull:`24083`: Enable interactive figure resizing for webagg and nbagg backends +* :ghpull:`24110`: test readme rendering +* :ghpull:`24067`: README.rst to README.md +* :ghpull:`23702`: Get Mathtext ``\times`` symbol from ``cmsy10`` when using ``cmr10``. +* :ghpull:`24066`: Simplify svg font expansion logic. +* :ghpull:`23730`: [DOC]: Add grid to style sheets +* :ghpull:`24020`: [DOC]: adding a grid to the style sheet reference. +* :ghpull:`23579`: Remove direct manipulation of HostAxes.parasites by end users. +* :ghpull:`23553`: Add tests for ImageGrid +* :ghpull:`23918`: Merge v3.6.x branch to main +* :ghpull:`23902`: Add test and improve examples for mpl_toolkits +* :ghpull:`23950`: DOC: Don't import doctest because we're not using it +* :ghpull:`21006`: Rotate errorbar caps in polar plots +* :ghpull:`23870`: Implement Sphinx-Gallery's ``make html-noplot`` +* :ghpull:`23905`: made explicit that install link is install docs in readme +* :ghpull:`23824`: Deprecate draw_gouraud_triangle +* :ghpull:`23913`: Add draggable as param to Legend init +* :ghpull:`23896`: Inline AnchoredOffsetBox._update_offset_func. +* :ghpull:`23889`: Update image tutorial. +* :ghpull:`23861`: Move axes_grid tests to axes_grid1 +* :ghpull:`23254`: Add PathCollection test for ps backend +* :ghpull:`23542`: Add even more mplot3d tests +* :ghpull:`23698`: Fix bug in ``Axes.bar_label(label_type='center')`` for non-linear scales. +* :ghpull:`23767`: DEV: add flake8-force plugin +* :ghpull:`23835`: Fix version switcher links +* :ghpull:`23832`: Improve skip message for image comparison tests +* :ghpull:`23690`: Add new-style string formatting option and callable option to ``fmt`` in ``Axes.bar_label()``. +* :ghpull:`23804`: Fix TexManager's support for ``openin_any = p`` +* :ghpull:`23737`: Update grammar +* :ghpull:`23552`: Provide ``adjustable='box'`` to 3D axes aspect ratio setting +* :ghpull:`23769`: Bump mamba-org/provision-with-micromamba from 12 to 13 +* :ghpull:`23590`: Changing bar examples to tea and coffee +* :ghpull:`21253`: Fix: axis, ticks are set to defaults fontsize after ax.clear() +* :ghpull:`21968`: Changed fstring to make error clearer +* :ghpull:`22614`: ENH: Add pan and zoom toolbar handling to 3D Axes +* :ghpull:`21562`: Add a test for Hexbin Linear + +Issues (120): + +* :ghissue:`25176`: [Bug]: Colorbar is displaced when saving as .eps with bbox_inches='tight' +* :ghissue:`25075`: [Bug]: Widget blitting broken when saving as PDF +* :ghissue:`25181`: unavoidable warnings in nbagg on ``plt.close`` +* :ghissue:`25134`: [Doc]: pyplot.boxplot whisker length wrong docs +* :ghissue:`24395`: Any resizing of the plot after plt.show results in an error when closing the window +* :ghissue:`25107`: [Doc]: annotated_cursor example seems broken +* :ghissue:`25124`: [Bug]: ax.plot(x,y) disappears after changing y_scale +* :ghissue:`8278`: FuncAnimation with generator defaults to arbitrary save_count=100 +* :ghissue:`22765`: Document distutil vs setuptools issues or fix usage +* :ghissue:`25077`: [Bug]: Setting norm with existing colorbar fails with 3.6.3 +* :ghissue:`23999`: [Bug]: Annotation misplaced when rasterizing and saving as PDF +* :ghissue:`25040`: [Bug]: Request to insecure websocket endpoint is blocked by browser +* :ghissue:`24678`: [Bug]: pcolormesh doesn't allow shading = 'flat' in the option +* :ghissue:`15388`: matplotlib.collections.QuadMesh.set_array() input arg format is weird and undocumented +* :ghissue:`23779`: [ENH]: control the size of the tex cache +* :ghissue:`24583`: [ENH]: provide public API for styling radio buttons +* :ghissue:`21895`: [Bug]: slow rendering of multiple axes (time scales as 2nd power of label count) +* :ghissue:`4781`: Add API to register styles +* :ghissue:`24972`: [MNT]: UserWarning from pyparsing upon immediate import +* :ghissue:`24865`: [Bug]: NumPy 1.24 deprecation warnings +* :ghissue:`24954`: [Bug]: compressed layout setting can be forgotten on second save +* :ghissue:`23778`: [ENH]: Allow override of contour level autoscaling +* :ghissue:`20203`: contour edge case with all data below levels and a surrounding field of zeros +* :ghissue:`12803`: pcolormesh in log polar coordinates +* :ghissue:`24383`: log scale and polar broken +* :ghissue:`22847`: [Bug]: Cannot toggle set_tight_layout +* :ghissue:`23646`: [Bug]: matplotlib.set_loglevel() adds a console handler +* :ghissue:`24673`: [Doc]: animation examples show controls; source does not reproduce them +* :ghissue:`7617`: set_ylabel does not work as expected with SubplotZero +* :ghissue:`13023`: constrained_layout support for figure.legend +* :ghissue:`15973`: span_where fails with timeseries on the x-axis +* :ghissue:`24867`: [Bug]: controlling text on toolbar in wx +* :ghissue:`24421`: [Doc]: change to install from conda forge +* :ghissue:`24890`: [Bug]: Clipping mask can shift in PDF and SVG file outputs when Bbox is adjusted +* :ghissue:`23849`: [Bug]: The point marker is not actually unfilled +* :ghissue:`24321`: [ENH]: Auto-detect bool arrays passed to contour()? +* :ghissue:`24842`: axes3d.quiver() fails when providing args to Line3DCollection +* :ghissue:`24093`: [Bug]: CenteredNorm gets stuck in infinite recursion when given all zeros +* :ghissue:`24571`: [ENH]: gridspec_mosaic +* :ghissue:`24815`: [TST] Upcoming dependency test failures +* :ghissue:`24712`: [ENH]: Reverse legend +* :ghissue:`22308`: [Bug] set_3d_properties type error in Matplotlib 3.5.1 +* :ghissue:`24741`: [Doc]: tables in "notes" cut off content +* :ghissue:`20044`: AnnotationBbox gid not passed to renderer +* :ghissue:`24762`: [Doc]: Development workflow doc has lots of typos and clunky sentences +* :ghissue:`24235`: [Bug]: pcolormesh(rasterized=True) conflicts with set_rasterization_zorder() +* :ghissue:`24471`: [Bug]: CheckBoxes should be square, not rectangular +* :ghissue:`18804`: bugged pads on savefig +* :ghissue:`20656`: Sphinx extension plot_directive not able to detect function +* :ghissue:`24704`: [Bug]: ImportError: DLL load failed on Windows +* :ghissue:`20639`: document Legend.legendHandles +* :ghissue:`19633`: Multicursor disappears when not moving on nbagg with useblit=False + burns CPU +* :ghissue:`24717`: Update Research Notice on README.md +* :ghissue:`22754`: [Bug]: It is recommended for you to run autogen before configuring freetype +* :ghissue:`24349`: [Bug]: sharex and sharey don't accept 0 and 1 as bool values +* :ghissue:`20577`: Using ``legend(labelcolor="markerfacecolor")`` with a scatter plot throws an error +* :ghissue:`24424`: [Doc]: Inheritance diagrams +* :ghissue:`9580`: Broken legend auto-position with step*-type histograms +* :ghissue:`22176`: [MNT]: Write a bot to post doc build issues +* :ghissue:`24623`: [Bug]: ``offsetbox`` classes have optional arguments that are really not optional +* :ghissue:`24693`: [MNT]: Update minver policy re: GUI toolkits +* :ghissue:`23566`: [ENH]: Z-axis/3D support for Figure options +* :ghissue:`23777`: [ENH] Interactive Zoom Rectangle Color Review for MACOSX backend +* :ghissue:`24676`: [Doc]: quiver_doc etc leads to documentation of the documentation string +* :ghissue:`24568`: [ENH]: Ellipse annotation +* :ghissue:`6982`: cla(), clf() should unset the ``.axes`` and ``.figure`` attributes of deparented artists +* :ghissue:`11227`: fig.set_dpi() does not set the dpi correctly +* :ghissue:`24418`: [ENH]: rgp or rgba option for pyplot pcolormesh and/or pcolor +* :ghissue:`22236`: [Bug]: integer colours for pcolorfast / quadmesh +* :ghissue:`4277`: RGB not supported in pcolormesh +* :ghissue:`23155`: [ENH]: do_3d_projection could restore original verts order after draw() finishes +* :ghissue:`24386`: [Bug]: ``align`` in ``HPacker`` is reversed +* :ghissue:`23803`: Static code analysis +* :ghissue:`8990`: Surprising behaviour of mutating input arrays to Axes.plot vs Axes3D.plot +* :ghissue:`24550`: [ENH]: Warn when a SymLogScale receives values that are all in the linear regime +* :ghissue:`23416`: [Bug]: Inconsistent y-axis unit label with plot/scatter +* :ghissue:`23603`: [MNT]: Only a subset of attributes set via ``Axes.tick_params()`` are accessible via public methods and attributes +* :ghissue:`13858`: matplotlib.sphinxext.plot_directive generates incorrect links when using dirhtml builder +* :ghissue:`19376`: eventplot: allow a list of alpha channels as in the case with colors +* :ghissue:`24508`: [Bug]: Re-organization of mpl_toolkits tests broke tools/triage_tests.py +* :ghissue:`19040`: v3.3.0 Regression, Animation draws artists multiple times. +* :ghissue:`12324`: DOC: Write a unified backend doc +* :ghissue:`24464`: Issue with legend labelcolor='linecolor' for errorbar plots +* :ghissue:`24273`: [ENH]: Axes.set_xticks/Axis.set_ticks only validates kwargs if ticklabels are set, but they should +* :ghissue:`24454`: [Bug]: "import matplotlib.pyplot" gives ModuleNotFoundError +* :ghissue:`24394`: [TST]: Appveyor Qt tests failing +* :ghissue:`21959`: [ENH]: Use ``repr`` instead of ``str`` in the error message +* :ghissue:`22676`: [ENH]: Colorbar should support location kwarg that sets both orientation and ticklocation +* :ghissue:`23901`: [Doc]: add summary table to Axes3D similar to Axes +* :ghissue:`22105`: [Bug]: imshow extents can't have units? +* :ghissue:`21878`: [MNT]: make axis labels of 3d axis anchor-rotate +* :ghissue:`17978`: Document how to distribute style files in python packages +* :ghissue:`23965`: Simplify glyph stream logic in ps backend +* :ghissue:`19509`: Adding lightsource when plotting Poly3DCollection +* :ghissue:`17523`: Unclear if no gallery argument for doc builds works +* :ghissue:`23250`: [Bug]: Incorrect mathtext rendering of ``r"$\|$"`` with default (dejavu) math fontfamily +* :ghissue:`24010`: c++17 removed random_shuffle +* :ghissue:`20424`: function shadowing their own definition modules +* :ghissue:`20781`: Make the pane color in 3d plots configurable +* :ghissue:`14426`: Existing FigureCanvasQT objects destroyed by call to plt.figure +* :ghissue:`5908`: Unclear Documentation ticker class +* :ghissue:`24099`: [Bug]: Error using width_ratios with nested mosaic in subplot_mosaic() +* :ghissue:`6893`: List environment variables in matplotlib.__doc__ +* :ghissue:`11445`: The axes module structure +* :ghissue:`23847`: [Bug]: set_aspect with negative argument leads to infinite loop +* :ghissue:`24136`: [Doc]: document ``julian2num`` and ``num2julian``? +* :ghissue:`5332`: QuadContourSet lacks remove method +* :ghissue:`110`: pan and zoom are broken for mplot3d +* :ghissue:`441`: Polar plot error bars don't rotate with angle +* :ghissue:`24064`: Convert readme.rst to readme.md +* :ghissue:`10029`: \times in minor ticklabels not recognized due to \mathdefault +* :ghissue:`24080`: verify quoting method in svg backend for font names +* :ghissue:`23601`: [Doc]: add gridlines to style sheet reference +* :ghissue:`24075`: [ENH]: Resizing the figure with webagg backend by dragging the corner +* :ghissue:`23352`: [Doc]: bar examples should probably not have "score by ... gender" in them... +* :ghissue:`23819`: [MNT]: Make draw_gouraud_triangle optional +* :ghissue:`9181`: legend draggable as keyword +* :ghissue:`23688`: [Bug]: ``Axes.bar_label()`` on log scale does not center the label. +* :ghissue:`23689`: [ENH]: Add f-string formatting to labels in ``Axes.bar_label()`` +* :ghissue:`23718`: [Bug]: Installing from source fails during Freetype compilation with spaces in working directory filepath diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.7.1.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.7.1.rst new file mode 100644 index 0000000000000000000000000000000000000000..b187122cb7792ca9b387a84c145ec4d6878fad0a --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/github_stats_3.7.1.rst @@ -0,0 +1,114 @@ +.. _github-stats-3-7-1: + +GitHub statistics for 3.7.1 (Mar 03, 2023) +========================================== + +GitHub statistics for 2023/02/13 (tag: v3.7.0) - 2023/03/03 + +These lists are automatically generated, and may be incomplete or contain duplicates. + +We closed 14 issues and merged 62 pull requests. +The full list can be seen `on GitHub `__ + +The following 16 authors contributed 129 commits. + +* Albert Y. Shih +* Antony Lee +* devRD +* Elliott Sales de Andrade +* Fabian Joswig +* Greg Lucas +* Hasan Rashid +* hasanrashid +* Jody Klymak +* Kyle Sunden +* Oscar Gustafsson +* Ratnabali Dutta +* RishabhSpark +* Ruth Comer +* Thomas A Caswell +* Tim Hoffmann + +GitHub issues and pull requests: + +Pull Requests (62): + +* :ghpull:`25377`: Backport PR #25372 on branch v3.7.x (Clean up Curve ArrowStyle docs) +* :ghpull:`25376`: Backport PR #25371 on branch v3.7.x (Tk: Fix size of spacers when changing display DPI) +* :ghpull:`25375`: Backport PR #25364 on branch v3.7.x (BLD: Pre-download Qhull license to put in wheels) +* :ghpull:`25372`: Clean up Curve ArrowStyle docs +* :ghpull:`25371`: Tk: Fix size of spacers when changing display DPI +* :ghpull:`25364`: BLD: Pre-download Qhull license to put in wheels +* :ghpull:`25370`: Backport PR#25369: Pin sphinx themes more strictly +* :ghpull:`25368`: Backport PR #25339 on branch v3.7.x (Disable discarded animation warning on save) +* :ghpull:`25369`: Pin sphinx themes more strictly +* :ghpull:`25339`: Disable discarded animation warning on save +* :ghpull:`25354`: Backport PR #25353 on branch v3.7.x (link to ipympl docs instead of github) +* :ghpull:`25307`: Pin mpl-sphinx-theme on the v3.7.x branch +* :ghpull:`25350`: Backport PR #25346 on branch v3.7.x (FIX: use wrapped text in Text._get_layout) +* :ghpull:`25348`: Backport PR #25325 on branch v3.7.x (Clean up legend loc parameter documentation) +* :ghpull:`25325`: Clean up legend loc parameter documentation +* :ghpull:`25346`: FIX: use wrapped text in Text._get_layout +* :ghpull:`25343`: Backport PR #25340 on branch v3.7.x (Fix RangeSlider.set_val when outside existing value) +* :ghpull:`25342`: Backport PR #25341 on branch v3.7.x (TST: Increase test_set_line_coll_dash_image tolerance slightly.) +* :ghpull:`25340`: Fix RangeSlider.set_val when outside existing value +* :ghpull:`25341`: TST: Increase test_set_line_coll_dash_image tolerance slightly. +* :ghpull:`25337`: Backport PR #25311 on branch v3.7.x (Make draggable legends picklable.) +* :ghpull:`25311`: Make draggable legends picklable. +* :ghpull:`25331`: Backport PR #25327 on branch v3.7.x (Fix doc-string issues identified by velin) +* :ghpull:`25327`: Fix doc-string issues identified by velin +* :ghpull:`25321`: Backport PR #25320 on branch v3.7.x (DOC: fix typo) +* :ghpull:`25319`: Backport PR #25305 on branch v3.7.x (DOC: add layout='none' option to Figure constructor) +* :ghpull:`25305`: DOC: add layout='none' option to Figure constructor +* :ghpull:`25315`: Backport PR #24878 on branch v3.7.x ( [Doc]: Add alt-text to images in 3.6 release notes #24844 ) +* :ghpull:`24878`: [Doc]: Add alt-text to images in 3.6 release notes #24844 +* :ghpull:`25312`: Backport PR #25308 on branch v3.7.x (DOC: add include source to a 3.7 what's new) +* :ghpull:`25309`: Backport PR #25302 on branch v3.7.x (Cleanup gradient_bar example.) +* :ghpull:`25299`: Backport PR #25238 on branch v3.7.x (Check file path for animation and raise if it does not exist) +* :ghpull:`25297`: Backport PR #25295 on branch v3.7.x (Increase timeout for interactive backend tests) +* :ghpull:`25238`: Check file path for animation and raise if it does not exist +* :ghpull:`25295`: Increase timeout for interactive backend tests +* :ghpull:`25288`: Backport PR #25279 on branch v3.7.x (Fix Lasso line cleanup) +* :ghpull:`25294`: Backport PR #25278 on branch v3.7.x (Revert #23417 (Consistently set label on axis with units)) +* :ghpull:`25293`: Backport PR #25155 on branch v3.7.x (Fix lasso unresponsive issue by adding a lock release event) +* :ghpull:`25289`: Backport PR #25286 on branch v3.7.x (DOC: add cache-busting query to switcher json url) +* :ghpull:`25278`: Revert #23417 (Consistently set label on axis with units) +* :ghpull:`25155`: Fix lasso unresponsive issue by adding a lock release event +* :ghpull:`25285`: Backport PR #25280 on branch v3.7.x (Fix setting CSS with latest GTK4) +* :ghpull:`25279`: Fix Lasso line cleanup +* :ghpull:`25284`: Backport PR #25283 on branch v3.7.x (CI: unpin reviewdog eslint) +* :ghpull:`25280`: Fix setting CSS with latest GTK4 +* :ghpull:`25283`: CI: unpin reviewdog eslint +* :ghpull:`25277`: Backport PR #25268 on branch v3.7.x (Fix import of styles with relative path) +* :ghpull:`25276`: Backport PR #25237 on branch v3.7.x (Fixed a bug where rcParams settings were being ignored for formatting axes labels) +* :ghpull:`25237`: Fixed a bug where rcParams settings were being ignored for formatting axes labels +* :ghpull:`25268`: Fix import of styles with relative path +* :ghpull:`25264`: Backport PR #25262 on branch v3.7.x (CI: Pin reviewdog eslint to use node 18.13) +* :ghpull:`25245`: Backport PR #25236: Re-enable CI buildwheel and cygwin labels +* :ghpull:`25262`: CI: Pin reviewdog eslint to use node 18.13 +* :ghpull:`25260`: Backport PR #25234 on branch v3.7.x (added layout="compressed" for pyplot #25223) +* :ghpull:`25234`: added layout="compressed" for pyplot #25223 +* :ghpull:`25246`: Backport PR #25240 on branch v3.7.x (Avoid calling vars() on arbitrary third-party manager_class.) +* :ghpull:`25240`: Avoid calling vars() on arbitrary third-party manager_class. +* :ghpull:`25236`: Re-enable CI buildwheel and cygwin labels +* :ghpull:`25217`: Backport PR #25213 on branch v3.7.x (DOC: correct default value of pcolormesh shading) +* :ghpull:`25213`: DOC: correct default value of pcolormesh shading +* :ghpull:`25215`: Backport PR #25198 - DOC: remove constrained_layout kwarg from examples +* :ghpull:`25198`: DOC: remove constrained_layout kwarg from examples + +Issues (14): + +* :ghissue:`25361`: [Doc]: matplotlib.patches.ArrowStyle +* :ghissue:`25365`: [Bug]: Inconsistent size/padx for spacers in NavigationToolbar2Tk._rescale and _Spacer +* :ghissue:`25212`: [Bug]: LICENSE_QHULL is included in wheel only the second time +* :ghissue:`25323`: [Doc]: Misleading Figure.legend() options, loc='best' is not valid. +* :ghissue:`25336`: [Bug]: constrained layout with wrapped titles +* :ghissue:`25338`: [Bug]: set_val of rangeslider sets incorrect value +* :ghissue:`25300`: [Bug]: Unable to pickle figure with draggable legend +* :ghissue:`25223`: [Doc]: ``layout="none"`` for figure constructor? +* :ghissue:`25219`: [Bug]: axes.set_xlim with string dates raises when plotting with datetimes +* :ghissue:`21666`: [Doc]: Sidebar not always very helpful +* :ghissue:`25298`: [Bug]: ``axes.labelsize`` is ignored +* :ghissue:`25233`: [MNT]: FFMpegWriter does not check if out path exists when initialized. +* :ghissue:`25242`: [Bug]: Relative paths in ``plt.style.use()`` no longer work in 3.7 +* :ghissue:`25251`: [CI]: eslint failure diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/whats_new_0.98.4.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/whats_new_0.98.4.rst new file mode 100644 index 0000000000000000000000000000000000000000..88d376cf79bf9836f820544e2337b4c7caec25d5 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/whats_new_0.98.4.rst @@ -0,0 +1,365 @@ +.. _whats-new-0-98-4: + +What's new in Matplotlib 0.98.4 +=============================== + +.. contents:: Table of Contents + :depth: 2 + + + +It's been four months since the last matplotlib release, and there are +a lot of new features and bug-fixes. + +Thanks to Charlie Moad for testing and preparing the source release, +including binaries for OS X and Windows for python 2.4 and 2.5 (2.6 +and 3.0 will not be available until numpy is available on those +releases). Thanks to the many developers who contributed to this +release, with contributions from Jae-Joon Lee, Michael Droettboom, +Ryan May, Eric Firing, Manuel Metz, Jouni K. Seppänen, Jeff Whitaker, +Darren Dale, David Kaplan, Michiel de Hoon and many others who +submitted patches + +.. _legend-refactor: + +Legend enhancements +------------------- + +Jae-Joon has rewritten the legend class, and added support for +multiple columns and rows, as well as fancy box drawing. See +:func:`~matplotlib.pyplot.legend` and +:class:`matplotlib.legend.Legend`. + +.. plot:: + + ax = plt.subplot() + t1 = np.arange(0.0, 1.0, 0.01) + for n in [1, 2, 3, 4]: + plt.plot(t1, t1**n, label=f"n={n}") + + leg = plt.legend(loc='best', ncol=2, mode="expand", shadow=True, fancybox=True) + leg.get_frame().set_alpha(0.5) + + plt.show() + + +.. _fancy-annotations: + +Fancy annotations and arrows +---------------------------- + +Jae-Joon has added lots of support to annotations for drawing fancy +boxes and connectors in annotations. See +:func:`~matplotlib.pyplot.annotate` and +:class:`~matplotlib.patches.BoxStyle`, +:class:`~matplotlib.patches.ArrowStyle`, and +:class:`~matplotlib.patches.ConnectionStyle`. + +.. plot:: + + import matplotlib.patches as mpatch + import matplotlib.pyplot as plt + + figheight = 4 + fig = plt.figure(figsize=(4.5, figheight), dpi=80) + fontsize = 0.2 * fig.dpi + + def make_boxstyles(ax): + styles = mpatch.BoxStyle.get_styles() + + for i, (stylename, styleclass) in enumerate(sorted(styles.items())): + ax.text(0.5, (float(len(styles)) - 0.5 - i)/len(styles), stylename, + ha="center", + size=fontsize, + transform=ax.transAxes, + bbox=dict(boxstyle=stylename, fc="w", ec="k")) + + def make_arrowstyles(ax): + styles = mpatch.ArrowStyle.get_styles() + + ax.set_xlim(0, 4) + ax.set_ylim(0, figheight*2) + + for i, (stylename, styleclass) in enumerate(sorted(styles.items())): + y = (float(len(styles)) - 0.25 - i) # /figheight + p = mpatch.Circle((3.2, y), 0.2, fc="w") + ax.add_patch(p) + + ax.annotate(stylename, (3.2, y), + (2., y), + # xycoords="figure fraction", textcoords="figure fraction", + ha="right", va="center", + size=fontsize, + arrowprops=dict(arrowstyle=stylename, + patchB=p, + shrinkA=5, + shrinkB=5, + fc="w", ec="k", + connectionstyle="arc3,rad=-0.05", + ), + bbox=dict(boxstyle="square", fc="w")) + + ax.xaxis.set_visible(False) + ax.yaxis.set_visible(False) + + + ax1 = fig.add_subplot(121, frameon=False, xticks=[], yticks=[]) + make_boxstyles(ax1) + + ax2 = fig.add_subplot(122, frameon=False, xticks=[], yticks=[]) + make_arrowstyles(ax2) + + + plt.show() + + +Native OS X backend +------------------- + +Michiel de Hoon has provided a native Mac OSX backend that is almost +completely implemented in C. The backend can therefore use Quartz +directly and, depending on the application, can be orders of magnitude +faster than the existing backends. In addition, no third-party +libraries are needed other than Python and NumPy. The backend is +interactive from the usual terminal application on Mac using regular +Python. It hasn't been tested with ipython yet, but in principle it +should to work there as well. Set 'backend : macosx' in your +matplotlibrc file, or run your script with:: + + > python myfile.py -dmacosx + + +.. _psd-amplitude: + +psd amplitude scaling +--------------------- + +Ryan May did a lot of work to rationalize the amplitude scaling of +:func:`~matplotlib.pyplot.psd` and friends. See +:doc:`/gallery/lines_bars_and_markers/psd_demo`. +The changes should increase MATLAB +compatibility and increase scaling options. + +.. _fill-between: + +Fill between +------------ + +Added a :func:`~matplotlib.pyplot.fill_between` function to make it +easier to do shaded region plots in the presence of masked data. You +can pass an *x* array and a *ylower* and *yupper* array to fill +between, and an optional *where* argument which is a logical mask +where you want to do the filling. + +.. plot:: + + x = np.arange(-5, 5, 0.01) + y1 = -5*x*x + x + 10 + y2 = 5*x*x + x + + fig, ax = plt.subplots() + ax.plot(x, y1, x, y2, color='black') + ax.fill_between(x, y1, y2, where=(y2 > y1), facecolor='yellow', alpha=0.5) + ax.fill_between(x, y1, y2, where=(y2 <= y1), facecolor='red', alpha=0.5) + ax.set_title('Fill Between') + + plt.show() + + +Lots more +--------- + +Here are the 0.98.4 notes from the CHANGELOG:: + + Added mdehoon's native macosx backend from sf patch 2179017 - JDH + + Removed the prints in the set_*style commands. Return the list of + pretty-printed strings instead - JDH + + Some of the changes Michael made to improve the output of the + property tables in the rest docs broke of made difficult to use + some of the interactive doc helpers, e.g., setp and getp. Having all + the rest markup in the ipython shell also confused the docstrings. + I added a new rc param docstring.harcopy, to format the docstrings + differently for hardcopy and other use. The ArtistInspector + could use a little refactoring now since there is duplication of + effort between the rest out put and the non-rest output - JDH + + Updated spectral methods (psd, csd, etc.) to scale one-sided + densities by a factor of 2 and, optionally, scale all densities by + the sampling frequency. This gives better MATLAB + compatibility. -RM + + Fixed alignment of ticks in colorbars. -MGD + + drop the deprecated "new" keyword of np.histogram() for numpy 1.2 + or later. -JJL + + Fixed a bug in svg backend that new_figure_manager() ignores + keywords arguments such as figsize, etc. -JJL + + Fixed a bug that the handlelength of the new legend class set too + short when numpoints=1 -JJL + + Added support for data with units (e.g., dates) to + Axes.fill_between. -RM + + Added fancybox keyword to legend. Also applied some changes for + better look, including baseline adjustment of the multiline texts + so that it is center aligned. -JJL + + The transmuter classes in the patches.py are reorganized as + subclasses of the Style classes. A few more box and arrow styles + are added. -JJL + + Fixed a bug in the new legend class that didn't allowed a tuple of + coordinate values as loc. -JJL + + Improve checks for external dependencies, using subprocess + (instead of deprecated popen*) and distutils (for version + checking) - DSD + + Reimplementation of the legend which supports baseline alignment, + multi-column, and expand mode. - JJL + + Fixed histogram autoscaling bug when bins or range are given + explicitly (fixes Debian bug 503148) - MM + + Added rcParam axes.unicode_minus which allows plain hyphen for + minus when False - JDH + + Added scatterpoints support in Legend. patch by Erik Tollerud - + JJL + + Fix crash in log ticking. - MGD + + Added static helper method BrokenHBarCollection.span_where and + Axes/pyplot method fill_between. See + examples/pylab/fill_between.py - JDH + + Add x_isdata and y_isdata attributes to Artist instances, and use + them to determine whether either or both coordinates are used when + updating dataLim. This is used to fix autoscaling problems that + had been triggered by axhline, axhspan, axvline, axvspan. - EF + + Update the psd(), csd(), cohere(), and specgram() methods of Axes + and the csd() cohere(), and specgram() functions in mlab to be in + sync with the changes to psd(). In fact, under the hood, these + all call the same core to do computations. - RM + + Add 'pad_to' and 'sides' parameters to mlab.psd() to allow + controlling of zero padding and returning of negative frequency + components, respectively. These are added in a way that does not + change the API. - RM + + Fix handling of c kwarg by scatter; generalize is_string_like to + accept numpy and numpy.ma string array scalars. - RM and EF + + Fix a possible EINTR problem in dviread, which might help when + saving pdf files from the qt backend. - JKS + + Fix bug with zoom to rectangle and twin axes - MGD + + Added Jae Joon's fancy arrow, box and annotation enhancements -- + see examples/pylab_examples/annotation_demo2.py + + Autoscaling is now supported with shared axes - EF + + Fixed exception in dviread that happened with Minion - JKS + + set_xlim, ylim now return a copy of the viewlim array to avoid + modify inplace surprises + + Added image thumbnail generating function + matplotlib.image.thumbnail. See examples/misc/image_thumbnail.py + - JDH + + Applied scatleg patch based on ideas and work by Erik Tollerud and + Jae-Joon Lee. - MM + + Fixed bug in pdf backend: if you pass a file object for output + instead of a filename, e.g., in a wep app, we now flush the object + at the end. - JKS + + Add path simplification support to paths with gaps. - EF + + Fix problem with AFM files that don't specify the font's full name + or family name. - JKS + + Added 'scilimits' kwarg to Axes.ticklabel_format() method, for + easy access to the set_powerlimits method of the major + ScalarFormatter. - EF + + Experimental new kwarg borderpad to replace pad in legend, based + on suggestion by Jae-Joon Lee. - EF + + Allow spy to ignore zero values in sparse arrays, based on patch + by Tony Yu. Also fixed plot to handle empty data arrays, and + fixed handling of markers in figlegend. - EF + + Introduce drawstyles for lines. Transparently split linestyles + like 'steps--' into drawstyle 'steps' and linestyle '--'. Legends + always use drawstyle 'default'. - MM + + Fixed quiver and quiverkey bugs (failure to scale properly when + resizing) and added additional methods for determining the arrow + angles - EF + + Fix polar interpolation to handle negative values of theta - MGD + + Reorganized cbook and mlab methods related to numerical + calculations that have little to do with the goals of those two + modules into a separate module numerical_methods.py Also, added + ability to select points and stop point selection with keyboard in + ginput and manual contour labeling code. Finally, fixed contour + labeling bug. - DMK + + Fix backtick in Postscript output. - MGD + + [ 2089958 ] Path simplification for vector output backends + Leverage the simplification code exposed through path_to_polygons + to simplify certain well-behaved paths in the vector backends + (PDF, PS and SVG). "path.simplify" must be set to True in + matplotlibrc for this to work. - MGD + + Add "filled" kwarg to Path.intersects_path and + Path.intersects_bbox. - MGD + + Changed full arrows slightly to avoid an xpdf rendering problem + reported by Friedrich Hagedorn. - JKS + + Fix conversion of quadratic to cubic Bezier curves in PDF and PS + backends. Patch by Jae-Joon Lee. - JKS + + Added 5-point star marker to plot command q- EF + + Fix hatching in PS backend - MGD + + Fix log with base 2 - MGD + + Added support for bilinear interpolation in + NonUniformImage; patch by Gregory Lielens. - EF + + Added support for multiple histograms with data of + different length - MM + + Fix step plots with log scale - MGD + + Fix masked arrays with markers in non-Agg backends - MGD + + Fix clip_on kwarg so it actually works correctly - MGD + + Fix locale problems in SVG backend - MGD + + fix quiver so masked values are not plotted - JSW + + improve interactive pan/zoom in qt4 backend on windows - DSD + + Fix more bugs in NaN/inf handling. In particular, path + simplification (which does not handle NaNs or infs) will be turned + off automatically when infs or NaNs are present. Also masked + arrays are now converted to arrays with NaNs for consistent + handling of masks and NaNs - MGD and EF + + Added support for arbitrary rasterization resolutions to the SVG + backend. - MW diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/whats_new_0.99.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/whats_new_0.99.rst new file mode 100644 index 0000000000000000000000000000000000000000..47e4b18ae62df5f88e93edfd2ca70216b3601347 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/whats_new_0.99.rst @@ -0,0 +1,169 @@ +.. _whats-new-0-99: + +What's new in Matplotlib 0.99 (Aug 29, 2009) +============================================ + +.. contents:: Table of Contents + :depth: 2 + + + +New documentation +----------------- + +Jae-Joon Lee has written two new guides :ref:`legend_guide` +and :ref:`plotting-guide-annotation`. Michael Sarahan has written +:ref:`image_tutorial`. John Hunter has written two new tutorials on +working with paths and transformations: :ref:`paths` and +:ref:`transforms_tutorial`. + +.. _whats-new-mplot3d: + +mplot3d +-------- + +Reinier Heeres has ported John Porter's mplot3d over to the new +matplotlib transformations framework, and it is now available as a +toolkit mpl_toolkits.mplot3d (which now comes standard with all mpl +installs). See :ref:`mplot3d-examples-index` and +:ref:`mplot3d`. + +.. plot:: + + from matplotlib import cm + from mpl_toolkits.mplot3d import Axes3D + + + plt.style.use('classic') + + X = np.arange(-5, 5, 0.25) + Y = np.arange(-5, 5, 0.25) + X, Y = np.meshgrid(X, Y) + R = np.sqrt(X**2 + Y**2) + Z = np.sin(R) + + fig = plt.figure() + ax = Axes3D(fig, auto_add_to_figure=False) + fig.add_axes(ax) + ax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap=cm.viridis) + + plt.show() + +.. _whats-new-axes-grid: + +axes grid toolkit +----------------- + +Jae-Joon Lee has added a new toolkit to ease displaying multiple images in +matplotlib, as well as some support for curvilinear grids to support +the world coordinate system. The toolkit is included standard with all +new mpl installs. See :ref:`axes_grid1-examples-index`, +:ref:`axisartist-examples-index`, :ref:`axes_grid1_users-guide-index` and +:ref:`axisartist_users-guide-index` + +.. plot:: + + from mpl_toolkits.axes_grid1.axes_rgb import RGBAxes + + + def get_demo_image(): + # prepare image + delta = 0.5 + + extent = (-3, 4, -4, 3) + x = np.arange(-3.0, 4.001, delta) + y = np.arange(-4.0, 3.001, delta) + X, Y = np.meshgrid(x, y) + Z1 = np.exp(-X**2 - Y**2) + Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2) + Z = (Z1 - Z2) * 2 + + return Z, extent + + + def get_rgb(): + Z, extent = get_demo_image() + + Z[Z < 0] = 0. + Z = Z / Z.max() + + R = Z[:13, :13] + G = Z[2:, 2:] + B = Z[:13, 2:] + + return R, G, B + + + fig = plt.figure() + + plt.style.use('classic') + + ax = RGBAxes(fig, [0.1, 0.1, 0.8, 0.8]) + + r, g, b = get_rgb() + ax.imshow_rgb(r, g, b, origin="lower") + + ax.RGB.set_xlim(0., 9.5) + ax.RGB.set_ylim(0.9, 10.6) + + plt.show() + +.. _whats-new-spine: + +Axis spine placement +-------------------- + +Andrew Straw has added the ability to place "axis spines" -- the lines +that denote the data limits -- in various arbitrary locations. No +longer are your axis lines constrained to be a simple rectangle around +the figure -- you can turn on or off left, bottom, right and top, as +well as "detach" the spine to offset it away from the data. See +:doc:`/gallery/spines/spine_placement_demo` and +:class:`matplotlib.spines.Spine`. + +.. plot:: + + def adjust_spines(ax, spines): + for loc, spine in ax.spines.items(): + if loc in spines: + spine.set_position(('outward', 10)) # outward by 10 points + else: + spine.set_color('none') # don't draw spine + + # turn off ticks where there is no spine + if 'left' in spines: + ax.yaxis.set_ticks_position('left') + else: + # no yaxis ticks + ax.yaxis.set_ticks([]) + + if 'bottom' in spines: + ax.xaxis.set_ticks_position('bottom') + else: + # no xaxis ticks + ax.xaxis.set_ticks([]) + + fig = plt.figure() + + plt.style.use('classic') + + x = np.linspace(0, 2*np.pi, 100) + y = 2*np.sin(x) + + ax = fig.add_subplot(2, 2, 1) + ax.plot(x, y) + adjust_spines(ax, ['left']) + + ax = fig.add_subplot(2, 2, 2) + ax.plot(x, y) + adjust_spines(ax, []) + + ax = fig.add_subplot(2, 2, 3) + ax.plot(x, y) + adjust_spines(ax, ['left', 'bottom']) + + ax = fig.add_subplot(2, 2, 4) + ax.plot(x, y) + adjust_spines(ax, ['bottom']) + + plt.show() diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/whats_new_1.0.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/whats_new_1.0.rst new file mode 100644 index 0000000000000000000000000000000000000000..c8da886c9097d778bfa74c6f42caf639e908cf49 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/whats_new_1.0.rst @@ -0,0 +1,161 @@ +.. _whats-new-1-0: + +What's new in Matplotlib 1.0 (Jul 06, 2010) +=========================================== + +.. contents:: Table of Contents + :depth: 2 + +.. _whats-new-html5: + +HTML5/Canvas backend +-------------------- + +Simon Ratcliffe and Ludwig Schwardt have released an `HTML5/Canvas +`__ backend for matplotlib. The +backend is almost feature complete, and they have done a lot of work +comparing their html5 rendered images with our core renderer Agg. The +backend features client/server interactive navigation of matplotlib +figures in an html5 compliant browser. + +Sophisticated subplot grid layout +--------------------------------- + +Jae-Joon Lee has written :mod:`~matplotlib.gridspec`, a new module for +doing complex subplot layouts, featuring row and column spans and +more. See :ref:`arranging_axes` for a tutorial +overview. + +.. figure:: ../../gallery/userdemo/images/sphx_glr_demo_gridspec01_001.png + :target: ../../gallery/userdemo/demo_gridspec01.html + :align: center + :scale: 50 + +Easy pythonic subplots +----------------------- + +Fernando Perez got tired of all the boilerplate code needed to create a +figure and multiple subplots when using the matplotlib API, and wrote +a :func:`~matplotlib.pyplot.subplots` helper function. Basic usage +allows you to create the figure and an array of subplots with numpy +indexing (starts with 0). e.g.:: + + fig, axarr = plt.subplots(2, 2) + axarr[0,0].plot([1,2,3]) # upper, left + +See :doc:`/gallery/subplots_axes_and_figures/subplot` for several code examples. + +Contour fixes and triplot +----------------------------- + +Ian Thomas has fixed a long-standing bug that has vexed our most +talented developers for years. :func:`~matplotlib.pyplot.contourf` +now handles interior masked regions, and the boundaries of line and +filled contours coincide. + +Additionally, he has contributed a new module :mod:`~matplotlib.tri` and +helper function :func:`~matplotlib.pyplot.triplot` for creating and +plotting unstructured triangular grids. + +.. figure:: ../../gallery/images_contours_and_fields/images/sphx_glr_triplot_demo_001.png + :target: ../../gallery/images_contours_and_fields/triplot_demo.html + :align: center + :scale: 50 + +multiple calls to show supported +-------------------------------- + +A long standing request is to support multiple calls to +:func:`~matplotlib.pyplot.show`. This has been difficult because it +is hard to get consistent behavior across operating systems, user +interface toolkits and versions. Eric Firing has done a lot of work +on rationalizing show across backends, with the desired behavior to +make show raise all newly created figures and block execution until +they are closed. Repeated calls to show should raise newly created +figures since the last call. Eric has done a lot of testing on the +user interface toolkits and versions and platforms he has access to, +but it is not possible to test them all, so please report problems to +the `mailing list +`__ +and `bug tracker +`__. + + +mplot3d graphs can be embedded in arbitrary axes +------------------------------------------------ + +You can now place an mplot3d graph into an arbitrary axes location, +supporting mixing of 2D and 3D graphs in the same figure, and/or +multiple 3D graphs in a single figure, using the "projection" keyword +argument to add_axes or add_subplot. Thanks Ben Root. + +.. plot:: + + from mpl_toolkits.mplot3d.axes3d import get_test_data + + fig = plt.figure() + + X = np.arange(-5, 5, 0.25) + Y = np.arange(-5, 5, 0.25) + X, Y = np.meshgrid(X, Y) + R = np.sqrt(X**2 + Y**2) + Z = np.sin(R) + ax = fig.add_subplot(1, 2, 1, projection='3d') + surf = ax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap='viridis', + linewidth=0, antialiased=False) + ax.set_zlim3d(-1.01, 1.01) + + fig.colorbar(surf, shrink=0.5, aspect=5) + + X, Y, Z = get_test_data(0.05) + ax = fig.add_subplot(1, 2, 2, projection='3d') + ax.plot_wireframe(X, Y, Z, rstride=10, cstride=10) + + plt.show() + +tick_params +----------- + +Eric Firing wrote tick_params, a convenience method for changing the +appearance of ticks and tick labels. See pyplot function +:func:`~matplotlib.pyplot.tick_params` and associated Axes method +:meth:`~matplotlib.axes.Axes.tick_params`. + +Lots of performance and feature enhancements +-------------------------------------------- + + +* Faster magnification of large images, and the ability to zoom in to + a single pixel + +* Local installs of documentation work better + +* Improved "widgets" -- mouse grabbing is supported + +* More accurate snapping of lines to pixel boundaries + +* More consistent handling of color, particularly the alpha channel, + throughout the API + +Much improved software carpentry +-------------------------------- + +The matplotlib trunk is probably in as good a shape as it has ever +been, thanks to improved `software carpentry +`__. We now have a `buildbot +`__ which runs a suite of `nose +`__ regression tests on every +svn commit, auto-generating a set of images and comparing them against +a set of known-goods, sending emails to developers on failures with a +pixel-by-pixel image comparison. Releases and release +bugfixes happen in branches, allowing active new feature development +to happen in the trunk while keeping the release branches stable. +Thanks to Andrew Straw, Michael Droettboom and other matplotlib +developers for the heavy lifting. + +Bugfix marathon +--------------- + +Eric Firing went on a bug fixing and closing marathon, closing over 100 bugs on +the (now-closed) SourceForge bug tracker with help from Jae-Joon Lee, Michael +Droettboom, Christoph Gohlke and Michiel de Hoon. diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/whats_new_1.1.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/whats_new_1.1.rst new file mode 100644 index 0000000000000000000000000000000000000000..3f48fc9f87b68bf1b8b16602b7d88979cba0029b --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/whats_new_1.1.rst @@ -0,0 +1,224 @@ +.. _whats-new-1-1: + +What's new in Matplotlib 1.1 (Nov 02, 2011) +=========================================== + +.. contents:: Table of Contents + :depth: 2 + + +.. note:: + + matplotlib 1.1 supports Python 2.4 to 2.7 + + +Sankey Diagrams +--------------- + +Kevin Davies has extended Yannick Copin's original Sankey example into a module +(:mod:`~matplotlib.sankey`) and provided new examples +(:doc:`/gallery/specialty_plots/sankey_basics`, +:doc:`/gallery/specialty_plots/sankey_links`, +:doc:`/gallery/specialty_plots/sankey_rankine`). + +.. figure:: ../../gallery/specialty_plots/images/sphx_glr_sankey_rankine_001.png + :target: ../../gallery/specialty_plots/sankey_rankine.html + :align: center + :scale: 50 + +Animation +--------- + +Ryan May has written a backend-independent framework for creating +animated figures. The :mod:`~matplotlib.animation` module is intended +to replace the backend-specific examples formerly in the +:ref:`examples-index` listings. Examples using the new framework are +in :ref:`animation-examples-index`; see the entrancing :file:`double +pendulum ` which uses +:meth:`matplotlib.animation.Animation.save` to create the movie below. + +.. raw:: html + + + +This should be considered as a beta release of the framework; +please try it and provide feedback. + + +Tight Layout +------------ + +A frequent issue raised by users of matplotlib is the lack of a layout +engine to nicely space out elements of the plots. While matplotlib still +adheres to the philosophy of giving users complete control over the placement +of plot elements, Jae-Joon Lee created the ``matplotlib.tight_layout`` +module and introduced a new +command :func:`~matplotlib.pyplot.tight_layout` +to address the most common layout issues. + +.. plot:: + + plt.style.use('classic') + + plt.rcParams['savefig.facecolor'] = "0.8" + plt.rcParams['figure.figsize'] = 4, 3 + + fig, axes_list = plt.subplots(2, 1) + for ax in axes_list.flat: + ax.set(xlabel="x-label", ylabel="y-label", title="before tight_layout") + ax.locator_params(nbins=3) + + plt.show() + + plt.rcParams['savefig.facecolor'] = "0.8" + plt.rcParams['figure.figsize'] = 4, 3 + + fig, axes_list = plt.subplots(2, 1) + for ax in axes_list.flat: + ax.set(xlabel="x-label", ylabel="y-label", title="after tight_layout") + ax.locator_params(nbins=3) + + plt.tight_layout() + plt.show() + +The usage of this functionality can be as simple as :: + + plt.tight_layout() + +and it will adjust the spacing between subplots +so that the axis labels do not overlap with neighboring subplots. A +:ref:`tight_layout_guide` has been created to show how to use +this new tool. + +PyQT4, PySide, and IPython +-------------------------- + +Gerald Storer made the Qt4 backend compatible with PySide as +well as PyQT4. At present, however, PySide does not support +the PyOS_InputHook mechanism for handling gui events while +waiting for text input, so it cannot be used with the new +version 0.11 of `IPython `__. Until this +feature appears in PySide, IPython users should use +the PyQT4 wrapper for QT4, which remains the matplotlib default. + +An rcParam entry, "backend.qt4", has been added to allow users +to select PyQt4, PyQt4v2, or PySide. The latter two use the +Version 2 Qt API. In most cases, users can ignore this rcParam +variable; it is available to aid in testing, and to provide control +for users who are embedding matplotlib in a PyQt4 or PySide app. + + +Legend +------ + +Jae-Joon Lee has improved plot legends. First, +legends for complex plots such as :meth:`~matplotlib.pyplot.stem` plots +will now display correctly. Second, the 'best' placement of a legend has +been improved in the presence of NANs. + +See the :ref:`legend_guide` for more detailed explanation and +examples. + +.. figure:: ../../gallery/text_labels_and_annotations/images/sphx_glr_legend_demo_004.png + :target: ../../gallery/text_labels_and_annotations/legend_demo.html + :align: center + :scale: 50 + +mplot3d +------- + +In continuing the efforts to make 3D plotting in matplotlib just as easy +as 2D plotting, Ben Root has made several improvements to the +:mod:`~mpl_toolkits.mplot3d` module. + +* :class:`~mpl_toolkits.mplot3d.axes3d.Axes3D` has been + improved to bring the class towards feature-parity with regular + Axes objects + +* Documentation for :ref:`mplot3d` was significantly expanded + +* Axis labels and orientation improved + +* Most 3D plotting functions now support empty inputs + +* Ticker offset display added: + +.. figure:: ../../gallery/mplot3d/images/sphx_glr_offset_001.png + :target: ../../gallery/mplot3d/offset.html + :align: center + :scale: 50 + +* :meth:`~mpl_toolkits.mplot3d.axes3d.Axes3D.contourf` + gains *zdir* and *offset* kwargs. You can now do this: + +.. figure:: ../../gallery/mplot3d/images/sphx_glr_contourf3d_2_001.png + :target: ../../gallery/mplot3d/contourf3d_2.html + :align: center + :scale: 50 + +Numerix support removed +----------------------- + +After more than two years of deprecation warnings, Numerix support has +now been completely removed from matplotlib. + +Markers +------- + +The list of available markers for :meth:`~matplotlib.pyplot.plot` and +:meth:`~matplotlib.pyplot.scatter` has now been merged. While they +were mostly similar, some markers existed for one function, but not +the other. This merge did result in a conflict for the 'd' diamond +marker. Now, 'd' will be interpreted to always mean "thin" diamond +while 'D' will mean "regular" diamond. + +Thanks to Michael Droettboom for this effort. + +Other improvements +------------------ + +* Unit support for polar axes and :func:`~matplotlib.axes.Axes.arrow` + +* :class:`~matplotlib.projections.polar.PolarAxes` gains getters and setters for + "theta_direction", and "theta_offset" to allow for theta to go in + either the clock-wise or counter-clockwise direction and to specify where zero + degrees should be placed. + :meth:`~matplotlib.projections.polar.PolarAxes.set_theta_zero_location` is an + added convenience function. + +* Fixed error in argument handling for tri-functions such as + :meth:`~matplotlib.pyplot.tripcolor` + +* ``axes.labelweight`` parameter added to rcParams. + +* For :meth:`~matplotlib.pyplot.imshow`, *interpolation='nearest'* will + now always perform an interpolation. A "none" option has been added to + indicate no interpolation at all. + +* An error in the Hammer projection has been fixed. + +* *clabel* for :meth:`~matplotlib.pyplot.contour` now accepts a callable. + Thanks to Daniel Hyams for the original patch. + +* Jae-Joon Lee added the `~mpl_toolkits.axes_grid1.axes_divider.HBoxDivider` + and `~mpl_toolkits.axes_grid1.axes_divider.VBoxDivider` classes. + +* Christoph Gohlke reduced memory usage in :meth:`~matplotlib.pyplot.imshow`. + +* :meth:`~matplotlib.pyplot.scatter` now accepts empty inputs. + +* The behavior for 'symlog' scale has been fixed, but this may result + in some minor changes to existing plots. This work was refined by + ssyr. + +* Peter Butterworth added named figure support to + :func:`~matplotlib.pyplot.figure`. + +* Michiel de Hoon has modified the MacOSX backend to make + its interactive behavior consistent with the other backends. + +* Pim Schellart added a new colormap called "cubehelix". + Sameer Grover also added a colormap called "coolwarm". See it and all + other colormaps :ref:`here `. + +* Many bug fixes and documentation improvements. diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/whats_new_1.2.2.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/whats_new_1.2.2.rst new file mode 100644 index 0000000000000000000000000000000000000000..ab81018925cda45d2915ebbe726220239bc58da6 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/whats_new_1.2.2.rst @@ -0,0 +1,22 @@ +.. _whats-new-1-2-2: + +What's new in Matplotlib 1.2.2 +============================== + +.. contents:: Table of Contents + :depth: 2 + + + +Improved collections +-------------------- + +The individual items of a collection may now have different alpha +values and be rendered correctly. This also fixes a bug where +collections were always filled in the PDF backend. + +Multiple images on same axes are correctly transparent +------------------------------------------------------ + +When putting multiple images onto the same axes, the background color +of the axes will now show through correctly. diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/whats_new_1.2.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/whats_new_1.2.rst new file mode 100644 index 0000000000000000000000000000000000000000..260941d1ca9e1361331fadccba744bce76288dc3 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/whats_new_1.2.rst @@ -0,0 +1,218 @@ +.. _whats-new-1-2: + + +What's new in Matplotlib 1.2 (Nov 9, 2012) +========================================== + +.. contents:: Table of Contents + :depth: 2 + + +.. note:: + + matplotlib 1.2 supports Python 2.6, 2.7, and 3.1 + +Python 3.x support +------------------ + +Matplotlib 1.2 is the first version to support Python 3.x, +specifically Python 3.1 and 3.2. To make this happen in a reasonable +way, we also had to drop support for Python versions earlier than 2.6. + +This work was done by Michael Droettboom, the Cape Town Python Users' +Group, many others and supported financially in part by the SAGE +project. + +The following GUI backends work under Python 3.x: Gtk3Cairo, Qt4Agg, +TkAgg and MacOSX. The other GUI backends do not yet have adequate +bindings for Python 3.x, but continue to work on Python 2.6 and 2.7, +particularly the Qt and QtAgg backends (which have been +deprecated). The non-GUI backends, such as PDF, PS and SVG, work on +both Python 2.x and 3.x. + +Features that depend on the Python Imaging Library, such as JPEG +handling, do not work, since the version of PIL for Python 3.x is not +sufficiently mature. + +PGF/TikZ backend +---------------- +Peter Würtz wrote a backend that allows matplotlib to export figures as +drawing commands for LaTeX. These can be processed by PdfLaTeX, XeLaTeX or +LuaLaTeX using the PGF/TikZ package. Usage examples and documentation are +found in :ref:`pgf`. + +.. image:: /_static/pgf_preamble.* + +Locator interface +----------------- + +Philip Elson exposed the intelligence behind the tick Locator classes with a +simple interface. For instance, to get no more than 5 sensible steps which +span the values 10 and 19.5:: + + >>> import matplotlib.ticker as mticker + >>> locator = mticker.MaxNLocator(nbins=5) + >>> print(locator.tick_values(10, 19.5)) + [ 10. 12. 14. 16. 18. 20.] + +Tri-Surface Plots +----------------- + +Damon McDougall added a new plotting method for the +:mod:`~mpl_toolkits.mplot3d` toolkit called +:meth:`~mpl_toolkits.mplot3d.axes3d.Axes3D.plot_trisurf`. + +.. figure:: ../../gallery/mplot3d/images/sphx_glr_trisurf3d_001.png + :target: ../../gallery/mplot3d/trisurf3d.html + :align: center + :scale: 50 + +Control the lengths of colorbar extensions +------------------------------------------ + +Andrew Dawson added a new keyword argument *extendfrac* to +:meth:`~matplotlib.pyplot.colorbar` to control the length of +minimum and maximum colorbar extensions. + +.. plot:: + + import matplotlib.pyplot as plt + import numpy as np + + plt.style.use('classic') + + x = y = np.linspace(0., 2*np.pi, 100) + X, Y = np.meshgrid(x, y) + Z = np.cos(X) * np.sin(0.5*Y) + + clevs = [-.75, -.5, -.25, 0., .25, .5, .75] + cmap = plt.cm.get_cmap(name='jet', lut=8) + + ax1 = plt.subplot(211) + cs1 = plt.contourf(x, y, Z, clevs, cmap=cmap, extend='both') + cb1 = plt.colorbar(orientation='horizontal', extendfrac=None) + cb1.set_label('Default length colorbar extensions') + + ax2 = plt.subplot(212) + cs2 = plt.contourf(x, y, Z, clevs, cmap=cmap, extend='both') + cb2 = plt.colorbar(orientation='horizontal', extendfrac='auto') + cb2.set_label('Custom length colorbar extensions') + + plt.show() + + +Figures are picklable +--------------------- + +Philip Elson added an experimental feature to make figures picklable +for quick and easy short-term storage of plots. Pickle files +are not designed for long term storage, are unsupported when restoring a pickle +saved in another matplotlib version and are insecure when restoring a pickle +from an untrusted source. Having said this, they are useful for short term +storage for later modification inside matplotlib. + + +Set default bounding box in matplotlibrc +------------------------------------------ + +Two new defaults are available in the matplotlibrc configuration file: +``savefig.bbox``, which can be set to 'standard' or 'tight', and +``savefig.pad_inches``, which controls the bounding box padding. + + +New Boxplot Functionality +------------------------- + +Users can now incorporate their own methods for computing the median and its +confidence intervals into the `~.Axes.boxplot` method. For +every column of data passed to boxplot, the user can specify an accompanying +median and confidence interval. + +.. figure:: ../../gallery/statistics/images/sphx_glr_boxplot_demo_003.png + :target: ../../gallery/statistics/boxplot_demo.html + :align: center + :scale: 50 + +New RC parameter functionality +------------------------------ + +Matthew Emmett added a function and a context manager to help manage RC +parameters: :func:`~matplotlib.rc_file` and :class:`~matplotlib.rc_context`. +To load RC parameters from a file:: + + >>> mpl.rc_file('mpl.rc') + +To temporarily use RC parameters:: + + >>> with mpl.rc_context(fname='mpl.rc', rc={'text.usetex': True}): + >>> ... + + +Streamplot +---------- + +Tom Flannaghan and Tony Yu have added a new +:meth:`~matplotlib.pyplot.streamplot` function to plot the streamlines of +a vector field. This has been a long-requested feature and complements the +existing :meth:`~matplotlib.pyplot.quiver` function for plotting vector fields. +In addition to simply plotting the streamlines of the vector field, +:meth:`~matplotlib.pyplot.streamplot` allows users to map the colors and/or +line widths of the streamlines to a separate parameter, such as the speed or +local intensity of the vector field. + +.. figure:: ../../gallery/images_contours_and_fields/images/sphx_glr_plot_streamplot_001.png + :target: ../../gallery/images_contours_and_fields/plot_streamplot.html + :align: center + :scale: 50 + +New hist functionality +---------------------- + +Nic Eggert added a new *stacked* kwarg to :meth:`~matplotlib.pyplot.hist` that +allows creation of stacked histograms using any of the histogram types. +Previously, this functionality was only available by using the "barstacked" +histogram type. Now, when ``stacked=True`` is passed to the function, any of the +histogram types can be stacked. The "barstacked" histogram type retains its +previous functionality for backwards compatibility. + +Updated shipped dependencies +---------------------------- + +The following dependencies that ship with matplotlib and are +optionally installed alongside it have been updated: + +- `pytz `_ 2012d +- `dateutil `_ 1.5 on Python 2.x, + and 2.1 on Python 3.x + + +Face-centred colors in tripcolor plots +-------------------------------------- + +Ian Thomas extended :meth:`~matplotlib.pyplot.tripcolor` to allow one color +value to be specified for each triangular face rather than for each point in +a triangulation. + +.. figure:: ../../gallery/images_contours_and_fields/images/sphx_glr_tripcolor_demo_001.png + :target: ../../gallery/images_contours_and_fields/tripcolor_demo.html + :align: center + :scale: 50 + +Hatching patterns in filled contour plots, with legends +------------------------------------------------------- + +Phil Elson added support for hatching to +:func:`~matplotlib.pyplot.contourf`, together with the ability +to use a legend to identify contoured ranges. + +.. figure:: ../../gallery/images_contours_and_fields/images/sphx_glr_contourf_hatching_001.png + :target: ../../gallery/images_contours_and_fields/contourf_hatching.html + :align: center + :scale: 50 + +Known issues in the matplotlib 1.2 release +------------------------------------------ + +- When using the Qt4Agg backend with IPython 0.11 or later, the save + dialog will not display. This should be fixed in a future version + of IPython. diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/whats_new_1.3.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/whats_new_1.3.rst new file mode 100644 index 0000000000000000000000000000000000000000..8552350699173273ff82aae3c565a3588882e073 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/whats_new_1.3.rst @@ -0,0 +1,396 @@ +.. _whats-new-1-3: + +What's new in Matplotlib 1.3 (Aug 01, 2013) +=========================================== + +.. contents:: Table of Contents + :depth: 2 + +.. note:: + + matplotlib 1.3 supports Python 2.6, 2.7, 3.2, and 3.3 + +New in 1.3.1 +------------ + +1.3.1 is a bugfix release, primarily dealing with improved setup and +handling of dependencies, and correcting and enhancing the +documentation. + +The following changes were made in 1.3.1 since 1.3.0. + +Enhancements +```````````` + +- Added a context manager for creating multi-page pdfs (see + `matplotlib.backends.backend_pdf.PdfPages`). + +- The WebAgg backend should now have lower latency over heterogeneous + Internet connections. + +Bug fixes +````````` + +- Histogram plots now contain the endline. + +- Fixes to the Molleweide projection. + +- Handling recent fonts from Microsoft and Macintosh-style fonts with + non-ascii metadata is improved. + +- Hatching of fill between plots now works correctly in the PDF + backend. + +- Tight bounding box support now works in the PGF backend. + +- Transparent figures now display correctly in the Qt4Agg backend. + +- Drawing lines from one subplot to another now works. + +- Unit handling on masked arrays has been improved. + +Setup and dependencies +`````````````````````` + +- Now works with any version of pyparsing 1.5.6 or later, without displaying + hundreds of warnings. + +- Now works with 64-bit versions of Ghostscript on MS-Windows. + +- When installing from source into an environment without Numpy, Numpy + will first be downloaded and built and then used to build + matplotlib. + +- Externally installed backends are now always imported using a + fully-qualified path to the module. + +- Works with newer version of wxPython. + +- Can now build with a PyCXX installed globally on the system from source. + +- Better detection of Gtk3 dependencies. + +Testing +``````` + +- Tests should now work in non-English locales. + +- PEP8 conformance tests now report on locations of issues. + + +New plotting features +--------------------- + +`~.xkcd`-style sketch plotting +`````````````````````````````` +To give your plots a sense of authority that they may be missing, +Michael Droettboom (inspired by the work of many others in +:ghpull:`1329`) has added an `xkcd-style `__ sketch +plotting mode. To use it, simply call `matplotlib.pyplot.xkcd` +before creating your plot. For really fine control, it is also possible +to modify each artist's sketch parameters individually with +:meth:`matplotlib.artist.Artist.set_sketch_params`. + +.. figure:: ../../gallery/showcase/images/sphx_glr_xkcd_001.png + :target: ../../gallery/showcase/xkcd.html + :align: center + :scale: 50 + +Updated Axes3D.contour methods +------------------------------ +Damon McDougall updated the +:meth:`~mpl_toolkits.mplot3d.axes3d.Axes3D.tricontour` and +:meth:`~mpl_toolkits.mplot3d.axes3d.Axes3D.tricontourf` methods to allow 3D +contour plots on arbitrary unstructured user-specified triangulations. + +.. figure:: ../../gallery/mplot3d/images/sphx_glr_tricontour3d_001.png + :target: ../../gallery/mplot3d/tricontour3d.html + :align: center + :scale: 50 + +New eventplot plot type +``````````````````````` +Todd Jennings added a :func:`~matplotlib.pyplot.eventplot` function to +create multiple rows or columns of identical line segments + +.. figure:: ../../gallery/lines_bars_and_markers/images/sphx_glr_eventplot_demo_001.png + :target: ../../gallery/lines_bars_and_markers/eventplot_demo.html + :align: center + :scale: 50 + +As part of this feature, there is a new +:class:`~matplotlib.collections.EventCollection` class that allows for +plotting and manipulating rows or columns of identical line segments. + +Triangular grid interpolation +````````````````````````````` +Geoffroy Billotey and Ian Thomas added classes to perform +interpolation within triangular grids: +(:class:`~matplotlib.tri.LinearTriInterpolator` and +:class:`~matplotlib.tri.CubicTriInterpolator`) and a utility class to +find the triangles in which points lie +(:class:`~matplotlib.tri.TrapezoidMapTriFinder`). A helper class to +perform mesh refinement and smooth contouring was also added +(:class:`~matplotlib.tri.UniformTriRefiner`). Finally, a class +implementing some basic tools for triangular mesh improvement was +added (:class:`~matplotlib.tri.TriAnalyzer`). + +.. figure:: ../../gallery/images_contours_and_fields/images/sphx_glr_tricontour_smooth_user_001.png + :target: ../../gallery/images_contours_and_fields/tricontour_smooth_user.html + :align: center + :scale: 50 + +Baselines for stackplot +``````````````````````` +Till Stensitzki added non-zero baselines to +:func:`~matplotlib.pyplot.stackplot`. They may be symmetric or +weighted. + +.. figure:: ../../gallery/lines_bars_and_markers/images/sphx_glr_stackplot_demo_001.png + :target: ../../gallery/lines_bars_and_markers/stackplot_demo.html + :align: center + :scale: 50 + +Rectangular colorbar extensions +``````````````````````````````` +Andrew Dawson added a new keyword argument *extendrect* to +:meth:`~matplotlib.pyplot.colorbar` to optionally make colorbar +extensions rectangular instead of triangular. + +More robust boxplots +```````````````````` +Paul Hobson provided a fix to the :func:`~matplotlib.pyplot.boxplot` +method that prevent whiskers from being drawn inside the box for +oddly distributed data sets. + +Calling subplot() without arguments +``````````````````````````````````` +A call to :func:`~matplotlib.pyplot.subplot` without any arguments now +acts the same as ``subplot(111)`` or ``subplot(1, 1, 1)`` -- it creates one +axes for the whole figure. This was already the behavior for both +:func:`~matplotlib.pyplot.axes` and +:func:`~matplotlib.pyplot.subplots`, and now this consistency is +shared with :func:`~matplotlib.pyplot.subplot`. + +Drawing +------- + +Independent alpha values for face and edge colors +````````````````````````````````````````````````` +Wes Campaigne modified how :class:`~matplotlib.patches.Patch` objects are +drawn such that (for backends supporting transparency) you can set different +alpha values for faces and edges, by specifying their colors in RGBA format. +Note that if you set the alpha attribute for the patch object (e.g. using +:meth:`~matplotlib.patches.Patch.set_alpha` or the ``alpha`` keyword +argument), that value will override the alpha components set in both the +face and edge colors. + +Path effects on lines +````````````````````` +Thanks to Jae-Joon Lee, path effects now also work on plot lines. + +.. figure:: ../../gallery/misc/images/sphx_glr_patheffect_demo_001.png + :target: ../../gallery/misc/patheffect_demo.html + :align: center + :scale: 50 + +Easier creation of colormap and normalizer for levels with colors +````````````````````````````````````````````````````````````````` +Phil Elson added the :func:`matplotlib.colors.from_levels_and_colors` +function to easily create a colormap and normalizer for representation +of discrete colors for plot types such as +:func:`matplotlib.pyplot.pcolormesh`, with a similar interface to that +of `matplotlib.pyplot.contourf`. + +Full control of the background color +```````````````````````````````````` +Wes Campaigne and Phil Elson fixed the Agg backend such that PNGs are +now saved with the correct background color when +``fig.patch.get_alpha()`` is not 1. + +Improved ``bbox_inches="tight"`` functionality +`````````````````````````````````````````````` +Passing ``bbox_inches="tight"`` through to `.pyplot.savefig` now takes +into account *all* artists on a figure - this was previously not the +case and led to several corner cases which did not function as +expected. + +Initialize a rotated rectangle +`````````````````````````````` +Damon McDougall extended the :class:`~matplotlib.patches.Rectangle` +constructor to accept an *angle* kwarg, specifying the rotation of a +rectangle in degrees. + +Text +---- + +Anchored text support +````````````````````` +The SVG and pgf backends are now able to save text alignment +information to their output formats. This allows to edit text elements +in saved figures, using Inkscape for example, while preserving their +intended position. For SVG please note that you'll have to disable +the default text-to-path conversion (``mpl.rc('svg', +fonttype='none')``). + +Better vertical text alignment and multi-line text +`````````````````````````````````````````````````` +The vertical alignment of text is now consistent across backends. You +may see small differences in text placement, particularly with rotated +text. + +If you are using a custom backend, note that the `~.RendererBase.draw_text` renderer +method is now passed the location of the baseline, not the location of +the bottom of the text bounding box. + +Multi-line text will now leave enough room for the height of very tall +or very low text, such as superscripts and subscripts. + +Left and right side axes titles +``````````````````````````````` +Andrew Dawson added the ability to add axes titles flush with the left +and right sides of the top of the axes using a new keyword argument +*loc* to :func:`~matplotlib.pyplot.title`. + +Improved manual contour plot label positioning +`````````````````````````````````````````````` +Brian Mattern modified the manual contour plot label positioning code +to interpolate along line segments and find the actual closest point +on a contour to the requested position. Previously, the closest path +vertex was used, which, in the case of straight contours was sometimes +quite distant from the requested location. Much more precise label +positioning is now possible. + +Configuration (rcParams) +------------------------ + +Quickly find rcParams +````````````````````` +Phil Elson made it easier to search for rcParameters by passing a +valid regular expression to :func:`matplotlib.RcParams.find_all`. +:class:`matplotlib.RcParams` now also has a pretty repr and str +representation so that search results are printed prettily: + + >>> import matplotlib + >>> print(matplotlib.rcParams.find_all('\.size')) + RcParams({'font.size': 12, + 'xtick.major.size': 4, + 'xtick.minor.size': 2, + 'ytick.major.size': 4, + 'ytick.minor.size': 2}) + +``axes.xmargin`` and ``axes.ymargin`` added to rcParams +``````````````````````````````````````````````````````` +:rc:`axes.xmargin` and :rc:`axes.ymargin` were added +to configure the default margins used. Previously they were +hard-coded to default to 0, default value of both rcParam values is 0. + +Changes to font rcParams +```````````````````````` +The ``font.*`` rcParams now affect only text objects created after the +rcParam has been set, and will not retroactively affect already +existing text objects. This brings their behavior in line with most +other rcParams. + +Added :rc:`savefig.jpeg_quality` +```````````````````````````````` +rcParam value :rc:`savefig.jpeg_quality` was added so that the user can +configure the default quality used when a figure is written as a JPEG. +The default quality is 95; previously, the default quality was 75. +This change minimizes the artifacting inherent in JPEG images, +particularly with images that have sharp changes in color as plots +often do. + +Backends +-------- + +WebAgg backend +`````````````` +Michael Droettboom, Phil Elson and others have developed a new +backend, WebAgg, to display figures in a web browser. It works with +animations as well as being fully interactive. + +.. image:: /_static/webagg_screenshot.png + +Future versions of matplotlib will integrate this backend with the +IPython notebook for a fully web browser based plotting frontend. + +Remember save directory +``````````````````````` +Martin Spacek made the save figure dialog remember the last directory +saved to. The default is configurable with the new :rc:`savefig.directory` +rcParam in :file:`matplotlibrc`. + +Documentation and examples +-------------------------- + +Numpydoc docstrings +``````````````````` +Nelle Varoquaux has started an ongoing project to convert matplotlib's +docstrings to numpydoc format. See `MEP10 +`__ for more +information. + +Example reorganization +`````````````````````` +Tony Yu has begun work reorganizing the examples into more meaningful +categories. The new gallery page is the fruit of this ongoing work. +See `MEP12 `__ for +more information. + +Examples now use subplots() +``````````````````````````` +For the sake of brevity and clarity, most of the :ref:`examples +` now use the newer +:func:`~matplotlib.pyplot.subplots`, which creates a figure and one +(or multiple) axes object(s) in one call. The old way involved a call +to :func:`~matplotlib.pyplot.figure`, followed by one (or multiple) +:func:`~matplotlib.pyplot.subplot` calls. + +Infrastructure +-------------- + +Housecleaning +````````````` +A number of features that were deprecated in 1.2 or earlier, or have +not been in a working state for a long time have been removed. +Highlights include removing the Qt version 3 backends, and the FltkAgg +and Emf backends. See :ref:`changes_in_1_3` for a complete list. + +New setup script +```````````````` +matplotlib 1.3 includes an entirely rewritten setup script. We now +ship fewer dependencies with the tarballs and installers themselves. +Notably, pytz_, dateutil_, pyparsing_ and six_ are no longer +included with matplotlib. You can either install them manually first, +or let pip_ install them as dependencies along with matplotlib. It +is now possible to not include certain subcomponents, such as the unit +test data, in the install. See :file:`setup.cfg.template` for more +information. + +.. _dateutil: https://pypi.org/project/python-dateutil/ +.. _pip: https://pypi.org/project/pip/ +.. _pyparsing: https://pypi.org/project/pyparsing/ +.. _pytz: https://pypi.org/project/pytz/ +.. _six: https://pypi.org/project/six/ + +XDG base directory support +`````````````````````````` +On Linux, matplotlib now uses the `XDG base directory specification +`_ to +find the :file:`matplotlibrc` configuration file. :file:`matplotlibrc` should +now be kept in :file:`~/.config/matplotlib`, rather than :file:`~/.matplotlib`. +If your configuration is found in the old location, it will still be used, but +a warning will be displayed. + +Catch opening too many figures using pyplot +``````````````````````````````````````````` +Figures created through `.pyplot.figure` are retained until they are +explicitly closed. It is therefore common for new users of matplotlib +to run out of memory when creating a large series of figures in a loop +without closing them. + +matplotlib will now display a `RuntimeWarning` when too many figures +have been opened at once. By default, this is displayed for 20 or +more figures, but the exact number may be controlled using the +``figure.max_open_warning`` rcParam. diff --git a/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/whats_new_1.4.rst b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/whats_new_1.4.rst new file mode 100644 index 0000000000000000000000000000000000000000..b8a85638646b28cda376bcfb1fcd30baa8166380 --- /dev/null +++ b/testbed/matplotlib__matplotlib/doc/users/prev_whats_new/whats_new_1.4.rst @@ -0,0 +1,425 @@ +.. _whats-new-1-4: + + +What's new in Matplotlib 1.4 (Aug 25, 2014) +=========================================== + +Thomas A. Caswell served as the release manager for the 1.4 release. + + +.. contents:: Table of Contents + :depth: 2 + + +.. note:: + + matplotlib 1.4 supports Python 2.6, 2.7, 3.3, and 3.4 + + +New colormap +------------ +In heatmaps, a green-to-red spectrum is often used to indicate intensity of +activity, but this can be problematic for the red/green colorblind. A new, +colorblind-friendly colormap is now available at ``matplotlib.cm.Wistia``. +This colormap maintains the red/green symbolism while achieving deuteranopic +legibility through brightness variations. See +`here `__ +for more information. + +The nbagg backend +----------------- +Phil Elson added a new backend, named "nbagg", which enables interactive +figures in a live IPython notebook session. The backend makes use of the +infrastructure developed for the webagg backend, which itself gives +standalone server backed interactive figures in the browser, however nbagg +does not require a dedicated matplotlib server as all communications are +handled through the IPython Comm machinery. + +As with other backends nbagg can be enabled inside the IPython notebook with:: + + import matplotlib + matplotlib.use('nbagg') + +Once figures are created and then subsequently shown, they will placed in an +interactive widget inside the notebook allowing panning and zooming in the +same way as any other matplotlib backend. Because figures require a connection +to the IPython notebook server for their interactivity, once the notebook is +saved, each figure will be rendered as a static image - thus allowing +non-interactive viewing of figures on services such as +`nbviewer `__. + + + +New plotting features +--------------------- + +Power-law normalization +``````````````````````` +Ben Gamari added a power-law normalization method, +:class:`~matplotlib.colors.PowerNorm`. This class maps a range of +values to the interval [0,1] with power-law scaling with the exponent +provided by the constructor's *gamma* argument. Power law normalization +can be useful for, e.g., emphasizing small populations in a histogram. + +Fully customizable boxplots +``````````````````````````` +Paul Hobson overhauled the :func:`~matplotlib.pyplot.boxplot` method such +that it is now completely customizable in terms of the styles and positions +of the individual artists. Under the hood, :func:`~matplotlib.pyplot.boxplot` +relies on a new function (:func:`~matplotlib.cbook.boxplot_stats`), which +accepts any data structure currently compatible with +:func:`~matplotlib.pyplot.boxplot`, and returns a list of dictionaries +containing the positions for each element of the boxplots. Then +a second method, `~.Axes.bxp` is called to draw the boxplots +based on the stats. + +The :func:`~matplotlib.pyplot.boxplot` function can be used as before to +generate boxplots from data in one step. But now the user has the +flexibility to generate the statistics independently, or to modify the +output of :func:`~matplotlib.cbook.boxplot_stats` prior to plotting +with `~.Axes.bxp`. + +Lastly, each artist (e.g., the box, outliers, cap, notches) can now be +toggled on or off and their styles can be passed in through individual +kwargs. See the examples: +:doc:`/gallery/statistics/boxplot` and +:doc:`/gallery/statistics/bxp` + +Added a bool kwarg, :code:`manage_xticks`, which if False disables the management +of the ticks and limits on the x-axis by :func:`~matplotlib.axes.Axes.bxp`. + +Support for datetime axes in 2d plots +````````````````````````````````````` +Andrew Dawson added support for datetime axes to +:func:`~matplotlib.pyplot.contour`, :func:`~matplotlib.pyplot.contourf`, +:func:`~matplotlib.pyplot.pcolormesh` and :func:`~matplotlib.pyplot.pcolor`. + +Support for additional spectrum types +````````````````````````````````````` +Todd Jennings added support for new types of frequency spectrum plots: +:func:`~matplotlib.pyplot.magnitude_spectrum`, +:func:`~matplotlib.pyplot.phase_spectrum`, and +:func:`~matplotlib.pyplot.angle_spectrum`, as well as corresponding functions +in mlab. + +He also added these spectrum types to :func:`~matplotlib.pyplot.specgram`, +as well as adding support for linear scaling there (in addition to the +existing dB scaling). Support for additional spectrum types was also added to +:func:`~matplotlib.mlab.specgram`. + +He also increased the performance for all of these functions and plot types. + +Support for detrending and windowing 2D arrays in mlab +`````````````````````````````````````````````````````` +Todd Jennings added support for 2D arrays in the +:func:`~matplotlib.mlab.detrend_mean`, :func:`~matplotlib.mlab.detrend_none`, +and :func:`~matplotlib.mlab.detrend`, as well as adding +``matplotlib.mlab.apply_window`` which support windowing 2D arrays. + +Support for strides in mlab +``````````````````````````` +Todd Jennings added some functions to mlab to make it easier to use NumPy +strides to create memory-efficient 2D arrays. This includes +``matplotlib.mlab.stride_repeat``, which repeats an array to create a 2D +array, and ``matplotlib.mlab.stride_windows``, which uses a moving window +to create a 2D array from a 1D array. + +Formatter for new-style formatting strings +`````````````````````````````````````````` +Added `.StrMethodFormatter` which does the same job as +`.FormatStrFormatter`, but accepts new-style formatting strings +instead of printf-style formatting strings + +Consistent grid sizes in streamplots +```````````````````````````````````` +:func:`~matplotlib.pyplot.streamplot` uses a base grid size of 30x30 for both +``density=1`` and ``density=(1, 1)``. Previously a grid size of 30x30 was used for +``density=1``, but a grid size of 25x25 was used for ``density=(1, 1)``. + +Get a list of all tick labels (major and minor) +``````````````````````````````````````````````` +Added the kwarg 'which' to `.Axes.get_xticklabels`, +`.Axes.get_yticklabels` and +`.Axis.get_ticklabels`. 'which' can be 'major', 'minor', or +'both' select which ticks to return, like +`~.XAxis.set_ticks_position`. If 'which' is `None` then the old +behaviour (controlled by the bool *minor*). + +Separate horizontal/vertical axes padding support in ImageGrid +`````````````````````````````````````````````````````````````` +The kwarg 'axes_pad' to :class:`mpl_toolkits.axes_grid1.axes_grid.ImageGrid` can now +be a tuple if separate horizontal/vertical padding is needed. +This is supposed to be very helpful when you have a labelled legend next to +every subplot and you need to make some space for legend's labels. + +Support for skewed transformations +`````````````````````````````````` +The :class:`~matplotlib.transforms.Affine2D` gained additional methods +`.skew` and `.skew_deg` to create skewed transformations. Additionally, +matplotlib internals were cleaned up to support using such transforms in +`~matplotlib.axes.Axes`. This transform is important for some plot types, +specifically the Skew-T used in meteorology. + +.. figure:: ../../gallery/specialty_plots/images/sphx_glr_skewt_001.png + :target: ../../gallery/specialty_plots/skewt.html + :align: center + :scale: 50 + +Support for specifying properties of wedge and text in pie charts. +`````````````````````````````````````````````````````````````````` +Added the kwargs 'wedgeprops' and 'textprops' to `~.Axes.pie` +to accept properties for wedge and text objects in a pie. For example, one can +specify wedgeprops = {'linewidth':3} to specify the width of the borders of +the wedges in the pie. For more properties that the user can specify, look at +the docs for the wedge and text objects. + +Fixed the direction of errorbar upper/lower limits +`````````````````````````````````````````````````` +Larry Bradley fixed the :func:`~matplotlib.pyplot.errorbar` method such +that the upper and lower limits (*lolims*, *uplims*, *xlolims*, +*xuplims*) now point in the correct direction. + +More consistent add-object API for Axes +``````````````````````````````````````` +Added the Axes method `~matplotlib.axes.Axes.add_image` to put image +handling on a par with artists, collections, containers, lines, patches, +and tables. + +Violin Plots +```````````` +Per Parker, Gregory Kelsie, Adam Ortiz, Kevin Chan, Geoffrey Lee, Deokjae +Donald Seo, and Taesu Terry Lim added a basic implementation for violin +plots. Violin plots can be used to represent the distribution of sample data. +They are similar to box plots, but use a kernel density estimation function to +present a smooth approximation of the data sample used. The added features are: + +`~.Axes.violin` - Renders a violin plot from a collection of +statistics. +:func:`~matplotlib.cbook.violin_stats` - Produces a collection of statistics +suitable for rendering a violin plot. +:func:`~matplotlib.pyplot.violinplot` - Creates a violin plot from a set of +sample data. This method makes use of :func:`~matplotlib.cbook.violin_stats` +to process the input data, and :func:`~matplotlib.cbook.violin_stats` to +do the actual rendering. Users are also free to modify or replace the output of +:func:`~matplotlib.cbook.violin_stats` in order to customize the violin plots +to their liking. + +This feature was implemented for a software engineering course at the +University of Toronto, Scarborough, run in Winter 2014 by Anya Tafliovich. + +More *markevery* options to show only a subset of markers +````````````````````````````````````````````````````````` +Rohan Walker extended the *markevery* property in +:class:`~matplotlib.lines.Line2D`. You can now specify a subset of markers to +show with an int, slice object, numpy fancy indexing, or float. Using a float +shows markers at approximately equal display-coordinate-distances along the +line. + +Added size related functions to specialized `.Collection`\s +``````````````````````````````````````````````````````````` + +Added the ``get_size`` and ``set_size`` functions to control the size of +elements of specialized collections ( +:class:`~matplotlib.collections.AsteriskPolygonCollection` +:class:`~matplotlib.collections.BrokenBarHCollection` +:class:`~matplotlib.collections.CircleCollection` +:class:`~matplotlib.collections.PathCollection` +:class:`~matplotlib.collections.PolyCollection` +:class:`~matplotlib.collections.RegularPolyCollection` +:class:`~matplotlib.collections.StarPolygonCollection`). + + +Fixed the mouse coordinates giving the wrong theta value in Polar graph +``````````````````````````````````````````````````````````````````````` +Added code to +`~.polar.InvertedPolarTransform.transform_non_affine` +to ensure that the calculated theta value was between the range of 0 and 2 * pi +since the problem was that the value can become negative after applying the +direction and rotation to the theta calculation. + +Simple quiver plot for mplot3d toolkit +`````````````````````````````````````` +A team of students in an *Engineering Large Software Systems* course, taught +by Prof. Anya Tafliovich at the University of Toronto, implemented a simple +version of a quiver plot in 3D space for the mplot3d toolkit as one of their +term project. This feature is documented in `~.Axes3D.quiver`. +The team members are: Ryan Steve D'Souza, Victor B, xbtsw, Yang Wang, David, +Caradec Bisesar and Vlad Vassilovski. + +.. figure:: ../../gallery/mplot3d/images/sphx_glr_quiver3d_001.png + :target: ../../gallery/mplot3d/quiver3d.html + :align: center + :scale: 50 + +polar-plot r-tick locations +``````````````````````````` +Added the ability to control the angular position of the r-tick labels +on a polar plot via `~.PolarAxes.set_rlabel_position`. + + +Date handling +------------- + +n-d array support for date conversion +`````````````````````````````````````` +Andrew Dawson added support for n-d array handling to +:func:`matplotlib.dates.num2date`, :func:`matplotlib.dates.date2num` +and :func:`matplotlib.dates.datestr2num`. Support is also added to the unit +conversion interfaces :class:`matplotlib.dates.DateConverter` and +:class:`matplotlib.units.Registry`. + + +Configuration (rcParams) +------------------------ + + +``savefig.transparent`` added +````````````````````````````` +Controls whether figures are saved with a transparent +background by default. Previously `~.Figure.savefig` always defaulted +to a non-transparent background. + + +``axes.titleweight`` +```````````````````` +Added rcParam to control the weight of the title + +``axes.formatter.useoffset`` added +`````````````````````````````````` +Controls the default value of *useOffset* in `.ScalarFormatter`. If +`True` and the data range is much smaller than the data average, then +an offset will be determined such that the tick labels are +meaningful. If `False` then the full number will be formatted in all +conditions. + +``nbagg.transparent`` added +````````````````````````````` +Controls whether nbagg figures have a transparent +background. ``nbagg.transparent`` is ``True`` by default. + + +XDG compliance +`````````````` +Matplotlib now looks for configuration files (both rcparams and style) in XDG +compliant locations. + +``style`` package added +----------------------- +You can now easily switch between different styles using the new ``style`` +package:: + + >>> from matplotlib import style + >>> style.use('dark_background') + +Subsequent plots will use updated colors, sizes, etc. To list all available +styles, use:: + + >>> print style.available + +You can add your own custom ``