Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4d189e5

Browse files
committed
Merge branch 'v3.3.0-doc' into v3.3.x
2 parents 3a30505 + 4c6689c commit 4d189e5

24 files changed

Lines changed: 125 additions & 34 deletions

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ examples/*/*.svgz
7979
examples/tests/*
8080
!examples/tests/backend_driver_sgskip.py
8181
result_images
82+
doc/_static/constrained_layout*.png
8283

8384
# Nose/Pytest generated files #
8485
###############################
-37.6 KB
Binary file not shown.
-10.3 KB
Binary file not shown.
-10.3 KB
Binary file not shown.

doc/_static/figpager.png

49.6 KB
Loading
Lines changed: 35 additions & 0 deletions
Loading
Lines changed: 35 additions & 0 deletions
Loading

doc/api/prev_api_changes/api_changes_3.1.0.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,11 @@ The following miscellaneous API elements have been removed
531531

532532
import logging
533533
logger = logging.getLogger('matplotlib')
534-
logger.set_level(logging.INFO)
534+
logger.setLevel(logging.INFO)
535+
# configure log handling: Either include it into your ``logging`` hierarchy,
536+
# e.g. by configuring a root looger using ``logging.basicConfig()``,
537+
# or add a standalone handler to the matplotlib logger:
538+
logger.addHandler(logging.StreamHandler())
535539

536540
- ``__version__numpy__``
537541
- ``collections.CIRCLE_AREA_FACTOR``

doc/citing.rst

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,12 @@ By version
3939
.. START OF AUTOGENERATED
4040
4141
42+
v3.3.0
43+
.. image:: _static/zenodo_cache/3948793.svg
44+
:target: https://doi.org/10.5281/zenodo.3948793
4245
v3.2.2
43-
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.3898017.svg
44-
:target: https://doi.org/10.5281/zenodo.3898017
46+
.. image:: _static/zenodo_cache/3898017.svg
47+
:target: https://doi.org/10.5281/zenodo.3898017
4548
v3.2.1
4649
.. image:: _static/zenodo_cache/3714460.svg
4750
:target: https://doi.org/10.5281/zenodo.3714460

doc/thirdpartypackages/index.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,14 @@ border, and logo.
282282
.. image:: /_static/mpl_template_example.png
283283
:height: 330px
284284

285+
figpager
286+
========
287+
`figpager <https://pypi.org/project/figpager/>`_ provides customizable figure
288+
elements such as text, lines and images and subplot layout control for single
289+
or multi page output.
290+
291+
.. image:: /_static/figpager.png
292+
285293
blume
286294
=====
287295

0 commit comments

Comments
 (0)