-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathgithub_stats.html
More file actions
1335 lines (1313 loc) · 170 KB
/
github_stats.html
File metadata and controls
1335 lines (1313 loc) · 170 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="X-UA-Compatible" content="IE=Edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GitHub Stats — Matplotlib 3.4.0 documentation</title>
<link rel="stylesheet" href="../_static/mpl.css?v3.4.0-2-gcb03754703" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<link rel="stylesheet" type="text/css" href="../_static/graphviz.css" />
<link rel="stylesheet" type="text/css" href="../_static/plot_directive.css" />
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css" />
<link rel="stylesheet" type="text/css" href="../_static/gallery.css" />
<link rel="stylesheet" type="text/css" href="../_static/gallery-binder.css" />
<link rel="stylesheet" type="text/css" href="../_static/gallery-dataframe.css" />
<script id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script>
<script src="../_static/jquery.js"></script>
<script src="../_static/underscore.js"></script>
<script src="../_static/doctools.js"></script>
<script src="../_static/language_data.js"></script>
<script src="../_static/clipboard.min.js"></script>
<script src="../_static/copybutton.js"></script>
<script async="async" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/latest.js?config=TeX-AMS-MML_HTMLorMML"></script>
<link rel="search" type="application/opensearchdescription+xml"
title="Search within Matplotlib 3.4.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="next" title="GitHub Stats for Matplotlib 3.3.4" href="prev_whats_new/github_stats_3.3.4.html" />
<link rel="prev" title="History" href="history.html" />
<link rel="top" title="Matplotlib 3.4.0 documentation" href="#" />
<link rel="canonical" href="https://matplotlib.org/stable/users/github_stats.html" />
<link rel="stylesheet" href="../_static/custom.css" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9" />
<script data-domain="matplotlib.org" defer="defer" src="https://views.scientific-python.org/js/script.js"></script>
</head><body>
<div id="unreleased-message"> You are reading an old version of the documentation (v3.4.0). For the latest version see <a href="https://matplotlib.org/stable/users/github_stats.html">https://matplotlib.org/stable/users/github_stats.html</a></div>
<!--
<div id="annc-banner">
</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.4.0</span></div>
<img src="../_static/logo2_compressed.svg" 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>
<nav class="main-nav">
<ul>
<li><a href="installing.html">Installation</a></li>
<li><a href="../contents.html">Documentation</a></li>
<li><a href="../gallery/index.html">Examples</a></li>
<li><a href="../tutorials/index.html">Tutorials</a></li>
<li><a href="../devel/index.html">Contributing</a></li>
<li class="nav-right">
<form class="search" action="../search.html" method="get">
<input type="text" name="q" aria-labelledby="searchlabel" placeholder="Search"/>
</form>
</li>
</ul>
</nav>
<div class="related" role="navigation" aria-label="related navigation">
<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="prev_whats_new/github_stats_3.3.4.html" title="GitHub Stats for Matplotlib 3.3.4"
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="../contents.html">contents</a> »</li>
<li class="nav-item nav-item-1"><a href="index.html" accesskey="U">User's Guide</a> »</li>
<li class="nav-item nav-item-this"><a href="">GitHub Stats</a></li>
</ul>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
<h3><a href="../contents.html">Table of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">GitHub Stats</a><ul>
<li><a class="reference internal" href="#previous-github-stats">Previous GitHub Stats</a></li>
</ul>
</li>
</ul>
<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" role="main">
<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 2020/07/16 - 2021/03/25 (tag: v3.3.0)</p>
<p>These lists are automatically generated, and may be incomplete or contain duplicates.</p>
<p>We closed 204 issues and merged 772 pull requests.
The full list can be seen <a class="reference external" href="https://github.com/matplotlib/matplotlib/milestone/53?closed=1">on GitHub</a></p>
<p>The following 177 authors contributed 3852 commits.</p>
<ul class="simple">
<li>A N U S H</li>
<li>Adam Brown</li>
<li>Aditya Malhotra</li>
<li>aflah02</li>
<li>Aitik Gupta</li>
<li>Alejandro García</li>
<li>Alex Henrie</li>
<li>Alexander Schlüter</li>
<li>Alexis de Almeida Coutinho</li>
<li>Andreas C Mueller</li>
<li>andrzejnovak</li>
<li>Antony Lee</li>
<li>Arthur Milchior</li>
<li>bakes</li>
<li>BAKEZQ</li>
<li>BaoGiang HoangVu</li>
<li>Ben Root</li>
<li>BH4</li>
<li>Bradley Dice</li>
<li>Braxton Lamey</li>
<li>Brian McFee</li>
<li>Bruno Beltran</li>
<li>Bryan Kok</li>
<li>Byron Boulton</li>
<li>Carsten Schelp</li>
<li>ceelo777</li>
<li>Charles</li>
<li>CharlesHe16</li>
<li>Christian Baumann</li>
<li>Contextualist</li>
<li>DangoMelon</li>
<li>Daniel</li>
<li>Daniel Ingram</li>
<li>David Meyer</li>
<li>David Stansby</li>
<li>David Young</li>
<li>deep-jkl</li>
<li>Diego Leal</li>
<li>Dr. Thomas A Caswell</li>
<li>Dylan Cutler</li>
<li>Eben Pendleton</li>
<li>EBenkler</li>
<li>ebenp</li>
<li>ecotner</li>
<li>Elliott Sales de Andrade</li>
<li>Emily FY</li>
<li>Eric Firing</li>
<li>Eric Larson</li>
<li>Eric Prestat</li>
<li>Erik Benkler</li>
<li>Evan Berkowitz</li>
<li>Ewan Sutherland</li>
<li>Federico Ariza</li>
<li>Forrest</li>
<li>Frank Sauerburger</li>
<li>FrankTheCodeMonkey</li>
<li>Greg Lucas</li>
<li>hannah</li>
<li>Harry Knight</li>
<li>Harsh Sharma</li>
<li>Hassan Kibirige</li>
<li>Hugo van Kemenade</li>
<li>Iain-S</li>
<li>Ian Hunt-Isaak</li>
<li>Ian Thomas</li>
<li>ianhi</li>
<li>Ilya V. Schurov</li>
<li>ImportanceOfBeingErnest</li>
<li>Isuru Fernando</li>
<li>ItsRLuo</li>
<li><ol class="first upperalpha" start="10">
<li>Scott Berg</li>
</ol>
</li>
<li>Jae-Joon Lee</li>
<li>Jakub Klus</li>
<li>Janakarajan Natarajan</li>
<li>Jann Paul Mattern</li>
<li>jbhopkins</li>
<li>jeetvora331</li>
<li>Jerome F. Villegas</li>
<li>Jerome Villegas</li>
<li>jfbu</li>
<li>Jirka Hladky</li>
<li>Jody Klymak</li>
<li>Johan von Forstner</li>
<li>johan12345</li>
<li>john imperial</li>
<li>John Losito</li>
<li>John Peloquin</li>
<li>johnthagen</li>
<li>Jouni K. Seppänen</li>
<li>Kate Perkins</li>
<li>kate-perkins</li>
<li>katrielester</li>
<li>kolibril13</li>
<li>kwgchi</li>
<li>Lee Johnston</li>
<li>Leo Singer</li>
<li>linchiwei123</li>
<li>Lucy Liu</li>
<li>luz paz</li>
<li>luzpaz</li>
<li>Léonard Gérard</li>
<li>majorwitty</li>
<li>mansoor96g</li>
<li>Maria Ilie</li>
<li>Maria-Alexandra Ilie</li>
<li>Marianne Corvellec</li>
<li>Mark Harfouche</li>
<li>Martin Spacek</li>
<li>Mary Chris Go</li>
<li>Matthew Petroff</li>
<li>Matthias Bussonnier</li>
<li>Matthias Geier</li>
<li>Max Chen</li>
<li>McToel</li>
<li>Michael Grupp</li>
<li>Michaël Defferrard</li>
<li>Mihai Anton</li>
<li>Mohammad Aflah Khan</li>
<li>Neilzon Viloria</li>
<li>neok-m4700</li>
<li>Nora Moseman</li>
<li>Pamela Wu</li>
<li>pankajchetry1168</li>
<li>Petar Mlinarić</li>
<li>Peter Williams</li>
<li>Phil Nagel</li>
<li>philip-sparks</li>
<li>Philipp Arras</li>
<li>Philipp Nagel</li>
<li>Pratyush Raj</li>
<li>Péter Leéh</li>
<li>rajpratyush</li>
<li>Randall Ung</li>
<li>reshamas</li>
<li>Rezangyal</li>
<li>Richard Sheridan</li>
<li>richardsheridan</li>
<li>Rob McDonald</li>
<li>Rohit Rawat</li>
<li>Ruben Verweij</li>
<li>Ruth Comer</li>
<li>Ryan May</li>
<li>Sam Tygier</li>
<li>shawnchen</li>
<li>shawnchen1996</li>
<li>ShawnChen1996</li>
<li>Sidharth Bansal</li>
<li>Srihitha Maryada</li>
<li>Stephen Sinclair</li>
<li>Struan Murray</li>
<li>Theodor Athanasiadis</li>
<li>Thomas A Caswell</li>
<li>Thorvald Johannessen</li>
<li>Tim Gates</li>
<li>Tim Hoffmann</li>
<li>Tobias Hangleiter</li>
<li>tohc1</li>
<li>Tom Charrett</li>
<li>Tom Neep</li>
<li>Tomas Fiers</li>
<li>ulijh</li>
<li>Ulrich J. Herter</li>
<li>Utkarshp1</li>
<li>Uwe F. Mayer</li>
<li>Valentin Valls</li>
<li>Vincent Cuenca</li>
<li>Vineyard</li>
<li>Vlas Sokolov</li>
<li>Xianxiang Li</li>
<li>xlilos</li>
<li>Ye Chang</li>
<li>Yichao Yu</li>
<li>yozhikoff</li>
<li>Yun Liu</li>
<li>z0rgy</li>
<li>zitorelova</li>
</ul>
<p>GitHub issues and pull requests:</p>
<p>Pull Requests (772):</p>
<ul class="simple">
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19775/">PR #19775</a>: Fix deprecation for imread on URLs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19772/">PR #19772</a>: Backport PR #19535 on branch v3.4.x (Fix example's BasicUnit array conversion.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19771/">PR #19771</a>: Backport PR #19757 on branch v3.4.x (Fixed python -mpip typo)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19770/">PR #19770</a>: Backport PR #19739 on branch v3.4.x (Changed 'python -mpip' to 'python -m pip' for consistency)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19535/">PR #19535</a>: Fix example's BasicUnit array conversion.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19767/">PR #19767</a>: Backport PR #19766 on branch v3.4.x (Set colormap modification removal to 3.6.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19766/">PR #19766</a>: Set colormap modification removal to 3.6.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19764/">PR #19764</a>: Backport PR #19762 on branch v3.4.x (FIX: do not report that webagg supports blitting)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19762/">PR #19762</a>: FIX: do not report that webagg supports blitting</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19689/">PR #19689</a>: Prepare API docs for v3.4.0</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19761/">PR #19761</a>: Backport PR #19746 on branch v3.4.x (Fix resizing in nbAgg.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19746/">PR #19746</a>: Fix resizing in nbAgg.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19757/">PR #19757</a>: Fixed python -mpip typo</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19739/">PR #19739</a>: Changed 'python -mpip' to 'python -m pip' for consistency</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19713/">PR #19713</a>: DOC: Prepare What's new page for 3.4.0.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19742/">PR #19742</a>: Backport PR #19741 on branch v3.4.x (Only override pickradius when picker is not a bool.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19741/">PR #19741</a>: Only override pickradius when picker is not a bool.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19726/">PR #19726</a>: Backport PR #19505 on branch v3.4.x (Move some advanced documentation away from Installation Guide)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19505/">PR #19505</a>: Move some advanced documentation away from Installation Guide</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19712/">PR #19712</a>: Backport PR #19707 on branch v3.4.x (DOC: fix dx in Arrow guide)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19711/">PR #19711</a>: Backport PR #19709 on branch v3.4.x (Fix arrow_guide.py typo)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19709/">PR #19709</a>: Fix arrow_guide.py typo</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19707/">PR #19707</a>: DOC: fix dx in Arrow guide</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19699/">PR #19699</a>: Backport PR #19695 on branch v3.4.x (DOC: Increase size of headings)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19695/">PR #19695</a>: DOC: Increase size of headings</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19697/">PR #19697</a>: Backport PR #19690 on branch v3.4.x (Only warn about existing redirects if content differs.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19690/">PR #19690</a>: Only warn about existing redirects if content differs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19696/">PR #19696</a>: Backport PR #19665 on branch v3.4.x (Changed FormatStrFormatter documentation to include how to get unicode minus)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19680/">PR #19680</a>: Backport PR #19402 on branch v3.4.x (Build aarch64 wheels)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19678/">PR #19678</a>: Backport PR #19671 on branch v3.4.x (Fix crash in early window raise in gtk3.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19671/">PR #19671</a>: Fix crash in early window raise in gtk3.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19665/">PR #19665</a>: Changed FormatStrFormatter documentation to include how to get unicode minus</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19402/">PR #19402</a>: Build aarch64 wheels</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19669/">PR #19669</a>: Backport PR #19661 on branch v3.4.x (Fix CoC link)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19668/">PR #19668</a>: Backport PR #19663 on branch v3.4.x (ENH: add a copy method to colormaps)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19663/">PR #19663</a>: ENH: add a copy method to colormaps</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19661/">PR #19661</a>: Fix CoC link</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19652/">PR #19652</a>: Backport PR #19649 on branch v3.4.x (Use globals() instead of locals() for adding colormaps as names to cm module)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19649/">PR #19649</a>: Use globals() instead of locals() for adding colormaps as names to cm module</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19651/">PR #19651</a>: Backport PR #19618 on branch v3.4.x (FIX: make the cache in font_manager._get_font keyed by thread id)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19650/">PR #19650</a>: Backport PR #19625 on branch v3.4.x (Restore _AxesStack to track a Figure's Axes order.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19647/">PR #19647</a>: Backport PR #19645 on branch v3.4.x (Fix comment in RectangleSelector)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19618/">PR #19618</a>: FIX: make the cache in font_manager._get_font keyed by thread id</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19648/">PR #19648</a>: Backport PR #19643 on branch v3.4.x (Don't turn check_for_pgf into public API.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19625/">PR #19625</a>: Restore _AxesStack to track a Figure's Axes order.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19643/">PR #19643</a>: Don't turn check_for_pgf into public API.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19645/">PR #19645</a>: Fix comment in RectangleSelector</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19644/">PR #19644</a>: Backport PR #19611 on branch v3.4.x (Fix double picks.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19611/">PR #19611</a>: Fix double picks.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19640/">PR #19640</a>: Backport PR #19639 on branch v3.4.x (FIX: do not allow single element list of str in subplot_mosaic)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19639/">PR #19639</a>: FIX: do not allow single element list of str in subplot_mosaic</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19638/">PR #19638</a>: Backport PR #19632 on branch v3.4.x (Fix handling of warn keyword in in Figure.show.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19637/">PR #19637</a>: Backport PR #19582 on branch v3.4.x (Add kerning to single-byte strings in PDFs)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19632/">PR #19632</a>: Fix handling of warn keyword in in Figure.show.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19582/">PR #19582</a>: Add kerning to single-byte strings in PDFs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19629/">PR #19629</a>: Backport PR #19548 on branch v3.4.x (Increase tolerances for other arches.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19630/">PR #19630</a>: Backport PR #19596 on branch v3.4.x (Fix for issue 17769: wx interactive figure close cause crash)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19596/">PR #19596</a>: Fix for issue 17769: wx interactive figure close cause crash</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19548/">PR #19548</a>: Increase tolerances for other arches.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19616/">PR #19616</a>: Backport PR #19577 on branch v3.4.x (Fix "return"->"enter" mapping in key names.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19617/">PR #19617</a>: Backport PR #19571 on branch v3.4.x (Fail early when setting Text color to a non-colorlike.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19615/">PR #19615</a>: Backport PR #19583 on branch v3.4.x (FIX: check for a set during color conversion)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19614/">PR #19614</a>: Backport PR #19597 on branch v3.4.x (Fix IPython import issue)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19613/">PR #19613</a>: Backport PR #19546 on branch v3.4.x (Move unrendered README.wx to thirdpartypackages/index.rst.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19583/">PR #19583</a>: FIX: check for a set during color conversion</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19597/">PR #19597</a>: Fix IPython import issue</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19571/">PR #19571</a>: Fail early when setting Text color to a non-colorlike.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19595/">PR #19595</a>: Backport PR #19589 on branch v3.4.x (Changes linestyle parameter of flierprops)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19577/">PR #19577</a>: Fix "return"->"enter" mapping in key names.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19589/">PR #19589</a>: Changes linestyle parameter of flierprops</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19592/">PR #19592</a>: Backport PR #19587 on branch v3.4.x (DOC: fix plot_date doc)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19587/">PR #19587</a>: DOC: fix plot_date doc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19580/">PR #19580</a>: Backport PR #19456 on branch v3.4.x (Doc implement reredirects)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19579/">PR #19579</a>: Backport PR #19567 on branch v3.4.x (DOC: fix typos)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19456/">PR #19456</a>: Doc implement reredirects</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19567/">PR #19567</a>: DOC: fix typos</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19542/">PR #19542</a>: Backport PR #19532 on branch v3.4.x (Add note on interaction between text wrapping and bbox_inches='tight')</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19549/">PR #19549</a>: Backport PR #19545 on branch v3.4.x (Replace references to pygtk by pygobject in docs.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19546/">PR #19546</a>: Move unrendered README.wx to thirdpartypackages/index.rst.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19545/">PR #19545</a>: Replace references to pygtk by pygobject in docs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19532/">PR #19532</a>: Add note on interaction between text wrapping and bbox_inches='tight'</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19541/">PR #19541</a>: MAINT: fix typo from #19438</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19480/">PR #19480</a>: Fix CallbackRegistry memory leak</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19539/">PR #19539</a>: In scatter, fix single rgb edgecolors handling</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19438/">PR #19438</a>: FIX: restore creating new axes via plt.subplot with different kwargs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18436/">PR #18436</a>: Sync 3D errorbar with 2D</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19472/">PR #19472</a>: Fix default label visibility for top-or-left-labeled shared subplots().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19496/">PR #19496</a>: MNT: Restore auto-adding Axes3D to their parent figure on init</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19533/">PR #19533</a>: Clarify the animated property and reword blitting tutorial a bit</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19146/">PR #19146</a>: Fix #19128: webagg reports incorrect values for non-alphanumeric key events on non-qwerty keyboards</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18068/">PR #18068</a>: Add note on writing binary formats to stdout using savefig()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19507/">PR #19507</a>: FIX: ensure we import when the user cwd does not exist</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19413/">PR #19413</a>: FIX: allow add option for Axes3D(fig)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19498/">PR #19498</a>: Dedupe implementations of {XAxis,YAxis}._get_tick_boxes_siblings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19502/">PR #19502</a>: Prefer projection="polar" over polar=True.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18480/">PR #18480</a>: Clarify color priorities in collections</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19501/">PR #19501</a>: Fix text position with usetex and xcolor</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19460/">PR #19460</a>: Implement angles for bracket arrow styles.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18408/">PR #18408</a>: FIX/API: <code class="docutils literal notranslate"><span class="pre">fig.canvas.draw</span></code> always updates internal state</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19504/">PR #19504</a>: Remove remaining references to Travis CI</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13358/">PR #13358</a>: 3D margins consistency for mplot3d (isometric projection)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19529/">PR #19529</a>: Simplify checking for tex packages.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19516/">PR #19516</a>: Ignore files from annotate coverage reports</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19500/">PR #19500</a>: Remove workaround for numpy<1.16, and update version check.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19518/">PR #19518</a>: Skip setting up a tmpdir in tests that don't need one.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19514/">PR #19514</a>: DOC: add fixed-aspect colorbar examples</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19511/">PR #19511</a>: Clarify axes.autolimit_mode rcParam.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19503/">PR #19503</a>: Fix tight_layout() on "canvasless" figures.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19410/">PR #19410</a>: Set the GTK background color to white.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19497/">PR #19497</a>: Add overset/underset whatsnew entry</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19490/">PR #19490</a>: Fix error message in plt.close().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19461/">PR #19461</a>: Move ToolManager warnings to rcParam validator</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19488/">PR #19488</a>: Prefer <code class="docutils literal notranslate"><span class="pre">tr1-tr2</span></code> to <code class="docutils literal notranslate"><span class="pre">tr1+tr2.inverted()</span></code>.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19485/">PR #19485</a>: fix regression of axline behavior with non-linear scales</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19314/">PR #19314</a>: Fix over/under mathtext symbols</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19468/">PR #19468</a>: Include tex output in pdf LatexError.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19478/">PR #19478</a>: Fix trivial typo in error message.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19449/">PR #19449</a>: Switch array-like (M, N) to (M, N) array-like.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19459/">PR #19459</a>: Merge v3.3.4 into master</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18746/">PR #18746</a>: Make figure parameter optional when constructing canvases.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19455/">PR #19455</a>: Add note that pyplot cannot be used for 3D.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19457/">PR #19457</a>: Use absolute link for discourse</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19440/">PR #19440</a>: Slightly reorganize api docs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19344/">PR #19344</a>: Improvements to Docs for new contributors</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19435/">PR #19435</a>: Replace gtk3 deprecated APIs that have simple replacements.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19452/">PR #19452</a>: Fix the docstring of draw_markers to match the actual behavior.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19448/">PR #19448</a>: Remove unnecessary facecolor cache in Patch3D.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19396/">PR #19396</a>: CI: remove win prerelease azure + add py39</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19426/">PR #19426</a>: Support empty stairs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19399/">PR #19399</a>: Fix empty Poly3DCollections</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19416/">PR #19416</a>: fixes TypeError constructor returned NULL in wayland session</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19439/">PR #19439</a>: Move cheatsheet focus to the cheatsheets away</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19425/">PR #19425</a>: Add units to bar_label padding documentation.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19422/">PR #19422</a>: Style fixes to triintepolate docs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19421/">PR #19421</a>: Switch to documenting generic collections in lowercase.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19411/">PR #19411</a>: DOC: fix incorrect parameter names</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19387/">PR #19387</a>: Fix CSS table header layout</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18683/">PR #18683</a>: Better document font.<generic-family> rcParams entries.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19418/">PR #19418</a>: BF: DOCS: fix slash for windows in conf.py</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18544/">PR #18544</a>: REORG: JoinStyle and CapStyle classes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19415/">PR #19415</a>: Make TaggedValue in basic_units a sequence</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19412/">PR #19412</a>: DOC: correct off by one indentation.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19407/">PR #19407</a>: Improve doc of default labelpad.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19373/">PR #19373</a>: test for align_ylabel bug with constrained_layout</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19347/">PR #19347</a>: os.environ-related cleanups.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19319/">PR #19319</a>: DOC: make canonical version stable</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19395/">PR #19395</a>: wx: Use integers in more places</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17850/">PR #17850</a>: MNT: set the facecolor of nofill markers</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19334/">PR #19334</a>: Fix qt backend on mac big sur</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19394/">PR #19394</a>: Don't allow pyzmq 22.0.0 on AppVeyor.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19367/">PR #19367</a>: Deprecate imread() reading from URLs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19341/">PR #19341</a>: MarkerStyle is considered immutable</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19337/">PR #19337</a>: Move sphinx extension files into mpl-data.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19389/">PR #19389</a>: Temporarily switch intersphinx to latest pytest.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19390/">PR #19390</a>: Doc: Minor formatting</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19383/">PR #19383</a>: Always include sample_data in installs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19378/">PR #19378</a>: Modify indicate_inset default label value</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19357/">PR #19357</a>: Shorten/make more consistent the half-filled marker definitions.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18649/">PR #18649</a>: Deprecate imread() reading from URLs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19370/">PR #19370</a>: Force classic ("auto") date converter in classic style.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19364/">PR #19364</a>: Fix trivial doc typos.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19359/">PR #19359</a>: Replace use of pyplot with OO api in some examples</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19342/">PR #19342</a>: FIX: fix bbox_inches=tight and constrained layout bad interaction</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19350/">PR #19350</a>: Describe how to test regular installations of Matplotlib</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19332/">PR #19332</a>: Prefer concatenate to h/vstack in simple cases.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19340/">PR #19340</a>: Remove the deprecated rcParams["datapath"].</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19326/">PR #19326</a>: Whitespace in Choosing Colormaps tutorial plots</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16417/">PR #16417</a>: Deprecate rcParams["datapath"] in favor of mpl.get_data_path().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19336/">PR #19336</a>: Revert "Deprecate setting Line2D's pickradius via set_picker."</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19153/">PR #19153</a>: MNT: Remove deprecated axes kwargs collision detection (version 2)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19330/">PR #19330</a>: Remove register storage class from Agg files.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19324/">PR #19324</a>: Improve FT2Font docstrings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19328/">PR #19328</a>: Explain annotation behavior when used in conjunction with arrows</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19329/">PR #19329</a>: Fix building against system qhull</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19331/">PR #19331</a>: Skip an ImageMagick test if ffmpeg is unavailable.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19333/">PR #19333</a>: Fix PGF with special character paths.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19322/">PR #19322</a>: Improve docs of _path C-extension.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19317/">PR #19317</a>: Pin to oldest supported PyQt on minver CI instance.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19315/">PR #19315</a>: Update the markers part of matplotlib.pyplot.plot document (fix issue #19274)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18978/">PR #18978</a>: API: Remove deprecated axes kwargs collision detection</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19306/">PR #19306</a>: Fix some packaging issues</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19291/">PR #19291</a>: Cleanup code for format processing</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19316/">PR #19316</a>: Simplify X11 checking for Qt.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19287/">PR #19287</a>: Speedup LinearSegmentedColormap.from_list.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19293/">PR #19293</a>: Fix some docstring interpolations</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19313/">PR #19313</a>: Add missing possible return value to docs of get_verticalalignment()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18916/">PR #18916</a>: Add overset and underset support for mathtext</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18126/">PR #18126</a>: FIX: Allow deepcopy on norms and scales</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19281/">PR #19281</a>: Make all transforms copiable (and thus scales, too).</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19294/">PR #19294</a>: Deprecate project argument to Line3DCollection.draw.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19307/">PR #19307</a>: DOC: remove stray assignment in "multiple legends" example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19303/">PR #19303</a>: Extended the convolution filter for correct dilation</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19261/">PR #19261</a>: Add machinery for png-only, single-font mathtext tests.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16571/">PR #16571</a>: Update Qhull to 2019.1 reentrant version</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16720/">PR #16720</a>: Download qhull at build-or-sdist time.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18653/">PR #18653</a>: ENH: Add func norm</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19272/">PR #19272</a>: Strip irrelevant information from testing docs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19298/">PR #19298</a>: Fix misplaced colon in bug report template.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19297/">PR #19297</a>: Clarify return format of Line2D.get_data.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19277/">PR #19277</a>: Warn on redundant definition of plot properties</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19278/">PR #19278</a>: Cleanup and document _plot_args()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19282/">PR #19282</a>: Remove the unused TransformNode._gid.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19264/">PR #19264</a>: Expand on slider_demo example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19244/">PR #19244</a>: Move cbook._check_isinstance() to _api.check_isinstance()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19273/">PR #19273</a>: Use proper pytest functionality for warnings and exceptions</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19262/">PR #19262</a>: more robust check for enter key in TextBox</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19249/">PR #19249</a>: Clarify Doc for Secondary axis, ad-hoc example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19248/">PR #19248</a>: Make return value of _get_patch_verts always an array.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19247/">PR #19247</a>: Fix markup for mplot3d example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19216/">PR #19216</a>: Ignore non-draw codes when calculating path extent</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19215/">PR #19215</a>: Collect information for setting up a development environment</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19210/">PR #19210</a>: Fix creation of AGG images bigger than 1024**3 pixels</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18933/">PR #18933</a>: Set clip path for PostScript texts.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19162/">PR #19162</a>: Deprecate cbook.warn_deprecated and move internal calls to _api.warn_deprecated</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16391/">PR #16391</a>: Re-write sym-log-norm</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19240/">PR #19240</a>: FIX: process lists for inverse norms</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18737/">PR #18737</a>: Fix data cursor for images with additional transform</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18642/">PR #18642</a>: Propagate minpos from Collections to Axes.datalim</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19242/">PR #19242</a>: Update first occurrence of QT to show both 4 and 5</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19231/">PR #19231</a>: Add reference section to all statistics examples</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19217/">PR #19217</a>: Request an autoscale at the end of ax.pie()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19176/">PR #19176</a>: Deprecate additional positional args to plot_{surface,wireframe}.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19063/">PR #19063</a>: Give plot_directive output a <code class="docutils literal notranslate"><span class="pre">max-width:</span> <span class="pre">100%</span></code></li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19187/">PR #19187</a>: Support callable for formatting of Sankey labels</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19220/">PR #19220</a>: Remove one TOC level from the release guide</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19212/">PR #19212</a>: MNT: try to put more whitespace in welcome message</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19155/">PR #19155</a>: Consolidated the Install from Source docs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19208/">PR #19208</a>: added version ask/hint to issue templates, grammar on pr bot</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19185/">PR #19185</a>: Document Triangulation.triangles</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19181/">PR #19181</a>: Remove unused imports</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19207/">PR #19207</a>: Fix Grouper example code</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19204/">PR #19204</a>: Clarify Date Format Example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19200/">PR #19200</a>: Fix incorrect statement regarding test images cache size.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19198/">PR #19198</a>: Fix link in contrbuting docs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19196/">PR #19196</a>: Fix PR welcome action</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19188/">PR #19188</a>: Cleanup comparision between X11/CSS4 and xkcd colors</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19194/">PR #19194</a>: Fix trivial quiver doc typo.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19180/">PR #19180</a>: Fix Artist.remove_callback()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19192/">PR #19192</a>: Fixed part of Issue - #19100, changed documentation for axisartist</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19179/">PR #19179</a>: Check that no new figures are created in image comparison tests</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19184/">PR #19184</a>: Minor doc cleanup</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19093/">PR #19093</a>: DOCS: Specifying Colors tutorial format & arrange</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17107/">PR #17107</a>: Add Spines class as a container for all Axes spines</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18829/">PR #18829</a>: Create a RangeSlider widget</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18873/">PR #18873</a>: Getting Started GSoD</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19175/">PR #19175</a>: Fix axes direction for a floating axisartist</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19130/">PR #19130</a>: DOC: remove reference to 2.2.x branches from list of active branches</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15212/">PR #15212</a>: Dedupe window-title setting by moving it to FigureManagerBase.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19172/">PR #19172</a>: Fix 3D surface example bug for non-square grid</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19173/">PR #19173</a>: Ensure backend tests are skipped if unavailable</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19170/">PR #19170</a>: Clarify meaning of facecolors for LineCollection</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18310/">PR #18310</a>: Add 3D stem plot</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18127/">PR #18127</a>: Implement lazy autoscaling in mplot3d.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16178/">PR #16178</a>: Add multiple label support for Axes.plot()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19151/">PR #19151</a>: Deprecate @cbook.deprecated and move internal calls to @_api.deprecated</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19088/">PR #19088</a>: Ignore CLOSEPOLY vertices when computing dataLim from patches</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19166/">PR #19166</a>: CI: add github action to post to first-time PRs openers</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19124/">PR #19124</a>: GOV/DOC: add section to docs on triaging and triage team</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15602/">PR #15602</a>: Add an auto-labeling helper function for bar charts</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19164/">PR #19164</a>: docs: fix simple typo, backslahes -> backslashes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19161/">PR #19161</a>: Simplify test_backend_pdf::test_multipage_properfinalize.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19141/">PR #19141</a>: FIX: suppress offset text in ConciseDateFormatter when largest scale is in years</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19150/">PR #19150</a>: Move from @cbook._classproperty to @_api.classproperty</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19144/">PR #19144</a>: Move from cbook._warn_external() to _api.warn_external()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19119/">PR #19119</a>: Don't lose unit change handlers when pickling/unpickling.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19145/">PR #19145</a>: Move from cbook._deprecate_*() to _api.deprecate_*()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19123/">PR #19123</a>: Use Qt events to refresh pixel ratio.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19056/">PR #19056</a>: Support raw/rgba frame format in FFMpegFileWriter</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19140/">PR #19140</a>: Fix the docstring of suptitle/subxlabel/supylabel.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19132/">PR #19132</a>: Normalize docstring interpolation label for kwdoc() property lists</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19134/">PR #19134</a>: Switch internal API function calls from cbook to _api</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19138/">PR #19138</a>: Added non-code contributions to incubator docs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19125/">PR #19125</a>: DOC: contributor incubator</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18948/">PR #18948</a>: DOC: Fix latexpdf build</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18753/">PR #18753</a>: Remove several more deprecations</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19083/">PR #19083</a>: Fix headless tests on Wayland.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19127/">PR #19127</a>: Cleanups to webagg & friends.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19122/">PR #19122</a>: FIX/DOC - make Text doscstring interp more easily searchable</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19106/">PR #19106</a>: Support setting rcParams["image.cmap"] to Colormap instances.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19085/">PR #19085</a>: FIX: update a transfrom from transFigure to transSubfigure</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19117/">PR #19117</a>: Rename a confusing variable.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18647/">PR #18647</a>: Axes.axline: implement support transform argument (for points but not slope)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16220/">PR #16220</a>: Fix interaction with unpickled 3d plots.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19059/">PR #19059</a>: Support blitting in webagg backend</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19107/">PR #19107</a>: Update pyplot.py</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19044/">PR #19044</a>: Cleanup Animation frame_formats.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19087/">PR #19087</a>: FIX/TST: recursively remove ticks</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19094/">PR #19094</a>: Suppress -Wunused-function about _import_array when compiling tkagg.cpp.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19092/">PR #19092</a>: Fix use transform mplot3d</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19097/">PR #19097</a>: DOC: add FuncScale to set_x/yscale</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19089/">PR #19089</a>: ENH: allow passing a scale instance to set_scale</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19086/">PR #19086</a>: FIX: add a default scale to Normalize</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19073/">PR #19073</a>: Mention in a few more places that artists default to not-pickable.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19079/">PR #19079</a>: Remove incorrect statement about <code class="docutils literal notranslate"><span class="pre">hist(...,</span> <span class="pre">log=True)</span></code>.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19076/">PR #19076</a>: Small improvements to aitoff projection.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19071/">PR #19071</a>: DOC: Add 'blackman' to list of imshow interpolations</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17524/">PR #17524</a>: ENH: add supxlabel and supylabel</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18840/">PR #18840</a>: Add tutorial about autoscaling</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19042/">PR #19042</a>: Simplify GridHelper invalidation.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19048/">PR #19048</a>: Remove _draw_{ticks2,label2}; skip extents computation in _update_ticks.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18983/">PR #18983</a>: Pass norm argument to spy</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18802/">PR #18802</a>: Add code of conduct</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19060/">PR #19060</a>: Fix broken link in Readme</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18569/">PR #18569</a>: More generic value snapping for Slider widgets</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19055/">PR #19055</a>: Fix kwargs handling in AnnotationBbox</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19041/">PR #19041</a>: Reword docs for exception_handler in CallbackRegistry.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19046/">PR #19046</a>: Prepare inlining MovieWriter.cleanup() into MovieWriter.finish().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19050/">PR #19050</a>: Better validate tick direction.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19038/">PR #19038</a>: Fix markup in interactive figures doc.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19035/">PR #19035</a>: grid_helper_curvelinear cleanups.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19022/">PR #19022</a>: Update event handling docs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19025/">PR #19025</a>: Remove individual doc entries for some methods Axes inherits from Artist</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19018/">PR #19018</a>: Inline and optimize ContourLabeler.get_label_coords.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19019/">PR #19019</a>: Deprecate never used <code class="docutils literal notranslate"><span class="pre">resize_callback</span></code> param to FigureCanvasTk.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19023/">PR #19023</a>: Cleanup comments/docs in backend_macosx, backend_pdf.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19020/">PR #19020</a>: Replace mathtext assertions by unpacking.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19024/">PR #19024</a>: Dedupe docs of GridSpec.subplots.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19013/">PR #19013</a>: Improve docs of _get_packed_offsets, _get_aligned_offsets.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19009/">PR #19009</a>: Compactify the implementation of ContourLabeler.add_label_near.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19008/">PR #19008</a>: Deprecate event processing wrapper methods on FigureManagerBase.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19015/">PR #19015</a>: Better document multilinebaseline (and other small TextArea fixes)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19012/">PR #19012</a>: Common <code class="docutils literal notranslate"><span class="pre">__init__</span></code> for VPacker and HPacker.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19014/">PR #19014</a>: Support normalize_kwargs(None) (== {}).</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19010/">PR #19010</a>: Inline _print_pdf_to_fh, _print_png_to_fh.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19003/">PR #19003</a>: Remove reference to unicode-math in pgf preamble.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18847/">PR #18847</a>: Cleanup interactive pan/zoom.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18868/">PR #18868</a>: Expire _make_keyword_only deprecations from 3.2</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18903/">PR #18903</a>: Move cbook._suppress_matplotlib_deprecation_warning() from cbook to _api</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18997/">PR #18997</a>: Micro-optimize check_isinstance.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18995/">PR #18995</a>: Fix the doc of GraphicsContextBase.set_clip_rectangle.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18996/">PR #18996</a>: Fix API change message from #18989</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18993/">PR #18993</a>: Don't access private renderer attributes in tkagg blit.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18980/">PR #18980</a>: DOC: fix typos</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18989/">PR #18989</a>: The Artist property rasterized cannot be None anymore</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18987/">PR #18987</a>: Fix punctuation in doc.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18894/">PR #18894</a>: Use selectfont instead of findfont + scalefont + setfont in PostScript.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18990/">PR #18990</a>: Minor cleanup of categorical example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18947/">PR #18947</a>: Strictly increasing check with test coverage for streamplot grid</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18981/">PR #18981</a>: Cleanup Firefox SVG example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18969/">PR #18969</a>: Improve documentation on rasterization</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18876/">PR #18876</a>: Support fully-fractional HiDPI added in Qt 5.14.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18976/">PR #18976</a>: Simplify contour_label_demo.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18975/">PR #18975</a>: Fix typing error in pyplot's docs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18956/">PR #18956</a>: Document rasterized parameter in pcolormesh() explicitly</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18968/">PR #18968</a>: Fix clabel() for backends without canvas.get_renderer()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18949/">PR #18949</a>: Deprecate AxisArtist.ZORDER</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18830/">PR #18830</a>: Pgf plotting</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18967/">PR #18967</a>: Remove unnecessary calls to lower().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18910/">PR #18910</a>: Remove Artist.eventson and Container.eventson</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18964/">PR #18964</a>: Remove special-casing for PostScript dpi in pyplot.py.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18961/">PR #18961</a>: Replace sphinx-gallery-specific references by standard :doc: refs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18955/">PR #18955</a>: added needs_ghostscript; skip test</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18857/">PR #18857</a>: Improve hat graph example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18943/">PR #18943</a>: Small cleanup to StepPatch._update_path.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18937/">PR #18937</a>: Cleanup stem docs and simplify implementation.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18895/">PR #18895</a>: Introduce variable since which mpl version the minimal python version</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18927/">PR #18927</a>: Improve warning message for missing font family specified via alias.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18930/">PR #18930</a>: Document limitations of Path.contains_point() and clarify its semantics</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18892/">PR #18892</a>: Fixes MIME type for svg frame_format in HTMLWriter.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18938/">PR #18938</a>: Edit usetex docs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18923/">PR #18923</a>: Use lambdas to prevent gc'ing and deduplication of widget callbacks.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16171/">PR #16171</a>: Contour fixes/improvements</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18901/">PR #18901</a>: Simplify repeat_delay and fix support for it when using iterable frames.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18911/">PR #18911</a>: Added Aria-Labels to all inputs with tooltips for generated HTML animations: issue #17910</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18912/">PR #18912</a>: Use CallbackRegistry for {Artist,Collection}.add_callback.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18919/">PR #18919</a>: DOCS: fix contourf hatch demo legend</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18905/">PR #18905</a>: Make docs fail on Warning (and fix all existing warnings)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18763/">PR #18763</a>: Single-line string notation for subplot_mosaic</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18902/">PR #18902</a>: Move ImageMagick version exclusion to _get_executable_info.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18915/">PR #18915</a>: Remove hard-coded API removal version mapping.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18914/">PR #18914</a>: Fix typo in error message: interable -> iterable.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15065/">PR #15065</a>: step-between as drawstyle [Alternative approach to #15019]</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18532/">PR #18532</a>: Consistent behavior of draw_if_interactive across interactive backends.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18908/">PR #18908</a>: Rework interactive backends tests.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18817/">PR #18817</a>: MAINT: deprecate validCap, validJoin</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18907/">PR #18907</a>: Unmark wx-threading-test-failure as strict xfail.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18896/">PR #18896</a>: Add note on keeping a reference to animation docstrings</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18862/">PR #18862</a>: Resolve mathtext.fontset at FontProperties creation time.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18877/">PR #18877</a>: Remove fallback to nonexistent setDevicePixelRatioF.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18823/">PR #18823</a>: Move from @cbook.deprecated to @_api.deprecated</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18889/">PR #18889</a>: Switch Tk to using PNG files for buttons</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18888/">PR #18888</a>: Update version of Matplotlib that needs Python 3.7</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18867/">PR #18867</a>: Remove "Demo" from example titles (part 2)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18863/">PR #18863</a>: Reword FontProperties docstring.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18866/">PR #18866</a>: Fix RGBAxes docs markup.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18874/">PR #18874</a>: Slightly compress down the pgf tests.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18565/">PR #18565</a>: Make Tkagg blit thread safe</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18858/">PR #18858</a>: Remove "Demo" from example titles</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15177/">PR #15177</a>: Bind WX_CHAR_HOOK instead of WX_KEY_DOWN for wx key_press_event.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18821/">PR #18821</a>: Simplification of animated histogram example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18844/">PR #18844</a>: Fix sphinx formatting issues</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18834/">PR #18834</a>: Add cross-references to Artist tutorial</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18827/">PR #18827</a>: Update Qt version in event handling docs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18825/">PR #18825</a>: Warn in pgf backend when unknown font is requested.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18822/">PR #18822</a>: Remove deprecate</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18733/">PR #18733</a>: Time series histogram plot example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18812/">PR #18812</a>: Change LogFormatter coeff computation</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18820/">PR #18820</a>: Fix axes -> Axes changes in figure.py</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18657/">PR #18657</a>: Move cbook.deprecation to _api.deprecation</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18818/">PR #18818</a>: Clarify behavior of CallbackRegistry.disconnect with nonexistent cids.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18811/">PR #18811</a>: DOC Use 'Axes' instead of 'axes' in figure.py</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18814/">PR #18814</a>: [Example] update Anscombe's Quartet</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18806/">PR #18806</a>: DOC Use 'Axes' in _axes.py docstrings</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18799/">PR #18799</a>: Remove unused wx private attribute.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18772/">PR #18772</a>: BF: text not drawn shouldn't count for tightbbox</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18793/">PR #18793</a>: Consistently use axs to refer to a set of Axes (v2)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18792/">PR #18792</a>: Cmap cleanup</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18798/">PR #18798</a>: Deprecate ps.useafm for mathtext</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18302/">PR #18302</a>: Remove 3D attributes from renderer</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18795/">PR #18795</a>: Make inset indicator more visible in the example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18781/">PR #18781</a>: Update description of web application server example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18791/">PR #18791</a>: Fix documentation of edgecolors precedence for scatter()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14645/">PR #14645</a>: Add a helper to copy a colormap and set its extreme colors.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17709/">PR #17709</a>: Enh: SymNorm for normalizing symmetrical data around a center</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18780/">PR #18780</a>: CI: pydocstyle>=5.1.0, flake8-docstrings>=1.4.0 verified to work</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18200/">PR #18200</a>: Unpin pydocstyle</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18767/">PR #18767</a>: Turn "How to use Matplotlib in a web application server" into a sphinx-gallery example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18765/">PR #18765</a>: Remove some unused tick private attributes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18688/">PR #18688</a>: Shorter property deprecation.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18748/">PR #18748</a>: Allow dependabot to check GitHub actions daily</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18529/">PR #18529</a>: Synchronize view limits of shared axes after setting ticks</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18575/">PR #18575</a>: Colorbar grid position</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18744/">PR #18744</a>: DOCS: document log locator's <code class="docutils literal notranslate"><span class="pre">numticks</span></code></li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18687/">PR #18687</a>: Deprecate GraphicsContextPS.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18706/">PR #18706</a>: Consistently use 3D, 2D, 1D for dimensionality</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18702/">PR #18702</a>: _make_norm_from_scale fixes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18558/">PR #18558</a>: Support usetex in date Formatters</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18493/">PR #18493</a>: MEP22 toolmanager set axes navigate_mode</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18730/">PR #18730</a>: TST: skip if known-bad version of imagemagick</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18583/">PR #18583</a>: Support binary comms in nbagg.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18728/">PR #18728</a>: Disable mouseover info for NonUniformImage.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18710/">PR #18710</a>: Deprecate cla() methods of Axis and Spines in favor of clear()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18719/">PR #18719</a>: Added the trace plot of the end point</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18729/">PR #18729</a>: Use ax.add_image rather than ax.images.append in NonUniformImage example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18707/">PR #18707</a>: Use "Return whether ..." docstring for functions returning bool</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18724/">PR #18724</a>: Remove extra newlines in contour(f) docs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18696/">PR #18696</a>: removed glossary</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18721/">PR #18721</a>: Remove the use_cmex font fallback mechanism.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18680/">PR #18680</a>: wx backend API cleanups.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18709/">PR #18709</a>: Use attributes Axes.x/yaxis instead of Axes.get_x/yaxis()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18712/">PR #18712</a>: Shorten GraphicsContextWx.get_wxcolour.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18708/">PR #18708</a>: Individualize contour and contourf docstrings</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18663/">PR #18663</a>: fix: keep baseline scale to baseline 0 even if set to None</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18704/">PR #18704</a>: Fix docstring of Axes.cla()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18675/">PR #18675</a>: Merge ParasiteAxesAuxTransBase into ParasiteAxesBase.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18651/">PR #18651</a>: Allow Type3 subsetting of otf fonts in pdf backend.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17396/">PR #17396</a>: Improve headlessness detection for backend selection.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17737/">PR #17737</a>: Deprecate BoxStyle._Base.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18655/">PR #18655</a>: Sync SubplotDivider API with SubplotBase API changes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18582/">PR #18582</a>: Shorten mlab tests.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18599/">PR #18599</a>: Simplify wx rubberband drawing.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18671/">PR #18671</a>: DOC: fix autoscale docstring</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18637/">PR #18637</a>: BLD: sync build and run time numpy pinning</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18693/">PR #18693</a>: Also fix tk key mapping, following the same strategy as for gtk.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18691/">PR #18691</a>: Cleanup sample_data.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18697/">PR #18697</a>: Catch TypeError when validating rcParams types.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18537/">PR #18537</a>: Create security policy</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18356/">PR #18356</a>: ENH: Subfigures</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18694/">PR #18694</a>: Document limitations on <code class="docutils literal notranslate"><span class="pre">@deprecated</span></code> with multiple-inheritance.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18669/">PR #18669</a>: Rework checks for old macosx</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17791/">PR #17791</a>: More accurate handling of unicode/numpad input in gtk3 backends.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18679/">PR #18679</a>: Further simplify pgf tmpdir cleanup.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18685/">PR #18685</a>: Cleanup pgf examples</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18682/">PR #18682</a>: Small API cleanups to plot_directive.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18686/">PR #18686</a>: Numpydocify setp.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18684/">PR #18684</a>: Small simplification to triage_tests.py.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17832/">PR #17832</a>: pdf: Support setting URLs on Text objects</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18674/">PR #18674</a>: Remove accidentally added swapfile.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18673/">PR #18673</a>: Small cleanups to parasite axes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18536/">PR #18536</a>: axes3d panning</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18667/">PR #18667</a>: TST: Lock cache directory during cleanup.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18672/">PR #18672</a>: Created Border for color examples</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18661/">PR #18661</a>: Define GridFinder.{,inv_}transform_xy as normal methods.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18656/">PR #18656</a>: Fix some missing references.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18659/">PR #18659</a>: Small simplifications to BboxImage.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18511/">PR #18511</a>: feat: StepPatch to take array as baseline</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18646/">PR #18646</a>: Support activating figures with plt.figure(figure_instance).</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18370/">PR #18370</a>: Move PostScript Type3 subsetting to pure python.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18645/">PR #18645</a>: Simplify Colorbar.set_label, inline Colorbar._edges.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18633/">PR #18633</a>: Support linestyle='none' in Patch</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18527/">PR #18527</a>: Fold ColorbarPatch into Colorbar, deprecate colorbar_factory.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17480/">PR #17480</a>: Regenerate background when RectangleSelector active-flag is set back on.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18626/">PR #18626</a>: Specify case when parameter is ignored.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18634/">PR #18634</a>: Fix typo in warning message.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18603/">PR #18603</a>: bugfix #18600 by using the MarkerStyle copy constructor</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18628/">PR #18628</a>: Remove outdate comment about canvases with no manager attribute.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18591/">PR #18591</a>: Deprecate MathTextParser("bitmap") and associated APIs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18617/">PR #18617</a>: Remove special styling of sidebar heading</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18616/">PR #18616</a>: Improve instructions for building the docs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18623/">PR #18623</a>: Provide a 'cursive' font present in Windows' default font set.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18579/">PR #18579</a>: Fix stairs() tests</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18618/">PR #18618</a>: Correctly separate two fantasy font names.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18610/">PR #18610</a>: DOCS: optional doc building dependencies</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18601/">PR #18601</a>: Simplify Rectangle and RegularPolygon.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18573/">PR #18573</a>: add_subplot(..., axes_class=...) for more idiomatic mpl_toolkits usage.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18605/">PR #18605</a>: Correctly sync state of wx toolbar buttons when triggered by keyboard.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18606/">PR #18606</a>: Revert "FIX: pin pytest"</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18587/">PR #18587</a>: Fix docstring of zaxis_date.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18589/">PR #18589</a>: Factor out pdf Type3 glyph drawing.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18586/">PR #18586</a>: Text cleanups.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18594/">PR #18594</a>: FIX: pin pytest</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18577/">PR #18577</a>: Random test cleanups</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18578/">PR #18578</a>: Merge all axisartist axis_direction demos together.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18588/">PR #18588</a>: Use get_x/yaxis_transform more.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18585/">PR #18585</a>: FIx precision in pie and donut example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18564/">PR #18564</a>: Prepare for merging SubplotBase into AxesBase.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15127/">PR #15127</a>: ENH/API: improvements to register_cmap</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18576/">PR #18576</a>: DOC: prefer colormap over color map</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18340/">PR #18340</a>: Colorbar grid postion</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18568/">PR #18568</a>: Added Reporting to code_of_conduct.md</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18555/">PR #18555</a>: Convert _math_style_dict into an Enum.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18567/">PR #18567</a>: Replace subplot(ijk) calls by subplots(i, j)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18554/">PR #18554</a>: Replace some usages of plt.subplot() by plt.subplots() in tests</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18556/">PR #18556</a>: Accept same types to errorevery as markevery</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15932/">PR #15932</a>: Use test cache for test result images too.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18557/">PR #18557</a>: DOC: Add an option to disable Google Analytics.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18560/">PR #18560</a>: Remove incorrect override of pcolor/contour in parasite axes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18566/">PR #18566</a>: Use fig, ax = plt.subplots() in tests (part 2)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18553/">PR #18553</a>: Use fig, ax = plt.subplots() in tests</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11748/">PR #11748</a>: get_clip_path checks for nan</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/8987/">PR #8987</a>: Tick formatter does not support grouping with locale</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18552/">PR #18552</a>: Change *subplot(111, ...) to *subplot(...) as 111 is the default.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18189/">PR #18189</a>: FIX: Add get/set methods for 3D collections</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18430/">PR #18430</a>: FIX: do not reset ylabel ha when changing position</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18515/">PR #18515</a>: Remove deprecated backend code.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17935/">PR #17935</a>: MNT: improve error messages on bad pdf metadata input</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18525/">PR #18525</a>: Add Text3D position getter/setter</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18542/">PR #18542</a>: CLEANUP: validate join/cap style centrally</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18501/">PR #18501</a>: TST: Add test for _repr_html_</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18528/">PR #18528</a>: Deprecate TextArea minimumdescent.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18543/">PR #18543</a>: Documentation improvements for stairs()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18531/">PR #18531</a>: Unit handling improvements</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18523/">PR #18523</a>: Don't leak file paths into PostScript metadata</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18526/">PR #18526</a>: Templatize _image.resample to deduplicate it.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18522/">PR #18522</a>: Remove mlab, toolkits, and misc deprecations</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18516/">PR #18516</a>: Remove deprecated font-related things.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18535/">PR #18535</a>: Add a code of conduct link to github</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17521/">PR #17521</a>: Remove font warning when legend is added while using Tex</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18517/">PR #18517</a>: Include kerning when outputting pdf strings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18521/">PR #18521</a>: Inline some helpers in ColorbarBase.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18512/">PR #18512</a>: Private api2</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18519/">PR #18519</a>: Correctly position text with nonzero descent with afm fonts / ps output.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18513/">PR #18513</a>: Remove Locator.autoscale.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18497/">PR #18497</a>: Merge v3.3.x into master</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18502/">PR #18502</a>: Remove the deprecated matplotlib.cm.revcmap()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18506/">PR #18506</a>: Inline ScalarFormatter._formatSciNotation.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18455/">PR #18455</a>: Fix BoundingBox in EPS files.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18275/">PR #18275</a>: feat: StepPatch</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18507/">PR #18507</a>: Fewer "soft" dependencies on LaTeX packages.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18378/">PR #18378</a>: Deprecate public access to many mathtext internals.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18494/">PR #18494</a>: Move cbook._check_in_list() to _api.check_in_list()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18423/">PR #18423</a>: 2-D array RGB and RGBA values not understood in plt.plot()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18492/">PR #18492</a>: Fix doc build failure due to #18440</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18435/">PR #18435</a>: New environment terminal language</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18456/">PR #18456</a>: Reuse InsetLocator to make twinned axes follow their parents.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18440/">PR #18440</a>: List existing rcParams in rcParams docstring.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18453/">PR #18453</a>: FIX: allow manually placed axes in constrained_layout</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18473/">PR #18473</a>: Correct link to widgets examples</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18466/">PR #18466</a>: Remove unnecessary autoscale handling in hist().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18465/">PR #18465</a>: Don't modify bottom argument in place in stacked histograms.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18468/">PR #18468</a>: Cleanup multiple_yaxis_with_spines example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18463/">PR #18463</a>: Improve formatting of defaults in docstrings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/6268/">PR #6268</a>: ENH: support alpha arrays in collections</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18449/">PR #18449</a>: Remove the private Axes._set_position.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18460/">PR #18460</a>: DOC: example gray level in 'Specifying Colors' tutorial</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18426/">PR #18426</a>: plot directive: caption-option</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18444/">PR #18444</a>: Support doubleclick in webagg/nbagg</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/12518/">PR #12518</a>: Example showing scale-invariant angle arc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18446/">PR #18446</a>: Normalize properties passed to ToolHandles.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18445/">PR #18445</a>: Warn if an animation is gc'd before doing anything.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18452/">PR #18452</a>: Move Axes <code class="docutils literal notranslate"><span class="pre">__repr__</span></code> from Subplot to AxesBase.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15374/">PR #15374</a>: Replace _prod_vectorized by @-multiplication.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13643/">PR #13643</a>: RecangleSelector constructor does not handle marker_props</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18403/">PR #18403</a>: DOC: Remove related topics entries from the sidebar</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18421/">PR #18421</a>: Move {get,set}_{x,y}label to _AxesBase.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18429/">PR #18429</a>: DOC: fix date example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18353/">PR #18353</a>: DOCS: describe shared axes behavior with units</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18420/">PR #18420</a>: Always strip out date in postscript's test_savefig_to_stringio.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18422/">PR #18422</a>: Decrease output when running <code class="docutils literal notranslate"><span class="pre">pytest</span> <span class="pre">-s</span></code>.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18418/">PR #18418</a>: Cleanup menu example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18419/">PR #18419</a>: Avoid demo'ing passing kwargs to gca().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18372/">PR #18372</a>: DOC: Fix various missing references and typos</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18400/">PR #18400</a>: Clarify argument name in constrained_layout error message</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18384/">PR #18384</a>: Clarification in ArtistAnimation docstring</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17892/">PR #17892</a>: Add earlier color validation</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18367/">PR #18367</a>: Support horizontalalignment in TextArea/AnchoredText.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18362/">PR #18362</a>: DOC: Add some types to Returns entries.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18365/">PR #18365</a>: move canvas focus after toomanager initialization</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18360/">PR #18360</a>: Add example for specifying figure size in different units</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18341/">PR #18341</a>: DOCS: add action items to PR template</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18349/">PR #18349</a>: Remove redundant angles in ellipse demo.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18145/">PR #18145</a>: Created a parameter fontset that can be used in each Text element</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18344/">PR #18344</a>: More nouns/imperative forms in docs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18308/">PR #18308</a>: Synchronize units change in Axis.set_units for shared axis</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17494/">PR #17494</a>: Rewrite of constrained_layout....</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16646/">PR #16646</a>: update colorbar.py make_axes_gridspec</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18306/">PR #18306</a>: Fix configure subplots</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17509/">PR #17509</a>: Fix <code class="docutils literal notranslate"><span class="pre">swap_if_landscape</span></code> call in backend_ps</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18323/">PR #18323</a>: Deleted "Our Favorite Recipes" section and moved the examples.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18128/">PR #18128</a>: Change several deprecated symbols in _macosx.m</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18251/">PR #18251</a>: Merge v3.3.x into master</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18329/">PR #18329</a>: Change default keymap in toolmanager example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18330/">PR #18330</a>: Dedent rst list.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18286/">PR #18286</a>: Fix imshow to work with subclasses of ndarray.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18320/">PR #18320</a>: Make Colorbar outline into a Spine.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18316/">PR #18316</a>: Safely import pyplot if a GUI framework is already running.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18321/">PR #18321</a>: Capture output of CallbackRegistry exception test.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17900/">PR #17900</a>: Add getters and _repr_html_ for over/under/bad values of Colormap objects.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17930/">PR #17930</a>: Fix errorbar property cycling to match plot.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18290/">PR #18290</a>: Remove unused import to fix flake8.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16818/">PR #16818</a>: Dedupe implementations of configure_subplots().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18284/">PR #18284</a>: TkTimer interval=0 workaround</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17901/">PR #17901</a>: DOC: Autoreformating of backend/*.py</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17291/">PR #17291</a>: Normalize gridspec ratios to lists in the setter.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18226/">PR #18226</a>: Use CallbackRegistry in Widgets and some related cleanup</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18203/">PR #18203</a>: Force locator and formatter inheritence</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18279/">PR #18279</a>: boxplot: Add conf_intervals reference to notch docs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18276/">PR #18276</a>: Fix autoscaling to exclude inifinite data limits when possible.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18261/">PR #18261</a>: Migrate tk backend tests into subprocesses</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17961/">PR #17961</a>: DOCS: Remove How-to: Contributing</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18201/">PR #18201</a>: Remove mpl.colors deprecations for 3.4</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18223/">PR #18223</a>: Added example on how to make packed bubble charts</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18264/">PR #18264</a>: Fix broken links in doc build.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/8031/">PR #8031</a>: Add errorbars to mplot3d</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18187/">PR #18187</a>: Add option to create horizontally-oriented stem plots</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18250/">PR #18250</a>: correctly autolabel Documentation and Maintenance issues</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18161/">PR #18161</a>: Add more specific GitHub issue templates</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18181/">PR #18181</a>: Replace ttconv by plain python for pdf subsetting</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17371/">PR #17371</a>: add context manager functionality to ion and ioff</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17789/">PR #17789</a>: Tk backend improvements</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15532/">PR #15532</a>: Resolve 'text ignores rotational part of transformation' (#698)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17851/">PR #17851</a>: Fix Axes3D.add_collection3d issues</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18205/">PR #18205</a>: Hat graph example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/6168/">PR #6168</a>: #5856: added option to create vertically-oriented stem plots</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18202/">PR #18202</a>: Remove mpl.testing deprecations for 3.4</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18081/">PR #18081</a>: Support scale in ttf composite glyphs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18199/">PR #18199</a>: Some cleanup on TickedStroke</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18190/">PR #18190</a>: Use <code class="docutils literal notranslate"><span class="pre">super()</span></code> more in backends</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18193/">PR #18193</a>: Allow savefig to save SVGs on FIPS enabled systems #18192</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17802/">PR #17802</a>: fix FigureManagerTk close behavior if embedded in Tk App</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15458/">PR #15458</a>: TickedStroke, a stroke style with ticks useful for depicting constraints</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18178/">PR #18178</a>: DOC: clarify that display space coordinates are not stable</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18172/">PR #18172</a>: allow webAgg to report middle click events</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17578/">PR #17578</a>: Search for minus of any font size to get height of tex result</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17546/">PR #17546</a>: <code class="docutils literal notranslate"><span class="pre">func</span></code> argument in <code class="docutils literal notranslate"><span class="pre">legend_elements</span></code> with non-monotonically increasing functions</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17684/">PR #17684</a>: Deprecate passing bytes to FT2Font.set_text.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17500/">PR #17500</a>: Tst improve memleak</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17669/">PR #17669</a>: Small changes to svg font embedding details</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18095/">PR #18095</a>: Error on unexpected kwargs in scale classes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18106/">PR #18106</a>: Copy docstring description from Axes.legend() to Figure.legend()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18002/">PR #18002</a>: Deprecate various vector-backend-specific mathtext helpers.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18006/">PR #18006</a>: Fix ToolManager inconsistencies with regular toolbar</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18004/">PR #18004</a>: Typos and docs for mathtext fonts.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18133/">PR #18133</a>: DOC: Update paths for moved API/what's new fragments</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18122/">PR #18122</a>: Document and test legend argument parsing</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18124/">PR #18124</a>: Fix FuncAnimation._draw_frame exception and testing</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18125/">PR #18125</a>: pdf: Convert operator list to an Enum.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18123/">PR #18123</a>: Cleanup figure title example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18121/">PR #18121</a>: Improve rasterization demo</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18012/">PR #18012</a>: Add explanatory text for rasterization demo</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18103/">PR #18103</a>: Support data reference for hexbin() parameter C</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17826/">PR #17826</a>: Add pause() and resume() methods to the base Animation class</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18090/">PR #18090</a>: Privatize cbook.format_approx.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18080/">PR #18080</a>: Reduce numerical precision in Type 1 fonts</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18044/">PR #18044</a>: Super-ify parts of the code base, part 3</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18087/">PR #18087</a>: Add a note on working around limit expansion of set_ticks()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18071/">PR #18071</a>: Remove deprecated animation code</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17822/">PR #17822</a>: Check for float values for min/max values to ax{v,h}line</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18069/">PR #18069</a>: Remove support for multiple-color strings in to_rgba_array</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18070/">PR #18070</a>: Remove rcsetup deprecations</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18073/">PR #18073</a>: Remove disable_internet.py</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18075/">PR #18075</a>: typo in usetex.py example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18043/">PR #18043</a>: Super-ify parts of the code base, part 2</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18062/">PR #18062</a>: Bump matplotlib.patches coverage</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17269/">PR #17269</a>: Fix ConciseDateFormatter when plotting a range included in a second</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18063/">PR #18063</a>: Remove un-used trivial setters and getters</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18025/">PR #18025</a>: add figpager as a third party package</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18046/">PR #18046</a>: Discourage references in section headings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18042/">PR #18042</a>: scatter: Raise if unexpected type of <code class="docutils literal notranslate"><span class="pre">s</span></code> argument.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18028/">PR #18028</a>: Super-ify parts of the code base, part 1</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18029/">PR #18029</a>: Remove some unused imports.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18018/">PR #18018</a>: Cache realpath resolution in font_manager.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/18013/">PR #18013</a>: Use argumentless <code class="docutils literal notranslate"><span class="pre">super()</span></code> more.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17988/">PR #17988</a>: add test with -OO</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17993/">PR #17993</a>: Make inset_axes and secondary_axis picklable.</li>