forked from matplotlib/matplotlib.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub_stats.html
More file actions
1415 lines (1387 loc) · 184 KB
/
github_stats.html
File metadata and controls
1415 lines (1387 loc) · 184 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>GitHub Stats — Matplotlib 3.1.0 documentation</title>
<link rel="stylesheet" href="../_static/mpl.css"
type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css"
type="text/css" />
<link rel="stylesheet" href="../_static/graphviz.css" type="text/css" />
<link rel="stylesheet" href="../_static/gallery.css" type="text/css" />
<link rel="stylesheet" href="../_static/copybutton.css" type="text/css" />
<script type="text/javascript" id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script>
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
<script type="text/javascript" src="../_static/language_data.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.0/clipboard.min.js"></script>
<script type="text/javascript" src="../_static/copybutton.js"></script>
<script async="async" type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-AMS-MML_HTMLorMML"></script>
<link rel="search" type="application/opensearchdescription+xml"
title="Search within Matplotlib 3.1.0 documentation"
href="../_static/opensearch.xml"/>
<link rel="shortcut icon" href="../_static/favicon.ico"/>
<link rel="index" title="Index" href="../genindex.html"
/>
<link rel="search" title="Search" href="../search.html"
/>
<link rel="top" title="Matplotlib 3.1.0 documentation" href="../index.html" />
<link rel="up" title="User's Guide" href="index.html" />
<link rel="next" title="Previous What's New" href="whats_new_old.html" />
<link rel="prev" title="History" href="history.html" />
<link rel="canonical" href="https://matplotlib.org/3.1.0/users/github_stats.html" />
</head>
<body>
<div id="plotting-contest" style="padding: 6px; background-color: teal; color: white;">
<p style="margin: 0;">The 2019 SciPy John Hunter Excellence in Plotting Contest is accepting submissions!
<br />
<a href="https://docs.google.com/forms/d/e/1FAIpQLSe-_AnKvYSzeQWfNDRoXgW0vl7_8q6jj3QbLIac8eUcb9lSAA/viewform?usp=sf_link" style="font-weight: bold;">Apply by June 8th</a></p>
</div>
<div style="background-color: white; text-align: left; padding: 10px 10px 15px 15px; position: relative;">
<a href="../index.html">
<div style="float: left; position: absolute; width: 496px; bottom: 0; padding-bottom: 24px"><span style="float: right; color: #789; background: white">Version 3.1.0</span></div>
<img src="../_static/logo2.png" height="125px" border="0" alt="matplotlib"/></a>
<!-- The "Fork me on github" ribbon -->
<div id="forkongithub"><a href="https://github.com/matplotlib/matplotlib">Fork me on GitHub</a></div>
</div>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="whats_new_old.html" title="Previous What's New"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="history.html" title="History"
accesskey="P">previous</a> |</li>
<li><a href="../index.html">home</a>| </li>
<li><a href="../gallery/index.html">examples</a>| </li>
<li><a href="../tutorials/index.html">tutorials</a>| </li>
<li><a href="../api/index.html">API</a>| </li>
<li><a href="../contents.html">contents</a> »</li>
<li><a href="index.html" accesskey="U">User's Guide</a> »</li>
</ul>
</div>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<div id="searchbox" style="display: none" role="search">
<h3>Quick search</h3>
<div class="searchformwrapper">
<form class="search" action="../search.html" method="get">
<input type="text" name="q" />
<input type="submit" value="Go" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script><div class="relations">
<h3>Related Topics</h3>
<ul>
<li><a href="../contents.html">Documentation overview</a><ul>
<li><a href="index.html">User's Guide</a><ul>
<li>Previous: <a href="history.html" title="previous chapter">History</a></li>
<li>Next: <a href="whats_new_old.html" title="next chapter">Previous What's New</a></li>
</ul></li>
</ul></li>
</ul>
</div>
<div id="sidebar-pagesource" role="note" aria-label="source link"
style="margin-top: 1.5em; padding-top: 0.1em; border-top: 1px solid #86989b">
<a href="../_sources/users/github_stats.rst.txt"
style="color: #c0c0c0" rel="nofollow">Show Page Source</a>
</div>
</div>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<div class="section" id="github-stats">
<span id="id1"></span><h1>GitHub Stats<a class="headerlink" href="#github-stats" title="Permalink to this headline">¶</a></h1>
<p>GitHub stats for 2018/09/18 - 2019/05/13 (tag: v3.0.0)</p>
<p>These lists are automatically generated, and may be incomplete or contain duplicates.</p>
<p>We closed 161 issues and merged 918 pull requests.
The full list can be seen <a class="reference external" href="https://github.com/matplotlib/matplotlib/milestone/v3.1.0">on GitHub</a></p>
<p>The following 151 authors contributed 3426 commits.</p>
<ul class="simple">
<li><<a class="reference external" href="mailto:qi.cui%40mail.utoronto.ca">qi<span>.</span>cui<span>@</span>mail<span>.</span>utoronto<span>.</span>ca</a>></li>
<li>Abhinuv Nitin Pitale</li>
<li>Adam J. Stewart</li>
<li>Alistair Muldal</li>
<li>Alon Hershenhorn</li>
<li>Andras Deak</li>
<li>Ankur Dedania</li>
<li>Antony Lee</li>
<li>Anubhav Shrimal</li>
<li>Ao Liu (frankliuao)</li>
<li>Ayappan P</li>
<li>azure-pipelines[bot]</li>
<li>Bas van Schaik</li>
<li>Ben Root</li>
<li>Benjamin Bengfort</li>
<li>Benjamin Congdon</li>
<li>Bharat123rox</li>
<li>Brigitta Sipocz</li>
<li>btang02</li>
<li>Carsten</li>
<li>Carsten Schelp</li>
<li>Cho Yin Yong</li>
<li>Chris Zimmerman</li>
<li>Christer Jensen</li>
<li>Christoph Gohlke</li>
<li>Christoph Reiter</li>
<li>Christopher Bradshaw</li>
<li>Colin</li>
<li>Colin Carroll</li>
<li>dabana</li>
<li>Dana-Farber</li>
<li>Daniele Nicolodi</li>
<li>DanielMatu</li>
<li>David Haberthür</li>
<li>David Stansby</li>
<li>Dietmar Schwertberger</li>
<li>Dmitry Mottl</li>
<li><ol class="first upperalpha" start="5">
<li><ol class="first upperalpha" start="7">
<li>Patrick Bos</li>
</ol>
</li>
</ol>
</li>
<li>Elan Ernest</li>
<li>Elliott Sales de Andrade</li>
<li>Eric Firing</li>
<li>Eric Larson</li>
<li>Eric Wieser</li>
<li>esvhd</li>
<li>fredrik-1</li>
<li>fuzzythecat</li>
<li>Galen Lynch</li>
<li>Gazing</li>
<li>gwin-zegal</li>
<li>hannah</li>
<li>Harshal Prakash Patankar</li>
<li>hershen</li>
<li>Ildar Akhmetgaleev</li>
<li>ImportanceOfBeingErnest</li>
<li>Isa Hassen</li>
<li>Jae-Joon Lee</li>
<li>James A. Bednar</li>
<li>James Adams</li>
<li>Jan S. (Milania1)</li>
<li>Jarrod Millman</li>
<li>Jessica B. Hamrick</li>
<li>Jody Klymak</li>
<li>Joel T. Frederico</li>
<li>Joel Wanner</li>
<li>Johannes H. Jensen</li>
<li>Joseph Albert</li>
<li>Joshua Klein</li>
<li>Jouni K. Seppänen</li>
<li>Jun Tan</li>
<li>Kai Muehlbauer</li>
<li>Katrin Leinweber</li>
<li>Kayla Ngan</li>
<li>Kevin Rose</li>
<li>Kjell Le</li>
<li>KonradAdamczyk</li>
<li>ksunden</li>
<li>Kyle Sunden</li>
<li>Leon Loopik</li>
<li>Levi Kilcher</li>
<li>LevN0</li>
<li>luftek</li>
<li>Maik Riechert</li>
<li>Marcel Martin</li>
<li>Mark Harfouche</li>
<li>Marko Baštovanović</li>
<li>Matthias Bussonnier</li>
<li>Matthias Geier</li>
<li>Matti Picus</li>
<li>MeeseeksMachine</li>
<li>Michael Droettboom</li>
<li>Michael Jancsy</li>
<li>Mike Frysinger</li>
<li>Molly Rossow</li>
<li>MortenSHUTE</li>
<li>mromanie</li>
<li>nathan78906</li>
<li>Nelle Varoquaux</li>
<li>Nick Papior</li>
<li>Nicolas Courtemanche</li>
<li>Nikita Kniazev</li>
<li>njwhite</li>
<li>Oliver Natt</li>
<li>Paul</li>
<li>Paul Hobson</li>
<li>Paul Ivanov</li>
<li>Paul J. Koprowski</li>
<li>pharshalp</li>
<li>Phil Elson</li>
<li>Pierre Thibault</li>
<li>QiCuiHub</li>
<li>Rasmus Diederichsen</li>
<li>Ratin_Kumar</li>
<li>Rob Harrigan</li>
<li>Roman Yurchak</li>
<li>Ryan May</li>
<li>Ryan Morshead</li>
<li>Saket Choudhary</li>
<li>saksmito</li>
<li>SBCV</li>
<li>Sebastian Bullinger</li>
<li>Sebastian Hegler</li>
<li>Seunghoon Park</li>
<li>simon-kraeusel</li>
<li>smheidrich</li>
<li>Stephane Raynaud</li>
<li>Stephen-Chilcote</li>
<li>sxntxn</li>
<li>Taehoon Lee</li>
<li>Takafumi Arakaki</li>
<li>Taras</li>
<li>Taras Kuzyo</li>
<li>teresy</li>
<li>Thein Oo</li>
<li>Thomas A Caswell</li>
<li>Thomas Hisch</li>
<li>Thomas Robitaille</li>
<li>thoo</li>
<li>Tim Hoffmann</li>
<li>Tobia De Koninck</li>
<li>Tobias Megies</li>
<li>Tyler Makaro</li>
<li><ol class="first upperalpha" start="22">
<li>Armando Solé</li>
</ol>
</li>
<li>Viraj Mohile</li>
<li>Will Handley</li>
<li>woclass</li>
<li>Yasaman-Mah</li>
<li>yeo</li>
<li>Yuxin Wu</li>
<li>Yuya</li>
<li>Zhili (Jerry) Pan</li>
<li>zhoubecky</li>
</ul>
<p>GitHub issues and pull requests:</p>
<p>Pull Requests (918):</p>
<ul class="simple">
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14209/">PR #14209</a>: Backport PR #14197 on branch v3.1.x (Minor cleanup of acorr/xcoor docs)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14210/">PR #14210</a>: Make intro tutorial less jargony.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14197/">PR #14197</a>: Minor cleanup of acorr/xcoor docs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14203/">PR #14203</a>: Backport PR #14202 on branch v3.1.x (Fix docstring of Line2D.set_data.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14202/">PR #14202</a>: Fix docstring of Line2D.set_data.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14196/">PR #14196</a>: Backport PR #14188 on branch v3.1.x (Clarify scope of MouseEvent attributes)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14188/">PR #14188</a>: Clarify scope of MouseEvent attributes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14194/">PR #14194</a>: Backport PR #14167 on branch v3.1.x (Fix backend_pgf header.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14193/">PR #14193</a>: Backport PR #14153 on branch v3.1.x (Update qt_compat.py test for already imported binding.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14167/">PR #14167</a>: Fix backend_pgf header.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14153/">PR #14153</a>: Update qt_compat.py test for already imported binding.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14190/">PR #14190</a>: Backport PR #14176 on branch v3.1.x (Merge doc/api/api_overview and doc/api/index.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14192/">PR #14192</a>: Unbreak testsuite for pytest 4.5.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14189/">PR #14189</a>: Backport PR #14186 on branch v3.1.x (Update FancyBboxPatch docs to numpydoc style)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14176/">PR #14176</a>: Merge doc/api/api_overview and doc/api/index.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14186/">PR #14186</a>: Update FancyBboxPatch docs to numpydoc style</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14187/">PR #14187</a>: Backport PR #13169 on branch v3.1.x (Add example code for current logo)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14165/">PR #14165</a>: Backport PR #14156 on branch v3.1.x (Fix glyph loading in textpath.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14156/">PR #14156</a>: Fix glyph loading in textpath.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14162/">PR #14162</a>: Backport PR #14150 on branch v3.1.x (Fix deprecation of withdash for figtext().)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14150/">PR #14150</a>: Fix deprecation of withdash for figtext().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14136/">PR #14136</a>: Backport PR #14109 on branch v3.1.x</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14109/">PR #14109</a>: Some simple pyplot doc improvements</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14129/">PR #14129</a>: Backport PR #14117 on branch v3.1.x (Simplify ribbon_box example.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14128/">PR #14128</a>: Backport PR #14057 on branch v3.1.x (Improve Gradient bar example)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14127/">PR #14127</a>: Backport PR #14125 on branch v3.1.x (Remove extra keyword from pytest.skip call.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14117/">PR #14117</a>: Simplify ribbon_box example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14057/">PR #14057</a>: Improve Gradient bar example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14125/">PR #14125</a>: Remove extra keyword from pytest.skip call.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14123/">PR #14123</a>: Backport PR #14119 on branch v3.1.x (Add ridge_map to third party packages documentation)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14119/">PR #14119</a>: Add ridge_map to third party packages documentation</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14103/">PR #14103</a>: Backport PR #14088 on branch v3.1.x (Cleanup major_minor_demo.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14102/">PR #14102</a>: Backport PR #14100 on branch v3.1.x (Improve docstring of axes_zoom_effect example.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14099/">PR #14099</a>: Backport PR #14090 on branch v3.1.x (Pep8ify some variable names in examples.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14100/">PR #14100</a>: Improve docstring of axes_zoom_effect example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14088/">PR #14088</a>: Cleanup major_minor_demo.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14090/">PR #14090</a>: Pep8ify some variable names in examples.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14097/">PR #14097</a>: Backport PR #14079 on branch v3.1.x (Consistently use axs.flat instead of axs.flatten())</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14095/">PR #14095</a>: Backport PR #14087 on branch v3.1.x (Cleanup date example.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14094/">PR #14094</a>: Backport PR #14029 on branch v3.1.x (Fix doc building with numpydoc 0.9)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14093/">PR #14093</a>: Backport PR #14052 on branch v3.1.x (Check axes identity in image.contains.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14092/">PR #14092</a>: Backport PR #14056 on branch v3.1.x (FIX: do not try to manage the visibility of un-drawn ticks)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14091/">PR #14091</a>: Backport PR #14078 on branch v3.1.x (Minor fix in multiple subplots example)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14079/">PR #14079</a>: Consistently use axs.flat instead of axs.flatten()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14087/">PR #14087</a>: Cleanup date example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14029/">PR #14029</a>: Fix doc building with numpydoc 0.9</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14052/">PR #14052</a>: Check axes identity in image.contains.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14056/">PR #14056</a>: FIX: do not try to manage the visibility of un-drawn ticks</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14078/">PR #14078</a>: Minor fix in multiple subplots example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14080/">PR #14080</a>: Backport PR #14069 on branch v3.1.x (Don't try to use the colorbar formatter to format RGBA data.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14069/">PR #14069</a>: Don't try to use the colorbar formatter to format RGBA data.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14074/">PR #14074</a>: Backport PR #14019 on branch v3.1.x (Update docstring of locator_params())</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14019/">PR #14019</a>: Update docstring of locator_params()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14066/">PR #14066</a>: Backport PR #14053 on branch v3.1.x (Improve fill() example)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14065/">PR #14065</a>: Backport PR #14059 on branch v3.1.x (Improve Scatter hist example)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14067/">PR #14067</a>: Backport PR #14062 on branch v3.1.x (Improve advanced quiver example)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14062/">PR #14062</a>: Improve advanced quiver example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14053/">PR #14053</a>: Improve fill() example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14059/">PR #14059</a>: Improve Scatter hist example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14064/">PR #14064</a>: Backport PR #14043 on branch v3.1.x (Ensure errorbars are always drawn on top of bars in ax.bar)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14043/">PR #14043</a>: Ensure errorbars are always drawn on top of bars in ax.bar</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14061/">PR #14061</a>: Backport PR #14051 on branch v3.1.x (Add Yellowbrick to third party packages)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14051/">PR #14051</a>: Add Yellowbrick to third party packages</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14050/">PR #14050</a>: Backport PR #14048 on branch v3.1.x (Fix Animation.save)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14049/">PR #14049</a>: Backport PR #14047 on branch v3.1.x (Remove references to "Draws" in matplotlib.patches)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14048/">PR #14048</a>: Fix Animation.save</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14047/">PR #14047</a>: Remove references to "Draws" in matplotlib.patches</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14037/">PR #14037</a>: Backport PR #14033 on branch v3.1.x (Reword add_subplot docstring.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14036/">PR #14036</a>: Backport PR #14001 on branch v3.1.x ([BUG] DOC: Remove broken references to vischeck)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14033/">PR #14033</a>: Reword add_subplot docstring.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14032/">PR #14032</a>: Backport PR #14030 on branch v3.1.x (Update colorcet link)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14030/">PR #14030</a>: Update colorcet link</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14027/">PR #14027</a>: Backport PR #14026 on branch v3.1.x (Fix bug in plot_directive that caused links to plots in different formats to be missing)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14026/">PR #14026</a>: Fix bug in plot_directive that caused links to plots in different formats to be missing</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14012/">PR #14012</a>: Backport PR #14008 on branch v3.1.x (Don't install tests by default.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14017/">PR #14017</a>: Backport PR #14015 on branch v3.1.x (Fix docstring of pyplot.clim())</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14015/">PR #14015</a>: Fix docstring of pyplot.clim()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14008/">PR #14008</a>: Don't install tests by default.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14006/">PR #14006</a>: Backport PR #13998 on branch v3.1.x (Fix patch contains logic for patches that don't have any codes)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14005/">PR #14005</a>: Backport PR #14004 on branch v3.1.x (DOC: pin numpydoc to less than 0.9)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13998/">PR #13998</a>: Fix patch contains logic for patches that don't have any codes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13999/">PR #13999</a>: Backport PR #13992 on branch v3.1.x (FIX: undeprecate MaxNLocator default_params)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13997/">PR #13997</a>: Backport PR #13995 on branch v3.1.x (DOC: explain zorder for gridlines in grid docstring)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13992/">PR #13992</a>: FIX: undeprecate MaxNLocator default_params</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13995/">PR #13995</a>: DOC: explain zorder for gridlines in grid docstring</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13990/">PR #13990</a>: Backport PR #13989 on branch v3.1.x (FIX: update not replace hist_kwargs when density is passed)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13989/">PR #13989</a>: FIX: update not replace hist_kwargs when density is passed</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13975/">PR #13975</a>: Backport PR #13966 on branch v3.1.x (Fix colorbar setting without artist)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13976/">PR #13976</a>: Backport PR #13973 on branch v3.1.x (BUG: Ensure docstrings are not accessed with -OO)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13856/">PR #13856</a>: Whats new page for 3.1</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13966/">PR #13966</a>: Fix colorbar setting without artist</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13973/">PR #13973</a>: BUG: Ensure docstrings are not accessed with -OO</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13969/">PR #13969</a>: Backport PR #13950 on branch v3.1.x (confidence_ellipse_markup)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13950/">PR #13950</a>: confidence_ellipse_markup</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13965/">PR #13965</a>: Backport PR #13962 on branch v3.1.x (Fix typo in code example in docstring.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13964/">PR #13964</a>: Backport PR #13870 on branch v3.1.x (3.1.0 API changes page)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13962/">PR #13962</a>: Fix typo in code example in docstring.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13870/">PR #13870</a>: 3.1.0 API changes page</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13961/">PR #13961</a>: Backport PR #13914 on branch v3.1.x (Improve Rainbow text example)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13960/">PR #13960</a>: Backport PR #13958 on branch v3.1.x (Remove transparent fancy legend example)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13914/">PR #13914</a>: Improve Rainbow text example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13958/">PR #13958</a>: Remove transparent fancy legend example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13956/">PR #13956</a>: Backport PR #13908 on branch v3.1.x (Enh control tick deconflict2)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13955/">PR #13955</a>: Backport PR #13941 on branch v3.1.x (Add project_urls to setup)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13908/">PR #13908</a>: Enh control tick deconflict2</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13954/">PR #13954</a>: Backport PR #13949 on branch v3.1.x (DOC: Add documentation to Text.set_fontfamily)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13941/">PR #13941</a>: Add project_urls to setup</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13949/">PR #13949</a>: DOC: Add documentation to Text.set_fontfamily</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13951/">PR #13951</a>: Backport PR #13939 on branch v3.1.x (Bunch of docstring cleanups.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13939/">PR #13939</a>: Bunch of docstring cleanups.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13947/">PR #13947</a>: Backport PR #13897 on branch v3.1.x (numpydocification.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13897/">PR #13897</a>: numpydocification.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13946/">PR #13946</a>: Backport PR #13924 on branch v3.1.x (Followup to deprecation of usetex parameter in get_text_path.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13924/">PR #13924</a>: Followup to deprecation of usetex parameter in get_text_path.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13916/">PR #13916</a>: Backport PR #13850 on branch v3.1.x (Cleanup STIX Font Demo)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13915/">PR #13915</a>: Backport PR #13835 on branch v3.1.x (Improve Conectionstyle Demo)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13850/">PR #13850</a>: Cleanup STIX Font Demo</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13835/">PR #13835</a>: Improve Conectionstyle Demo</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13846/">PR #13846</a>: Backport PR #13836 on branch v3.1.x (MNT: account for cpython deprecations)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13898/">PR #13898</a>: Backport PR #13896 on branch v3.1.x (Fix cbook.boxplot_stats docstring)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13896/">PR #13896</a>: Fix cbook.boxplot_stats docstring</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13893/">PR #13893</a>: Backport PR #13890 on branch v3.1.x (rst seealso -> numpydoc "See Also".)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13890/">PR #13890</a>: rst seealso -> numpydoc "See Also".</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13888/">PR #13888</a>: Backport PR #13862 on branch v3.1.x (Move 3.x API changes to prev_api_changes)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13862/">PR #13862</a>: Move 3.x API changes to prev_api_changes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13882/">PR #13882</a>: Backport PR #13867 on branch v3.1.x (Rename "docs" to "contents" in navigation bar)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13867/">PR #13867</a>: Rename "docs" to "contents" in navigation bar</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13881/">PR #13881</a>: Backport PR #13874 on branch v3.1.x (Remove redundant call to Formatter.set_locs() before .format_ticks().)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13874/">PR #13874</a>: Remove redundant call to Formatter.set_locs() before .format_ticks().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13871/">PR #13871</a>: Backport PR #13868 on branch v3.1.x (Correctly handle fallout of defining PY_SSIZE_T_CLEAN on Windows.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13869/">PR #13869</a>: Backport PR #13861 on branch v3.1.x (Fix remaining links in docs)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13868/">PR #13868</a>: Correctly handle fallout of defining PY_SSIZE_T_CLEAN on Windows.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13861/">PR #13861</a>: Fix remaining links in docs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13849/">PR #13849</a>: Backport PR #13845 on branch v3.1.x (Fix some broken documentation links)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13845/">PR #13845</a>: Fix some broken documentation links</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13836/">PR #13836</a>: MNT: account for cpython deprecations</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13841/">PR #13841</a>: Backport PR #12928 on branch v3.1.x (textpath encoding)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13842/">PR #13842</a>: Backport PR #13827 on branch v3.1.x (Better MovieWriter init error message)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13838/">PR #13838</a>: Backport PR #13570 on branch v3.1.x (Add new example for plotting a confidence_ellipse)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13827/">PR #13827</a>: Better MovieWriter init error message</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13839/">PR #13839</a>: Backport PR #13815 on branch v3.1.x (Numpydocify FontManager.findfont())</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13837/">PR #13837</a>: Backport PR #8638 on branch v3.1.x (FIX: if bins input to hist is str, treat like no bins)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12928/">PR #12928</a>: textpath encoding</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13815/">PR #13815</a>: Numpydocify FontManager.findfont()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13570/">PR #13570</a>: Add new example for plotting a confidence_ellipse</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/8638/">PR #8638</a>: FIX: if bins input to hist is str, treat like no bins</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13831/">PR #13831</a>: Backport PR #13780 on branch v3.1.x (numpydoc ListedColormap parameters)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13780/">PR #13780</a>: numpydoc ListedColormap parameters</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13830/">PR #13830</a>: Backport PR #13829 on branch v3.1.x (numpydoc IndexFormatter)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13829/">PR #13829</a>: numpydoc IndexFormatter</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13828/">PR #13828</a>: Backport PR #13821 on branch v3.1.x (Remove mathcircled from mathtext docs following its deprecation.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13821/">PR #13821</a>: Remove mathcircled from mathtext docs following its deprecation.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13822/">PR #13822</a>: Backport PR #13817 on branch v3.1.x (Remove borders from barcode example)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13820/">PR #13820</a>: Backport PR #13816 on branch v3.1.x (Correct windows env variable format)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13816/">PR #13816</a>: Correct windows env variable format</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13817/">PR #13817</a>: Remove borders from barcode example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13814/">PR #13814</a>: Merge pull request #13805 from timhoffm/pin-sphinx-1.x</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13813/">PR #13813</a>: Backport PR #13764 on branch v3.1.x (Deprecate mathcircled.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13764/">PR #13764</a>: Deprecate mathcircled.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13805/">PR #13805</a>: Pin Sphinx to 1.x</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13807/">PR #13807</a>: Backport PR #13800 on branch v3.1.x (Doc typos.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13800/">PR #13800</a>: Doc typos.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13806/">PR #13806</a>: Backport PR #13771 on branch v3.1.x (patches.Arc docstring update #13759)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13804/">PR #13804</a>: Backport PR #13766 on branch v3.1.x (Search for fonts in XDG directory as well.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13771/">PR #13771</a>: patches.Arc docstring update #13759</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13766/">PR #13766</a>: Search for fonts in XDG directory as well.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13794/">PR #13794</a>: Backport PR #13695 on branch v3.1.x (numpydocify transform_angles.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13793/">PR #13793</a>: Backport PR #13762 on branch v3.1.x (Cleanup marker_reference example.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13792/">PR #13792</a>: Backport PR #13789 on branch v3.1.x (BUG: Fix function signature mismatch for set_clim)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13791/">PR #13791</a>: Backport PR #13787 on branch v3.1.x (Fix failure to import matplotlib.animation on Windows.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13695/">PR #13695</a>: numpydocify transform_angles.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13762/">PR #13762</a>: Cleanup marker_reference example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13789/">PR #13789</a>: BUG: Fix function signature mismatch for set_clim</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13787/">PR #13787</a>: Fix failure to import matplotlib.animation on Windows.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13781/">PR #13781</a>: Backport PR #13777 on branch v3.1.x (Use class-based directive for mathmpl sphinxext.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13790/">PR #13790</a>: Backport PR #13564 on branch v3.1.x (Add an option to log progress while saving animations)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13564/">PR #13564</a>: Add an option to log progress while saving animations</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13777/">PR #13777</a>: Use class-based directive for mathmpl sphinxext.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13765/">PR #13765</a>: Backport PR #13761 on branch v3.1.x (Deprecate verbose-related rcParams.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13761/">PR #13761</a>: Deprecate verbose-related rcParams.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13760/">PR #13760</a>: Backport PR #13719 on branch v3.1.x (Doc: Update timeline example)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13704/">PR #13704</a>: Backport PR #13021 on branch v3.1.x (Undesirable behaviour of MixedModeRenderer)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13758/">PR #13758</a>: Backport PR #13674 on branch v3.1.x (Preserve whitespace in svg output.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13719/">PR #13719</a>: Doc: Update timeline example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13674/">PR #13674</a>: Preserve whitespace in svg output.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13755/">PR #13755</a>: Backport PR #13741 on branch v3.1.x (FIX: make title move above ticklabels)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13754/">PR #13754</a>: Backport PR #13712 on branch v3.1.x (Deprecate NavigationToolbar2QT.adj_window (unused and always None).)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13741/">PR #13741</a>: FIX: make title move above ticklabels</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13712/">PR #13712</a>: Deprecate NavigationToolbar2QT.adj_window (unused and always None).</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13752/">PR #13752</a>: Backport PR #13732 on branch v3.1.x (Fix doc markup.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13753/">PR #13753</a>: Backport PR #13751 on branch v3.1.x (DOC/FIX: try merging comments)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13751/">PR #13751</a>: DOC/FIX: try merging comments</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13732/">PR #13732</a>: Fix doc markup.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13750/">PR #13750</a>: Backport PR #13743 on branch v3.1.x (Fix doc warning)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13743/">PR #13743</a>: Fix doc warning</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13747/">PR #13747</a>: Backport PR #13745 on branch v3.1.x (Fix stem(use_line_collection))</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13748/">PR #13748</a>: Backport PR #13716 on branch v3.1.x (Kill attributes that are never used/updated.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13716/">PR #13716</a>: Kill attributes that are never used/updated.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13745/">PR #13745</a>: Fix stem(use_line_collection)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13710/">PR #13710</a>: TST: only test agg_filter extensions with baseline images</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13709/">PR #13709</a>: Backport PR #8690 on branch v3.1.x</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13707/">PR #13707</a>: Backport PR #12760 on branch v3.1.x (Deduplicate implementation of per-backend Tools.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13706/">PR #13706</a>: Backport PR #13689 on branch v3.1.x (BUG: fix scaling of quiverkey when quiver scale_units='xy')</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13705/">PR #13705</a>: Backport PR #12419 on branch v3.1.x (Add DivergingNorm (again, again, again))</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13703/">PR #13703</a>: Backport PR #12170 on branch v3.1.x (Deprecate considering *args, **kwargs in Timer.remove_callback.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12760/">PR #12760</a>: Deduplicate implementation of per-backend Tools.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13689/">PR #13689</a>: BUG: fix scaling of quiverkey when quiver scale_units='xy'</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12419/">PR #12419</a>: Add DivergingNorm (again, again, again)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/8690/">PR #8690</a>: Adds support for rgba and rgb images to pcolorfast</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13021/">PR #13021</a>: Undesirable behaviour of MixedModeRenderer</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12170/">PR #12170</a>: Deprecate considering *args, **kwargs in Timer.remove_callback.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13700/">PR #13700</a>: Backport PR #13588 on branch v3.1.x (FIX: fallback to viewlims if no data)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13694/">PR #13694</a>: Backport PR #13677 on branch v3.1.x (Log all failures to extract font properties.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13588/">PR #13588</a>: FIX: fallback to viewlims if no data</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13692/">PR #13692</a>: Backport PR #13677 on branch v3.0.x (Log all failures to extract font properties.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13677/">PR #13677</a>: Log all failures to extract font properties.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13691/">PR #13691</a>: Backport PR #13687 on branch v3.1.x (Update stem example)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13687/">PR #13687</a>: Update stem example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13688/">PR #13688</a>: Backport PR #13684 on branch v3.1.x (Use format_data_short to format image cursor data.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13684/">PR #13684</a>: Use format_data_short to format image cursor data.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13686/">PR #13686</a>: Backport PR #13363 on branch v3.1.x (Inline iter_ticks into _update_ticks, and use that in mplot3d.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13363/">PR #13363</a>: Inline iter_ticks into _update_ticks, and use that in mplot3d.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13681/">PR #13681</a>: Backport PR #13678 on branch v3.1.x (Fix font deduplication logic in createFontList.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13678/">PR #13678</a>: Fix font deduplication logic in createFontList.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13669/">PR #13669</a>: Backport PR #13667 on branch v3.1.x (Fix incorrect signature in axis() doc.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13667/">PR #13667</a>: Fix incorrect signature in axis() doc.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13664/">PR #13664</a>: Backport PR #12637 on branch v3.1.x (Tell IPython the correct GUI event loop to use for all backends.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13665/">PR #13665</a>: Backport PR #13601 on branch v3.1.x (Add a make-parameter-keyword-only-with-deprecation decorator.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13601/">PR #13601</a>: Add a make-parameter-keyword-only-with-deprecation decorator.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12637/">PR #12637</a>: Tell IPython the correct GUI event loop to use for all backends.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13662/">PR #13662</a>: Backport PR #13064 on branch v3.1.x (Don't explicitly add default include paths to Extensions)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13064/">PR #13064</a>: Don't explicitly add default include paths to Extensions</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13658/">PR #13658</a>: Backport PR #13652 on branch v3.1.x (Fix empty FancyArrow crash)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13652/">PR #13652</a>: Fix empty FancyArrow crash</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13655/">PR #13655</a>: Backport PR #11692 on branch v3.1.x (Deprecate frameon kwarg and rcParam to savefig.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13654/">PR #13654</a>: Backport PR #13614 on branch v3.1.x (Fix polar get window extent)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11692/">PR #11692</a>: Deprecate frameon kwarg and rcParam to savefig.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13614/">PR #13614</a>: Fix polar get window extent</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13646/">PR #13646</a>: Backport PR #13645 on branch v3.1.x (widgets.py fix examples connect -> mpl_connect)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13645/">PR #13645</a>: widgets.py fix examples connect -> mpl_connect</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13644/">PR #13644</a>: Backport PR #13612 on branch v3.1.x (Improve Demo Text Rotation Mode)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13612/">PR #13612</a>: Improve Demo Text Rotation Mode</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13636/">PR #13636</a>: Backport PR #13621 on branch v3.1.x (Remove <code class="docutils literal notranslate"><span class="pre">asfileobj=False</span></code> from a bunch of examples loading sample_data.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13635/">PR #13635</a>: Backport PR #13632 on branch v3.1.x (Clarify tick collision API change doc.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13634/">PR #13634</a>: Backport PR #13631 on branch v3.1.x (Swicth deprecation of Tick.label to pending.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13621/">PR #13621</a>: Remove <code class="docutils literal notranslate"><span class="pre">asfileobj=False</span></code> from a bunch of examples loading sample_data.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13632/">PR #13632</a>: Clarify tick collision API change doc.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13631/">PR #13631</a>: Swicth deprecation of Tick.label to pending.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13628/">PR #13628</a>: Backport PR #13603 on branch v3.1.x</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13603/">PR #13603</a>: FIX: continue to bail tight layout if rect supplied</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13627/">PR #13627</a>: Backport PR #13622 on branch v3.1.x (Change title of named colors example)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13626/">PR #13626</a>: Backport PR #13549 on branch v3.1.x (Simplify some annotation() calls in examples.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13624/">PR #13624</a>: Backport PR #13610 on branch v3.1.x (Update centered ticklabels example)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13625/">PR #13625</a>: Backport PR #13611 on branch v3.1.x (Fix text position in Fancytextbox demo)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13622/">PR #13622</a>: Change title of named colors example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13610/">PR #13610</a>: Update centered ticklabels example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13611/">PR #13611</a>: Fix text position in Fancytextbox demo</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13607/">PR #13607</a>: Backport PR #13605 on branch v3.1.x (Warn on attempts at semi-transparent outputs in ps backend.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13608/">PR #13608</a>: Backport PR #13602 on branch v3.1.x (Deprecate cbook.is_hashable.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13602/">PR #13602</a>: Deprecate cbook.is_hashable.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13605/">PR #13605</a>: Warn on attempts at semi-transparent outputs in ps backend.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13599/">PR #13599</a>: Backport PR #13590 on branch v3.1.x (Doc event loop requirements for Figure.show)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13590/">PR #13590</a>: Doc event loop requirements for Figure.show</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13597/">PR #13597</a>: Backport PR #12359 on branch v3.1.x (ENH: Add boolean support for axis())</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13594/">PR #13594</a>: Backport PR #13592 on branch v3.1.x (DOC: Make canonical URLs point to versioned path.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13592/">PR #13592</a>: DOC: Make canonical URLs point to versioned path.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12359/">PR #12359</a>: ENH: Add boolean support for axis()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13587/">PR #13587</a>: Backport PR #13573 on branch v3.1.x (Fix mplot3d transparency)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13573/">PR #13573</a>: Fix mplot3d transparency</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13585/">PR #13585</a>: Backport PR #13578 on branch v3.1.x (Revert invalid change in Centered Ticklabels example)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13584/">PR #13584</a>: Backport PR #13582 on branch v3.1.x (Cleanup two font-related examples.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13578/">PR #13578</a>: Revert invalid change in Centered Ticklabels example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13582/">PR #13582</a>: Cleanup two font-related examples.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13579/">PR #13579</a>: Backport PR #13477 on branch v3.1.x (FIX: make EngFormatter respect axes.unicode_minus rcParam)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13577/">PR #13577</a>: Backport PR #12832 on branch v3.1.x (Deprecate redundant log-scale transform classes.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13477/">PR #13477</a>: FIX: make EngFormatter respect axes.unicode_minus rcParam</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12832/">PR #12832</a>: Deprecate redundant log-scale transform classes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13574/">PR #13574</a>: Backport PR #12856 on branch v3.1.x (added property usemathtext to EngFormatter)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12856/">PR #12856</a>: added property usemathtext to EngFormatter</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13572/">PR #13572</a>: Backport PR #12899 on branch v3.1.x (Small cleanups.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13571/">PR #13571</a>: Backport PR #11553 on branch v3.1.x (Improved Code for Segments Intersect)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12899/">PR #12899</a>: Small cleanups.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11553/">PR #11553</a>: Improved Code for Segments Intersect</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13568/">PR #13568</a>: Backport PR #13563 on branch v3.1.x (FIX: inverted colorbar ticks)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13563/">PR #13563</a>: FIX: inverted colorbar ticks</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13530/">PR #13530</a>: BUG: keep the ticks when the colorbar axis is inverted</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13565/">PR #13565</a>: Backport PR #13550 on branch v3.1.x (Strip out Py2-compat in setupext.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13550/">PR #13550</a>: Strip out Py2-compat in setupext.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13562/">PR #13562</a>: Backport PR #13560 on branch v3.1.x (Improve GridSpec doc)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13560/">PR #13560</a>: Improve GridSpec doc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13558/">PR #13558</a>: Backport PR #13546 on branch v3.1.x ( Modified docstring of the set_ylabel and set_xlabel)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13559/">PR #13559</a>: Backport PR #12062 on branch v3.1.x (Separate alpha and rbg interpolation then recombine to fix issue11316)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13557/">PR #13557</a>: Backport PR #13548 on branch v3.1.x (Deprecate TextWithDash.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12062/">PR #12062</a>: Separate alpha and rbg interpolation then recombine to fix issue11316</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13546/">PR #13546</a>: Modified docstring of the set_ylabel and set_xlabel</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13548/">PR #13548</a>: Deprecate TextWithDash.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13549/">PR #13549</a>: Simplify some annotation() calls in examples.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13552/">PR #13552</a>: Backport PR #11241 on branch v3.1.x (Deprecate the MATPLOTLIBDATA environment variable.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11241/">PR #11241</a>: Deprecate the MATPLOTLIBDATA environment variable.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13547/">PR #13547</a>: Backport PR #9314 on branch v3.1.x (Simplify units.Registry.get_converter.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13545/">PR #13545</a>: Backport PR #13541 on branch v3.1.x (DOC: Remove mention of 'complex' mode in specgram docstring)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9314/">PR #9314</a>: Simplify units.Registry.get_converter.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13541/">PR #13541</a>: DOC: Remove mention of 'complex' mode in specgram docstring</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13539/">PR #13539</a>: Backport PR #12950 on branch v3.1.x (Inline or simplify FooFormatter.pprint_val.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13538/">PR #13538</a>: Backport PR #12748 on branch v3.1.x (Use the builtin GTK3 FileChooser rather than our custom subclass.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13537/">PR #13537</a>: Backport PR #12781 on branch v3.1.x (Lazy import of private modules)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12950/">PR #12950</a>: Inline or simplify FooFormatter.pprint_val.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12748/">PR #12748</a>: Use the builtin GTK3 FileChooser rather than our custom subclass.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12781/">PR #12781</a>: Lazy import of private modules</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11218/">PR #11218</a>: fix pkg-config handling to make cross-compiling work</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13531/">PR #13531</a>: Backport PR #11964 on branch v3.1.x (Simplify extension setup.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11964/">PR #11964</a>: Simplify extension setup.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13529/">PR #13529</a>: Backport PR #13525 on branch v3.1.x (Move some links in rst out of running text.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13528/">PR #13528</a>: Backport PR #13526 on branch v3.1.x (DOC: fix Subplot calls)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13525/">PR #13525</a>: Move some links in rst out of running text.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13526/">PR #13526</a>: DOC: fix Subplot calls</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13523/">PR #13523</a>: Backport PR #13521 on branch v3.1.x (Small cleanup to headings of 3d examples.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13521/">PR #13521</a>: Small cleanup to headings of 3d examples.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13519/">PR #13519</a>: Backport PR #12716 on branch v3.1.x (FIX: return the actual ax.get_window_extent)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13518/">PR #13518</a>: Backport PR #12839 on branch v3.1.x (BUG: Prevent Tick params calls from overwriting visibility without being told to)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12716/">PR #12716</a>: FIX: return the actual ax.get_window_extent</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12839/">PR #12839</a>: BUG: Prevent Tick params calls from overwriting visibility without being told to</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13517/">PR #13517</a>: Fix heading hierarchy in annotation tutorial.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13516/">PR #13516</a>: Backport PR #13514 on branch v3.1.x (Add missing show() at end of example.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13514/">PR #13514</a>: Add missing show() at end of example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13512/">PR #13512</a>: Backport PR #13511 on branch v3.1.x (Add missing plt.show() at end of example.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13511/">PR #13511</a>: Add missing plt.show() at end of example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13508/">PR #13508</a>: Backport PR #13413 on branch v3.1.x (Simplify decade up- and down-rounding, and symmetrize expansion of degenerate log scales.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13509/">PR #13509</a>: Backport PR #13492 on branch v3.1.x (Doc more release updates)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13492/">PR #13492</a>: Doc more release updates</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13413/">PR #13413</a>: Simplify decade up- and down-rounding, and symmetrize expansion of degenerate log scales.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13507/">PR #13507</a>: Backport PR #13488 on branch v3.1.x (Animation: interactive zoom/pan with blitting does not work)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13488/">PR #13488</a>: Animation: interactive zoom/pan with blitting does not work</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13505/">PR #13505</a>: Backport PR #13459 on branch v3.1.x (Document histogramming pre-binned data.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13503/">PR #13503</a>: Backport PR #10776 on branch v3.1.x (fix FancyArrowPatch picker fails depending on arrowstyle)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13504/">PR #13504</a>: Backport PR #13123 on branch v3.1.x (Add shading to Axes3D.voxels, and enable it by default)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13502/">PR #13502</a>: Backport PR #13180 on branch v3.1.x (Various TextPath cleanups.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13459/">PR #13459</a>: Document histogramming pre-binned data.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13501/">PR #13501</a>: Backport PR #13209 on branch v3.1.x (Deprecate support for (n, 1)-shaped error arrays in errorbar().)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13500/">PR #13500</a>: Backport PR #12763 on branch v3.1.x (Remove deprecated rcParams.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13123/">PR #13123</a>: Add shading to Axes3D.voxels, and enable it by default</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13499/">PR #13499</a>: Backport PR #13303 on branch v3.1.x (Unify checking of executable info.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10776/">PR #10776</a>: fix FancyArrowPatch picker fails depending on arrowstyle</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13180/">PR #13180</a>: Various TextPath cleanups.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13498/">PR #13498</a>: Backport PR #13314 on branch v3.1.x (Move major/minor tick overstrike logic to Axis.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13209/">PR #13209</a>: Deprecate support for (n, 1)-shaped error arrays in errorbar().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12763/">PR #12763</a>: Remove deprecated rcParams.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13303/">PR #13303</a>: Unify checking of executable info.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13497/">PR #13497</a>: Backport PR #13057 on branch v3.1.x (Simplify callable(self._contains) checks)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13314/">PR #13314</a>: Move major/minor tick overstrike logic to Axis.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13057/">PR #13057</a>: Simplify callable(self._contains) checks</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13496/">PR #13496</a>: Backport PR #13465 on branch v3.1.x (FIX: polar set_rlim allow bottom-only call)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13465/">PR #13465</a>: FIX: polar set_rlim allow bottom-only call</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13495/">PR #13495</a>: Backport PR #12232 on branch v3.1.x (Add helper function to check that an argument is in a list of strings.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12232/">PR #12232</a>: Add helper function to check that an argument is in a list of strings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11708/">PR #11708</a>: Revert "Skip wx interactive tests on OSX."</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13062/">PR #13062</a>: Update FAQ re: batch/webserver use.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12904/">PR #12904</a>: Support forward/backward mouse buttons</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12150/">PR #12150</a>: Deprecate stackrel.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13449/">PR #13449</a>: Let boxplot() defer rcParams application to bxp()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13425/">PR #13425</a>: API: un-deprecate keyword only args to set_xlim, set_ylim</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13447/">PR #13447</a>: Update axes_grid docs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13473/">PR #13473</a>: Deprecate backend_wx.IDLE_DELAY.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13476/">PR #13476</a>: Add font to pyplot.xkcd()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13475/">PR #13475</a>: Cleanup titles of embedding examples.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13468/">PR #13468</a>: Suppress chaining of cache lookup failure in color conversion.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13467/">PR #13467</a>: Add "c" shorthand for "color" for the Text class.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13398/">PR #13398</a>: FIX: let pandas IndexInt64 work for boxplot</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13375/">PR #13375</a>: Improve Axes selection in Qt figure options.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13421/">PR #13421</a>: DOC: update release guide</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13275/">PR #13275</a>: Simple logging interface.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13427/">PR #13427</a>: Simplify check for tight-bbox finiteness.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13444/">PR #13444</a>: Allow constructing boxplots over multiple calls.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13385/">PR #13385</a>: Remove/rework uses of np.where where possible.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13441/">PR #13441</a>: Make AFM parser both more compliant and less strict.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13384/">PR #13384</a>: Replace np.compress by boolean indexing.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13422/">PR #13422</a>: Clarify IndexError for out-of-bounds indexing of gridspec.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13443/">PR #13443</a>: Remove some outdated comments from rcsetup.py.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13357/">PR #13357</a>: Inherit some docstrings in backend code.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12380/">PR #12380</a>: Stem speedup2</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13368/">PR #13368</a>: FIX: Fix shape of hist output when input is multidimensional empty list</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/5590/">PR #5590</a>: [mpl_toolkits] Fix picking for things drawn on parasite axes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13323/">PR #13323</a>: Move the call to Formatter.set_locs into Formatter.format_ticks.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13424/">PR #13424</a>: Deprecate Quiver.color in favor of Quiver.get_facecolor().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13434/">PR #13434</a>: More smoketesting of pcolorfast.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13395/">PR #13395</a>: Cleanup demo_curvelinear_grid.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13411/">PR #13411</a>: Deemphasize numeric locations for legend() in docs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13419/">PR #13419</a>: FIX: secondary_axis resize</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13020/">PR #13020</a>: Deprecate proj3d.mod.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13030/">PR #13030</a>: Deprecate internal functions exposed in the public API of mplot3d</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13408/">PR #13408</a>: test_figure style fixes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11127/">PR #11127</a>: Legend for Scatter</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11855/">PR #11855</a>: Adding the possible to add full command line in animation</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13409/">PR #13409</a>: Add nonsingular to the locator base class, and use it in set_*lim too.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11859/">PR #11859</a>: ENH: add secondary x/y axis</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13235/">PR #13235</a>: Vectorize mplot3d.art3d.zalpha.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10411/">PR #10411</a>: New "accepts units" decorator</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13403/">PR #13403</a>: FIX: remove idle_event</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13069/">PR #13069</a>: 5 minor divisions when major ticks are 2.5 units apart</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13402/">PR #13402</a>: Fix empty reshape2d</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11683/">PR #11683</a>: Reuse axes_grid1's AxisDict in axisartist, instead of duplicating it.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12141/">PR #12141</a>: Let digits toggle axes nav only if they correspond to an existing axes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9845/">PR #9845</a>: Add inaxes method to FigureCanvas to check whether point is in an axes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13396/">PR #13396</a>: mpl_toolkits style fixes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11497/">PR #11497</a>: Make CI fail if interactive toolkits can't be tested</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11595/">PR #11595</a>: test doc rendering</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13393/">PR #13393</a>: Deprecate Spine.is_frame_like.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13391/">PR #13391</a>: Remove colour specification from some examples</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13386/">PR #13386</a>: Replace use of np.<ufunc> by operators (</&/|).</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13389/">PR #13389</a>: Inherit more docstrings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13387/">PR #13387</a>: Fix regression in docstring.dedent_interpd.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13383/">PR #13383</a>: Replace np.take by normal indexing.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13381/">PR #13381</a>: Avoid unneeded copies from flatten().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13354/">PR #13354</a>: Properly deprecate non-1D inputs to pie().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13379/">PR #13379</a>: Remove citation entry from FAQ.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13380/">PR #13380</a>: Minor simplifications to scatter3d.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13173/">PR #13173</a>: Decorator for deleting a parameter with a deprecation period.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/8205/">PR #8205</a>: [MRG+1] plot_date() after axhline() doesn't rescale axes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11027/">PR #11027</a>: Specify custom tick space heuristic in MaxNLocator</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13262/">PR #13262</a>: Shorten setupext and remove uninformative build log entries.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13377/">PR #13377</a>: Add private helper to internally suppress deprecations.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13376/">PR #13376</a>: Undeprecate case-insensitive "long" colornames.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13373/">PR #13373</a>: Deprecate axis3d.Axis.get_tick_positions.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13362/">PR #13362</a>: Kill the unused, private _get_pixel_distance_along_axis.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12772/">PR #12772</a>: Improve plot() docstring.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13359/">PR #13359</a>: DOC: change language a bit</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13351/">PR #13351</a>: Fix: Log Colorbar minorticks_off reverted if ticks set</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13356/">PR #13356</a>: More spelling fixes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13125/">PR #13125</a>: Simplify and tighten the docstring handling API.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13346/">PR #13346</a>: Simplify parsing of tuple in C extension code.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13282/">PR #13282</a>: MAINT install of pinned vers for travis</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13234/">PR #13234</a>: FIX: allow colorbar mappable norm to change and do right thing</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13269/">PR #13269</a>: Rework a bit axes addition.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13330/">PR #13330</a>: Add Axis.get_inverted and Axis.set_inverted.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13117/">PR #13117</a>: Cleanup matplotlib.use</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13335/">PR #13335</a>: Update and factor out Axis.get_tick_positions.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13324/">PR #13324</a>: Cleanup ScalarFormatter; preparatory to moving it to format_ticks.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13322/">PR #13322</a>: Update Axis docs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13342/">PR #13342</a>: Update some (mostly internal) docstrings in image.py.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11848/">PR #11848</a>: Country specific characters in Windows user folder name when locating .tfm-file</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13309/">PR #13309</a>: bezier cleanups.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13334/">PR #13334</a>: Inherit some docstrings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13332/">PR #13332</a>: Rewrite convert_to_string using std::string</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13336/">PR #13336</a>: Update imshow docs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13331/">PR #13331</a>: Try forcing font cache rebuild in flaky ttc test.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12105/">PR #12105</a>: API: make MaxNLocator trim out-of-view ticks before returning</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13329/">PR #13329</a>: Pin flake8<3.7 to mitigate issues with flake8-per-file-ignores</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13319/">PR #13319</a>: Deprecate dates.{str,bytes}pdate2num.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13320/">PR #13320</a>: Kill some private, unused functions in dates.py.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12909/">PR #12909</a>: Let Formatters format all ticks at once.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13313/">PR #13313</a>: Better explanation of ticks</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13310/">PR #13310</a>: Replace *kw by *args.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13285/">PR #13285</a>: Defer checking of tex install to when it is actually used.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13128/">PR #13128</a>: Parameter-renaming decorator</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13307/">PR #13307</a>: Spelling fixes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13304/">PR #13304</a>: TST: deregister pandas</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13300/">PR #13300</a>: Trivial bezier cleanups.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11664/">PR #11664</a>: FIX: clean up unit conversion unpacking of data, particularly for dates and pandas series</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9639/">PR #9639</a>: Unify querying of executable versions</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13224/">PR #13224</a>: numpydocify (some of) mpl_toolkits.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13301/">PR #13301</a>: Replace np.empty + ndarray.fill by np.full.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13229/">PR #13229</a>: Prevent exception when running animation on Agg backend.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13263/">PR #13263</a>: In imsave()'s Pillow-handled case, don't create a temporary figure.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13294/">PR #13294</a>: Simplify some calculations in polar.py.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13295/">PR #13295</a>: Kill some commented-out code.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13298/">PR #13298</a>: Add note about thread safety to FAQ.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13299/">PR #13299</a>: Don't emit a non-GUI warning when building the docs on Linux.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13297/">PR #13297</a>: Minor cleanup to OSX FAQ.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13283/">PR #13283</a>: Fix doc style in add_gridspec()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13129/">PR #13129</a>: ENH: add a user-friendly verbose interface</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13279/">PR #13279</a>: Remove a useless catch_warnings() from example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13268/">PR #13268</a>: Select RadioButtons by closest in position.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13271/">PR #13271</a>: Fix animation speed in double_pendulum example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13265/">PR #13265</a>: Allow turning off minor ticks on Colorbar with LogNorm</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13260/">PR #13260</a>: Improve docs for format determination in savefig()/imsave().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12379/">PR #12379</a>: MAINT Use np.full when possible</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12905/">PR #12905</a>: Add optional parameter use_default_template to rc_file()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13218/">PR #13218</a>: Fix checking of 'labels' argument to Sankey.add.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13256/">PR #13256</a>: DOC: reject MEP25 due to being stalled</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13255/">PR #13255</a>: TST pandas support bar</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13251/">PR #13251</a>: DEBUG-log font-matching results, and print failing logs on CI.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12818/">PR #12818</a>: Enh arbitrary scale</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13187/">PR #13187</a>: FIX: bar mixed units, allow ValueError as well</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13232/">PR #13232</a>: Fix incorrect kwarg being passed to TextPath.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13250/">PR #13250</a>: Replace safezip() by more informative error message in errorbar().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13239/">PR #13239</a>: Improve sankey logging.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13247/">PR #13247</a>: Simplify and optimize png writing in backend_pdf.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12455/">PR #12455</a>: Warn when "best" loc of legend is used with lots of data</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13233/">PR #13233</a>: Remove warning in image_annotated_heatmap, and numpydocify it.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13248/">PR #13248</a>: Remove an unused local variable in backend_gtk3.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13249/">PR #13249</a>: Deprecate an unused "internal" API.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13243/">PR #13243</a>: Rewrite subplots_demo</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13240/">PR #13240</a>: FIX: spelling error of local variable in category</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13026/">PR #13026</a>: MNT: add a logging call if a categorical string array is all convertible</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13225/">PR #13225</a>: Fix a warning in the doc build.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13227/">PR #13227</a>: Make color lowercase in example to avoid warning.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13217/">PR #13217</a>: numpydocify Sankey.add.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10209/">PR #10209</a>: Various backend cleanups.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13113/">PR #13113</a>: Globally cache single TexManager instances.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13213/">PR #13213</a>: Broadcast 'orientations' arg to Sankey.add.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13219/">PR #13219</a>: Fix some backend_bases docstrings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13214/">PR #13214</a>: Reformat Sankey exceptions.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13211/">PR #13211</a>: Deprecate case-insensitive colors.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13210/">PR #13210</a>: Suppress a warning in the test suite.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13189/">PR #13189</a>: Remove cairo-based backends from backend fallback.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13207/">PR #13207</a>: Allow saving PNGs through Pillow instead of the builtin _png module.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13124/">PR #13124</a>: Simplify parsing of errorbar input.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13162/">PR #13162</a>: DOC: better argcheck bar</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/8531/">PR #8531</a>: Added compression option to save TIFF images</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13094/">PR #13094</a>: Allow passing arguments to PIL.Image.save().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13202/">PR #13202</a>: Avoid private API in some examples.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13197/">PR #13197</a>: Cleanup the text of two mpl_toolkits examples.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13198/">PR #13198</a>: Cleanup SkewT example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11914/">PR #11914</a>: Remove the system_monitor example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13196/">PR #13196</a>: Deemphasize comment about extremely old Matplotlib versions in example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13190/">PR #13190</a>: Show returncode when subprocess test fails</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13163/">PR #13163</a>: Add explanatory comment to annotation box example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13104/">PR #13104</a>: Remove some more 1-tuples.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13105/">PR #13105</a>: Make GridSpec.update docstring match behavior.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13127/">PR #13127</a>: Deprecate add_subplot(<no positional args>) silently doing nothing.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13166/">PR #13166</a>: Simplify Text.get_usetex.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13188/">PR #13188</a>: Remove an outdated doc point regarding backend selection.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13107/">PR #13107</a>: Cleanup BboxBase docstrings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13108/">PR #13108</a>: Capitalize some docstrings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13115/">PR #13115</a>: Check for sphinx_copybutton when building the docs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13151/">PR #13151</a>: Update RadioButtons docs numpydoc style</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13178/">PR #13178</a>: Remove :func: markup from mlab docstrings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/7461/">PR #7461</a>: [WIP] add matrix checking function for quiver input</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13089/">PR #13089</a>: Ensure that arguments to quiver() are not matrices.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13179/">PR #13179</a>: Avoid calling a deprecated API in axis_artist.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13170/">PR #13170</a>: Don't try to find TeX-only fonts when layouting TeX text.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12957/">PR #12957</a>: Search also for user fonts on Windows (#12954)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12951/">PR #12951</a>: Make Text._get_layout simpler to follow.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11385/">PR #11385</a>: Add a get_zaxis method for 3d axes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13172/">PR #13172</a>: Hyperlink DOIs to preferred resolver</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13171/">PR #13171</a>: Document how to make colorbars "without" a ScalarMappable.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12903/">PR #12903</a>: FIX: (broken)bar(h) math before units</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13167/">PR #13167</a>: Typos on subplot comments and example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13005/">PR #13005</a>: Improve error messages for unit conversion</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13147/">PR #13147</a>: Extend joinstyle example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13165/">PR #13165</a>: Change doc string for Axes.arrow()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13155/">PR #13155</a>: Let ffmpeg report errors.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13149/">PR #13149</a>: Update errorbar limits example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13074/">PR #13074</a>: Move _windowing extension into _tkagg.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13146/">PR #13146</a>: Remove an outdated comment in backend_wx.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13126/">PR #13126</a>: FIX: minor log ticks overwrite</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13148/">PR #13148</a>: Update example Step Demo</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13138/">PR #13138</a>: API: Use class-based directive in sphinxext</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11894/">PR #11894</a>: add <code class="docutils literal notranslate"><span class="pre">cache_frame_data</span></code> kwarg into <code class="docutils literal notranslate"><span class="pre">FuncAnimation</span></code>. fixes #8528.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13136/">PR #13136</a>: Small cleanups.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13140/">PR #13140</a>: Remove an "cannot show figure in agg" warning in test suite.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13134/">PR #13134</a>: Simplify color conversion backcompat shim.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13141/">PR #13141</a>: Unpin pytest (pytest-cov's latest release is compatible with it).</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13133/">PR #13133</a>: Simplify the polys3d example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12158/">PR #12158</a>: MNT: simplify valid tick logic</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9867/">PR #9867</a>: Factor out common code between pdf and ps backends.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10111/">PR #10111</a>: Add set_data_3d and get_data_3d to Line3d</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12245/">PR #12245</a>: Remove (some) features deprecated in mpl2.2</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13119/">PR #13119</a>: Deprecate TextToPath.glyph_to_path.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13122/">PR #13122</a>: Pin pytest<4.1 to unbreak CI tests</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13100/">PR #13100</a>: Restore the font cache on Travis.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12792/">PR #12792</a>: BUG: Ensure that distinct polygon collections are shaded identically</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13070/">PR #13070</a>: cairo backend: default to pycairo</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13114/">PR #13114</a>: BUG: calculate colorbar boundaries correctly from values</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13111/">PR #13111</a>: Delete an unused private method.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10841/">PR #10841</a>: ENH: new date formatter</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13093/">PR #13093</a>: Remove unused fontconfig conf file.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13063/">PR #13063</a>: Use default colour cycle in more examples</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13103/">PR #13103</a>: Remove tight_bbox_test example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13097/">PR #13097</a>: Replace 1-tuples by scalars where possible.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13027/">PR #13027</a>: Qt5 reset signals after non-interactive plotting</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9787/">PR #9787</a>: Support (first font of) TTC files.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11780/">PR #11780</a>: ENH: Allow arbitrary coordinates for ConnectionPatch</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12943/">PR #12943</a>: Update the font_table example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13091/">PR #13091</a>: Improve MouseEvent str().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13095/">PR #13095</a>: Remove a duplicate attribute setting.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13090/">PR #13090</a>: Cleanup unused non-public imports.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13060/">PR #13060</a>: Move doc-requirements from root folder</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13078/">PR #13078</a>: Convert streamplot to numpydoc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13088/">PR #13088</a>: Don't use deprecated np.random.random_integers.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13073/">PR #13073</a>: Drop pytest version check in setupext.py.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12933/">PR #12933</a>: Deprecate backend_pgf.LatexManagerFactory.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12969/">PR #12969</a>: Clarify the implementation of _process_plot_var_args.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12472/">PR #12472</a>: Make FontManager.defaultFont a property, to avoid hardcoding the prefix.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11806/">PR #11806</a>: Allow to not draw the labels on pie chart</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11983/">PR #11983</a>: Simplify version checks for freetype and libpng.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13050/">PR #13050</a>: FIX: always eraseRect in Qt widget</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13065/">PR #13065</a>: FIX: print out the correct ip address when starting webagg</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13061/">PR #13061</a>: Make examples that load msft.csv robust against locale changes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13042/">PR #13042</a>: cairo: remove the append_path() fast path</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13058/">PR #13058</a>: pathlibify/cleanup triage_tests.py.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12995/">PR #12995</a>: Don't split creation of deprecation message and choice of warning class.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12998/">PR #12998</a>: Init MaxNLocator params only once</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11691/">PR #11691</a>: Make Figure.frameon a thin wrapper for the patch visibility.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11735/">PR #11735</a>: Change {FigureCanvasAgg,RendererAgg}.buffer_rgba to return a memoryview.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12831/">PR #12831</a>: Reuse scale from sharing axis when calling cla().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12962/">PR #12962</a>: Deprecate setting the same property under two different aliases.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12973/">PR #12973</a>: Fix item check for pandas Series</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13049/">PR #13049</a>: Add boxplot.flierprops.markeredgewidth rcParam</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13048/">PR #13048</a>: Fix section names for numpydoc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10928/">PR #10928</a>: Simplify (quite a bit...) _preprocess_data</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13039/">PR #13039</a>: Speed up Path.iter_segments()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12992/">PR #12992</a>: Adding rcParams[‘scatter.edgecolors’] defaulting to ‘face’</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13014/">PR #13014</a>: Drop pgi support for the GTK3 backend</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12215/">PR #12215</a>: Cleanup initialization in text()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13029/">PR #13029</a>: Fix vertical alignment of text</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12968/">PR #12968</a>: Simpler and stricter process_plot_format.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12989/">PR #12989</a>: Avoid spamming tests with warnings re: deprecation of pprint_val.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13032/">PR #13032</a>: fix typo in docstring in <code class="docutils literal notranslate"><span class="pre">axis_artist.py</span></code></li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13025/">PR #13025</a>: MNT: add one more alias for tacaswell to mailmap</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13010/">PR #13010</a>: Fix a format error in documenting_mpl.rst</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12997/">PR #12997</a>: Add sphinx-copybutton to docs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12422/">PR #12422</a>: Scatter color: moving #10809 forward</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12999/">PR #12999</a>: Format MaxNLocator with numpydoc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12991/">PR #12991</a>: Canonicalize weights extracted for AFM fonts.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12955/">PR #12955</a>: Cleanup cursor_demo.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12984/">PR #12984</a>: Cleanup GTK examples.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12986/">PR #12986</a>: Minor cleanup to double_pendulum example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12959/">PR #12959</a>: Update the documentation of Cursor</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12945/">PR #12945</a>: Correctly get weight & style hints from certain newer Microsoft fonts</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12976/">PR #12976</a>: ENH: replace deprecated numpy header</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12975/">PR #12975</a>: Fail-fast when trying to run tests with too-old pytest.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12970/">PR #12970</a>: Minor simplifications.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12974/">PR #12974</a>: Remove some checks for Py<3.6 in the test suite.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12779/">PR #12779</a>: Include scatter plots in Qt figure options editor.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12459/">PR #12459</a>: Improve formatting of imshow() cursor data when a colorbar exists.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12927/">PR #12927</a>: MAINT: Correctly handle empty lists in zip unpacking in mplot3d.art3d</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12919/">PR #12919</a>: Suppress deprecation warning when testing drawstyle conflict</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12956/">PR #12956</a>: Misc. cleanups.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12924/">PR #12924</a>: Deprecate public use of Formatter.pprint_val.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12947/">PR #12947</a>: Support ~ as nonbreaking space in mathtext.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12944/">PR #12944</a>: Fix the title of testing_api</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12136/">PR #12136</a>: MAINT: Unify calculation of normal vectors from polygons</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12880/">PR #12880</a>: More table documentation</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12940/">PR #12940</a>: Avoid pyplot in showcase examples.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12935/">PR #12935</a>: os.PathLike exists on all supported Pythons now.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12936/">PR #12936</a>: Minor updates following bump to Py3.6+.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12932/">PR #12932</a>: Simplify argument checking in Table.__getitem__.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12930/">PR #12930</a>: Shorten an argument check.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12538/">PR #12538</a>: MNT: drop 3.5 testing for 3.1 branch</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12868/">PR #12868</a>: Simplify use of Path._fast_from_codes_and_verts.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12300/">PR #12300</a>: API: Polar: allow flipped y/rlims....</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12861/">PR #12861</a>: Don't use deprecated wx.NewId().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12908/">PR #12908</a>: Allow all valid hist.bins strings to be set in the rcparams</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12902/">PR #12902</a>: Kill dead code in textpath.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12885/">PR #12885</a>: Improve margins in formlayout</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12877/">PR #12877</a>: fooImage -> foo_image in testing/compare.py</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12845/">PR #12845</a>: Deprecate silent dropping of unknown arguments to TextPath().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12852/">PR #12852</a>: Cleanup collections docs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12888/">PR #12888</a>: Properly enable forward/backward buttons on GTK3</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12865/">PR #12865</a>: Avoid 1-tick or 0-tick log-scaled axis.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12844/">PR #12844</a>: Remove unused, private _process_text_args.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12881/">PR #12881</a>: Fix string comparison</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12863/">PR #12863</a>: FIX: translate timedeltas in _to_ordinalf</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12640/">PR #12640</a>: Introduce MouseButton enum for MouseEvent.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12897/">PR #12897</a>: Reword a bit the contour docs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12898/">PR #12898</a>: Validate rcParams["image.origin"].</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12882/">PR #12882</a>: Write error messages to logger instead of stderr</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12889/">PR #12889</a>: Deprecate public access to the vendored formlayout module.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12891/">PR #12891</a>: Add Azure Pipelines build badge</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12883/">PR #12883</a>: MAINT Use list comprehension</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12886/">PR #12886</a>: Properly enable forward/backward buttons on Qt</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12858/">PR #12858</a>: Bump oldest supported numpy to 1.11.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12876/">PR #12876</a>: Fix a typo</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12739/">PR #12739</a>: make Axes._parse_scatter_color_args static</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12846/">PR #12846</a>: Deprecate Path.has_nonfinite.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12829/">PR #12829</a>: Remove unused variables</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12872/">PR #12872</a>: Inline references to RendererPS in backend_ps.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12800/">PR #12800</a>: documenting dtype of hist counts</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12842/">PR #12842</a>: Fix message in nbagg connection_info()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12855/">PR #12855</a>: Cleanup axes/_base.py.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12826/">PR #12826</a>: Minor code cleanup</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12866/">PR #12866</a>: Simplify stride calculations in loglocator.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12867/">PR #12867</a>: Drop compat code for outdated MSVC.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12218/">PR #12218</a>: Improve table docs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12847/">PR #12847</a>: correctly format ticklabels when EngFormatter is used with usetex = True</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12851/">PR #12851</a>: Keep Collections and Patches property aliases in sync.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12849/">PR #12849</a>: Update docstrings in path.py, and small cleanups.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12805/">PR #12805</a>: Don't insert spurious newlines by joining tex.preamble.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12827/">PR #12827</a>: Remove unused imports</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12560/">PR #12560</a>: Add matplotlib.testing to the documentation</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12821/">PR #12821</a>: MNT: remove debug from update_title_pos</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12764/">PR #12764</a>: Cleanup Renderer/GraphicsContext docs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12759/">PR #12759</a>: Warn on FreeType missing glyphs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12799/">PR #12799</a>: Reword some colorbar docs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12633/">PR #12633</a>: Added support for MacOSX backend for PyPy</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12798/">PR #12798</a>: Replace assignments to array.shape by calls to reshape().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11851/">PR #11851</a>: Simpler check for whether a Framework Python build is being used.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12259/">PR #12259</a>: BUG: Fix face orientations of bar3d</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12565/">PR #12565</a>: Make FontManager.score_weight less lenient.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12674/">PR #12674</a>: Allow "real" LaTeX code for pgf.preamble in matplotlibrc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12770/">PR #12770</a>: Simplify implementation of FontProperties.copy().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12753/">PR #12753</a>: MNT: remove _hold shims to support basemap + cartopy</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12450/">PR #12450</a>: Attach a FigureCanvasBase by default to Figures.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12643/">PR #12643</a>: Allow unit input to FancyArrowPatch</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12767/">PR #12767</a>: Make colorbars constructible with dataless ScalarMappables.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12526/">PR #12526</a>: Rename jquery files</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12552/">PR #12552</a>: Update docs for writing image comparison tests.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12746/">PR #12746</a>: Use skipif, not xfail, for uncomparable image formats.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12747/">PR #12747</a>: Prefer log.warning("%s", ...) to log.warning("%s" % ...).</li>