Skip to content

Commit 9d2a95f

Browse files
committed
Merge branch 'v1.5.x' into v2.x
2 parents fbcdd1b + 501888a commit 9d2a95f

File tree

6 files changed

+16
-14
lines changed

6 files changed

+16
-14
lines changed

Diff for: MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ recursive-include lib *
1919
recursive-include extern *
2020
include versioneer.py
2121
include lib/matplotlib/_version.py
22+
include tests.py

Diff for: doc/_templates/citing.html

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ <h1>Citing matplotlib</h1>
2828

2929
<h2>DOIs</h2>
3030
<dl>
31+
<dt>v1.5.1</dt><dd><a href="http://dx.doi.org/10.5281/zenodo.44579"><img src="https://zenodo.org/badge/doi/10.5281/zenodo.44579.svg" alt="10.5281/zenodo.44579"></a></dd>
3132
<dt>v1.5.0</dt><dd><a href="http://dx.doi.org/10.5281/zenodo.32914"><img src="https://zenodo.org/badge/doi/10.5281/zenodo.32914.svg" alt="10.5281/zenodo.32914"></a></dd>
3233
<dt>v1.4.3</dt><dd><a href="http://dx.doi.org/10.5281/zenodo.15423"><img src="https://zenodo.org/badge/doi/10.5281/zenodo.15423.svg" alt="10.5281/zenodo.15423"></a></dd>
3334
<dt>v1.4.2</dt><dd><a href="http://dx.doi.org/10.5281/zenodo.12400"><img src="https://zenodo.org/badge/doi/10.5281/zenodo.12400.png" alt="10.5281/zenodo.12400"></a></dd>

Diff for: doc/devel/MEP/MEP13.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
=================================
2-
MEP12: Use properties for Artists
2+
MEP13: Use properties for Artists
33
=================================
44

55
.. contents::

Diff for: doc/devel/MEP/MEP14.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
====================
2-
MEP13: Text handling
2+
MEP14: Text handling
33
====================
44

55
.. contents::

Diff for: examples/pylab_examples/legend_demo5.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def create_artists(self, legend, orig_handle,
4141
lw = orig_handle.get_linewidths()[i]
4242
except IndexError:
4343
lw = orig_handle.get_linewidths()[0]
44-
if dashes[0] != None:
44+
if dashes[0] is not None:
4545
legline.set_dashes(dashes[1])
4646
legline.set_color(color)
4747
legline.set_transform(trans)

Diff for: lib/matplotlib/tests/baseline_images/test_image/rasterize_10dpi.svg

+11-11
Loading

0 commit comments

Comments
 (0)