Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 3.3.1 #18247

Merged
merged 25 commits into from
Aug 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
9ee8cab
Add Zenodo DOIs for 3.3.0.
QuLogic Jul 16, 2020
8994f1b
DOC: Update GitHub stats again.
QuLogic Jul 16, 2020
53d38e0
Backport PR #17949: examples: fix a few deprecated subplot specifiers.
QuLogic Jul 17, 2020
706ee53
Merge pull request #17952 from meeseeksmachine/auto-backport-of-pr-17…
QuLogic Jul 17, 2020
030b93b
Backport PR #17953: typo in 3.3 whatsnew: "computer visualization" ->…
QuLogic Jul 18, 2020
291cddd
Merge pull request #17957 from meeseeksmachine/auto-backport-of-pr-17…
QuLogic Jul 18, 2020
cc9c9ab
Backport PR #18055: Fix link to get_offsets in hexbin doc
timhoffm Jul 25, 2020
435e86f
Backport PR #18059: Added figpager info
timhoffm Jul 25, 2020
d8f61d8
Merge pull request #18065 from meeseeksmachine/auto-backport-of-pr-18…
dstansby Jul 25, 2020
6bd7218
Merge pull request #18064 from meeseeksmachine/auto-backport-of-pr-18…
dstansby Jul 25, 2020
a280114
Backport PR #18094: Fix example code for enabling logging in API chan…
dopplershift Jul 28, 2020
ec07182
Backport PR #18100: DOC: update tight layout guide with set_in_layout
jklymak Jul 29, 2020
9a7eae1
Merge pull request #18105 from meeseeksmachine/auto-backport-of-pr-18…
QuLogic Jul 29, 2020
6b48aa1
Merge pull request #18108 from meeseeksmachine/auto-backport-of-pr-18…
QuLogic Jul 29, 2020
63ddc75
Backport PR #17947: DOC: don't make CL tutorial save new file all the…
timhoffm Jul 29, 2020
2cf57ec
Merge pull request #18116 from meeseeksmachine/auto-backport-of-pr-17…
jklymak Jul 29, 2020
18e98b1
Backport PR #18115: fix typo in Poly3DCollection docstring
jklymak Jul 29, 2020
c8b0863
Merge pull request #18117 from meeseeksmachine/auto-backport-of-pr-18…
dstansby Jul 29, 2020
b0137e9
Backport PR #18149: DOC: fix align_xlabels() typo
jklymak Aug 2, 2020
4c6689c
Merge pull request #18152 from meeseeksmachine/auto-backport-of-pr-18…
jklymak Aug 2, 2020
4d189e5
Merge branch 'v3.3.0-doc' into v3.3.x
QuLogic Aug 13, 2020
b5cf43b
Update exclude_patterns for moved API/what's new.
QuLogic Jul 31, 2020
4bab03e
Move API changes to correct file.
QuLogic Aug 13, 2020
43e36f2
Update GitHub stats for 3.3.1.
QuLogic Aug 13, 2020
bcbabb3
Backport PR #18243: Fix reshape list of strings
QuLogic Aug 13, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ examples/*/*.svgz
examples/tests/*
!examples/tests/backend_driver_sgskip.py
result_images
doc/_static/constrained_layout*.png

# Nose/Pytest generated files #
###############################
Expand Down
Binary file removed doc/_static/constrained_layout/CL00.png
Binary file not shown.
Binary file removed doc/_static/constrained_layout/CL01.png
Binary file not shown.
Binary file removed doc/_static/constrained_layout/CL02.png
Binary file not shown.
Binary file added doc/_static/figpager.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions doc/_static/zenodo_cache/3898017.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions doc/_static/zenodo_cache/3948793.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions doc/api/api_changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,5 @@ added to Matplotlib, see :ref:`whats-new`

api_changes_3.4/*

.. include:: prev_api_changes/api_changes_3.3.1.rst
.. include:: prev_api_changes/api_changes_3.3.0.rst
17 changes: 0 additions & 17 deletions doc/api/api_changes_3.4/deprecations.rst
Original file line number Diff line number Diff line change
@@ -1,19 +1,2 @@
Deprecations
------------

Reverted deprecation of ``num2epoch`` and ``epoch2num``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

These two functions were deprecated in 3.3.0, and did not return
an accurate Matplotlib datenum relative to the new Matplotlib epoch
handling (`~.dates.get_epoch` and :rc:`date.epoch`). This version
reverts the deprecation.

Functions ``epoch2num`` and ``dates.julian2num`` use ``date.epoch`` rcParam
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Now `~.dates.epoch2num` and (undocumented) ``julian2num`` return floating point
days since `~.dates.get_epoch` as set by :rc:`date.epoch`, instead of
floating point days since the old epoch of "0000-12-31T00:00:00". If
needed, you can translate from the new to old values as
``old = new + mdates.date2num(np.datetime64('0000-12-31'))``
6 changes: 5 additions & 1 deletion doc/api/prev_api_changes/api_changes_3.1.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,11 @@ The following miscellaneous API elements have been removed

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

- ``__version__numpy__``
- ``collections.CIRCLE_AREA_FACTOR``
Expand Down
22 changes: 22 additions & 0 deletions doc/api/prev_api_changes/api_changes_3.3.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
API Changes for 3.3.1
=====================

Deprecations
------------

Reverted deprecation of ``num2epoch`` and ``epoch2num``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

These two functions were deprecated in 3.3.0, and did not return
an accurate Matplotlib datenum relative to the new Matplotlib epoch
handling (`~.dates.get_epoch` and :rc:`date.epoch`). This version
reverts the deprecation.

Functions ``epoch2num`` and ``dates.julian2num`` use ``date.epoch`` rcParam
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Now `~.dates.epoch2num` and (undocumented) ``julian2num`` return floating point
days since `~.dates.get_epoch` as set by :rc:`date.epoch`, instead of
floating point days since the old epoch of "0000-12-31T00:00:00". If
needed, you can translate from the new to old values as
``old = new + mdates.date2num(np.datetime64('0000-12-31'))``
7 changes: 5 additions & 2 deletions doc/citing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,12 @@ By version
.. START OF AUTOGENERATED


v3.3.0
.. image:: _static/zenodo_cache/3948793.svg
:target: https://doi.org/10.5281/zenodo.3948793
v3.2.2
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.3898017.svg
:target: https://doi.org/10.5281/zenodo.3898017
.. image:: _static/zenodo_cache/3898017.svg
:target: https://doi.org/10.5281/zenodo.3898017
v3.2.1
.. image:: _static/zenodo_cache/3714460.svg
:target: https://doi.org/10.5281/zenodo.3714460
Expand Down
7 changes: 6 additions & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,12 @@
'sphinx_copybutton',
]

exclude_patterns = ['api/api_changes/*', 'users/whats_new/*']
exclude_patterns = [
'api/prev_api_changes/api_changes_*/*',
# Be sure to update users/whats_new.rst:
'users/prev_whats_new/whats_new_3.3.0.rst',
'users/prev_whats_new/whats_new_3.3.1.rst',
]


def _check_dependencies():
Expand Down
8 changes: 8 additions & 0 deletions doc/thirdpartypackages/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,14 @@ border, and logo.
.. image:: /_static/mpl_template_example.png
:height: 330px

figpager
========
`figpager <https://pypi.org/project/figpager/>`_ provides customizable figure
elements such as text, lines and images and subplot layout control for single
or multi page output.

.. image:: /_static/figpager.png

blume
=====

Expand Down
Loading