8000 Release prep v3.8.1 · matplotlib/matplotlib@8c517cd · GitHub
[go: up one dir, main page]

Skip to content

Commit 8c517cd

Browse files
committed
Release prep v3.8.1
1 parent 8c6b3e9 commit 8c517cd

File tree

9 files changed

+1180
-994
lines changed

9 files changed

+1180
-994
lines changed

doc/api/next_api_changes/behavior/27179-KS.rst

Lines changed: 0 additions & 7 deletions
This file was deleted.

doc/api/next_api_changes/deprecations/27088-JK.rst

Lines changed: 0 additions & 5 deletions
This file was deleted.

doc/api/next_api_changes/development/26849-KS.rst

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
API Changes for 3.6.1
2+
=====================
3+
4+
Behaviour
5+
---------
6+
7+
Default behaviour of ``hexbin`` with *C* provided requires at least 1 point
8+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9+
10+
The behaviour changed in 3.8.0 to be inclusive of *mincnt*. However, that resulted in
11+
errors or warnings with some reduction functions, so now the default is to require at
12+
least 1 point to call the reduction function. This effectively restores the default
13+
behaviour to match that of Matplotlib 3.7 and before.
14+
15+
16+
Deprecations
17+
------------
18+
19+
Deprecations removed in ``contour``
20+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
21+
22+
``contour.allsegs``, ``contour.allkinds``, and ``contour.find_nearest_contour`` are no
23+
longer marked for deprecation.
24+
25+
26+
Development
27+
-----------
28+
29+
Minimum version of setuptools bumped to 64
30+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
31+
32+
To comply with requirements of ``setuptools_scm``, the minimum version of ``setuptools``
33+
has been increased from 42 to 64.

doc/users/github_stats.rst

Lines changed: 139 additions & 973 deletions
Large diffs are not rendered by default.

doc/users/prev_whats_new/github_stats_3.8.0.rst

Lines changed: 1003 additions & 0 deletions
Large diffs are not rendered by default.

doc/users/release_notes.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@ Version 3.8
1818
:maxdepth: 1
1919

2020
prev_whats_new/whats_new_3.8.0.rst
21+
../api/prev_api_changes/api_changes_3.8.1.rst
2122
../api/prev_api_changes/api_changes_3.8.0.rst
2223
github_stats.rst
24+
prev_whats_new/github_stats_3.8.0.rst
2325

2426
Version 3.7
2527
^^^^^^^^^^^

galleries/tutorials/images.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,8 @@
156156
# commands together in one cell. plt commands will not change plots from earlier
157157
# cells.
158158
#
159-
# There are many other colormap schemes available. See the `list and
160-
# images of the colormaps
161-
# <../colors/colormaps.html>`_.
159+
# There are many other colormap schemes available. See the :ref:`list and images
160+
# of the colormaps<colormaps>`.
162161
#
163162
# .. _`Color Bars`:
164163
#

galleries/users_explain/quick_start.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
# to provide the ``data`` keyword argument and generate plots passing the
132132
# strings corresponding to the *x* and *y* variables.
133133
#
134-
# .. _structured numpy array: <https://numpy.org/doc/stable/user/basics.rec.html#structured-arrays>`_ # noqa: E501
134+
# .. _structured numpy array: https://numpy.org/doc/stable/user/basics.rec.html#structured-arrays # noqa: E501
135135

136136
np.random.seed(19680801) # seed the random number generator.
137137
data = {'a': np.arange(50),

0 commit comments

Comments
 (0)
0