-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathgithub_stats.html
More file actions
1590 lines (1569 loc) · 211 KB
/
github_stats.html
File metadata and controls
1590 lines (1569 loc) · 211 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" />
<title>GitHub Stats — Matplotlib 3.3.0 documentation</title>
<link rel="stylesheet" href="../_static/mpl.css?v3.3.0-3-g8994f1b60" 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/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 type="text/javascript" id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script>
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
<script type="text/javascript" src="../_static/language_data.js"></script>
<script type="text/javascript" src="../_static/clipboard.min.js"></script>
<script type="text/javascript" src="../_static/copybutton.js"></script>
<script async="async" type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-AMS-MML_HTMLorMML"></script>
<link rel="search" type="application/opensearchdescription+xml"
title="Search within Matplotlib 3.3.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.0.2" href="prev_whats_new/github_stats_3.0.2.html" />
<link rel="prev" title="History" href="history.html" />
<link rel="top" title="Matplotlib 3.3.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.3.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.3.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.0.2.html" title="GitHub Stats for Matplotlib 3.0.2"
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>
</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 class="relations">
<h3>Related Topics</h3>
<ul>
<li><a href="../contents.html">Documentation overview</a><ul>
<li><a href="index.html">User's Guide</a><ul>
<li>Previous: <a href="history.html" title="previous chapter">History</a></li>
<li>Next: <a href="prev_whats_new/github_stats_3.0.2.html" title="next chapter">GitHub Stats for Matplotlib 3.0.2</a></li>
</ul></li>
</ul></li>
</ul>
</div>
<div id="sidebar-pagesource" role="note" aria-label="source link"
style="margin-top: 1.5em; padding-top: 0.1em; border-top: 1px solid #86989b">
<a href="../_sources/users/github_stats.rst.txt"
style="color: #c0c0c0" rel="nofollow">Show Page Source</a>
</div>
</div>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" 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/03/03 - 2020/07/16 (tag: v3.2.0)</p>
<p>These lists are automatically generated, and may be incomplete or contain duplicates.</p>
<p>We closed 198 issues and merged 1066 pull requests.
The full list can be seen <a class="reference external" href="https://github.com/matplotlib/matplotlib/milestone/48?closed=1">on GitHub</a></p>
<p>The following 144 authors contributed 3829 commits.</p>
<ul class="simple">
<li>Adam</li>
<li>Adam Paszke</li>
<li>Adam Ruszkowski</li>
<li>Alex Henrie</li>
<li>Alexander Rudy</li>
<li>Amy Roberts</li>
<li>andrzejnovak</li>
<li>Antony Lee</li>
<li>Ardie Orden</li>
<li>Asaf Maman</li>
<li>Avni Sharma</li>
<li>Ben Root</li>
<li>Bruno Beltran</li>
<li>Bruno Pagani</li>
<li>chaoyi1</li>
<li>Cho Yin Yong</li>
<li>Chris</li>
<li>Christoph Pohl</li>
<li>Cimarron Mittelsteadt</li>
<li>Clemens Brunner</li>
<li>Dan Hickstein</li>
<li>Dan Stromberg</li>
<li>David Chudzicki</li>
<li>David Stansby</li>
<li>Dennis Tismenko</li>
<li>Dominik Schmidt</li>
<li>donchanee</li>
<li>Dora Fraeman Caswell</li>
<li>Edoardo Pizzigoni</li>
<li>Elan Ernest</li>
<li>Elliott Sales de Andrade</li>
<li>Emlyn Price</li>
<li>Eric Firing</li>
<li>Eric Larson</li>
<li>Eric Relson</li>
<li>Eric Wieser</li>
<li>Fabien Maussion</li>
<li>Frank Sauerburger</li>
<li>Gal Avineri</li>
<li>Generated images</li>
<li>Georg Raiser</li>
<li>Gina</li>
<li>Greg Lucas</li>
<li>hannah</li>
<li>Hanno Rein</li>
<li>Harshal Prakash Patankar</li>
<li>henryhu123</li>
<li>Hugo van Kemenade</li>
<li>Ian Hincks</li>
<li>ImportanceOfBeingErnest</li>
<li>Inception95</li>
<li>Ingo Fründ</li>
<li>Jake Lee</li>
<li>Javad</li>
<li>jbhopkins</li>
<li>Jeroonk</li>
<li>jess</li>
<li>Jess Tiu</li>
<li>jfbu</li>
<li>Jiahao Chen</li>
<li>Jody Klymak</li>
<li>Jon Haitz Legarreta Gorroño</li>
<li>Jose Manuel Martí</li>
<li>Joshua Taillon</li>
<li>Juanjo Bazán</li>
<li>Julian Mehne</li>
<li>Kacper Kowalik (Xarthisius)</li>
<li>Kevin Mader</li>
<li>kolibril13</li>
<li>kopytjuk</li>
<li>ksafran</li>
<li>Kyle Sunden</li>
<li>Larry Bradley</li>
<li>Laurent Thomas</li>
<li>Lawrence D'Anna</li>
<li>Leo Singer</li>
<li>lepuchi</li>
<li>Luke Davis</li>
<li>Manan Kevadiya</li>
<li>Manuel Nuno Melo</li>
<li>Maoz Gelbart</li>
<li>Marat K</li>
<li>Marco Gorelli</li>
<li>Matt Newville</li>
<li>Matthias Bussonnier</li>
<li>Max</li>
<li>Max Chen</li>
<li>Max Humber</li>
<li>Maximilian Nöthe</li>
<li>Michaël Defferrard</li>
<li>Michele Mastropietro</li>
<li>mikhailov</li>
<li>MuhammadFarooq1234</li>
<li>Mykola Dvornik</li>
<li>Nelle Varoquaux</li>
<li>Nelson Darkwah Oppong</li>
<li>Nick Pope</li>
<li>Nico Schlömer</li>
<li>Nikita Kniazev</li>
<li>Olivier Castany</li>
<li>Omar Chehab</li>
<li>Paul Gierz</li>
<li>Paul Hobson</li>
<li>Paul Ivanov</li>
<li>Pavel Fedin</li>
<li>Peter Würtz</li>
<li>Philippe Pinard</li>
<li>pibion</li>
<li>Po</li>
<li>Pradeep Reddy Raamana</li>
<li>Ram Rachum</li>
<li>ranjanm</li>
<li>Raphael</li>
<li>Ricardo Mendes</li>
<li>Riccardo Di Maio</li>
<li>Ryan May</li>
<li>Sadie Louise Bartholomew</li>
<li>Sairam Pillai</li>
<li>Samesh Lakhotia</li>
<li>SamSchott</li>
<li>Sandro Tosi</li>
<li>Siddhesh Poyarekar</li>
<li>Sidharth Bansal</li>
<li>Snowhite</li>
<li>SojiroFukuda</li>
<li>Spencer McCoubrey</li>
<li>Stefan Mitic</li>
<li>Stephane Raynaud</li>
<li>Steven G. Johnson</li>
<li>Steven Munn</li>
<li>Ted Drain</li>
<li>Terence Honles</li>
<li>Thomas A Caswell</li>
<li>Thomas Robitaille</li>
<li>Till Stensitzki</li>
<li>Tim Hoffmann</li>
<li>Todd Jennings</li>
<li>Tyrone Xiong</li>
<li>Umar Javed</li>
<li>Venkada</li>
<li>vishalBindal</li>
<li>Vitaly Buka</li>
<li>Yue Zhihan</li>
<li>Zulko</li>
</ul>
<p>GitHub issues and pull requests:</p>
<p>Pull Requests (1066):</p>
<ul class="simple">
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17943/">PR #17943</a>: Backport PR #17942 on branch v3.3.x (Increase heading level for 3.3 What's New)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17942/">PR #17942</a>: Increase heading level for 3.3 What's New</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17941/">PR #17941</a>: Backport PR #17938 on branch v3.3.x (Don't allow 1D lists as subplot_moasic layout.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17940/">PR #17940</a>: Backport PR #17885 on branch v3.3.x (BF: ignore CLOSEPOLY after NaN in PathNanRemover)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17937/">PR #17937</a>: Backport PR #17877 on branch v3.3.x (Fix drawing zoom rubberband on GTK backends.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17938/">PR #17938</a>: Don't allow 1D lists as subplot_moasic layout.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17885/">PR #17885</a>: BF: ignore CLOSEPOLY after NaN in PathNanRemover</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17877/">PR #17877</a>: Fix drawing zoom rubberband on GTK backends.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17933/">PR #17933</a>: Backport PR #17858 on branch v3.3.x (Refresh what's new page for 3.3.0)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17858/">PR #17858</a>: Refresh what's new page for 3.3.0</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17919/">PR #17919</a>: Backport PR #17913 on branch v3.3.x (Revert using SVG inheritance diagrams)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17913/">PR #17913</a>: Revert using SVG inheritance diagrams</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17911/">PR #17911</a>: Backport PR #17907 on branch v3.3.x (Fix release() method name in macosx backend)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17907/">PR #17907</a>: Fix release() method name in macosx backend</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17903/">PR #17903</a>: Backport PR #17859 on branch v3.3.x (API: resolve unset vmin / vmax in all ScalarMapple based methods)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17859/">PR #17859</a>: API: resolve unset vmin / vmax in all ScalarMapple based methods</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17898/">PR #17898</a>: Backport PR #17882 on branch v3.3.x (Fix FFMpegBase.isAvailable with detached terminals.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17882/">PR #17882</a>: Fix FFMpegBase.isAvailable with detached terminals.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17881/">PR #17881</a>: Backport PR #17871 on branch v3.3.x (Mention single char colors shading in more places)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17871/">PR #17871</a>: Mention single char colors shading in more places</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17872/">PR #17872</a>: Backport PR #17800 on branch v3.3.x (Increase tolerance for alternate architectures)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17800/">PR #17800</a>: Increase tolerance for alternate architectures</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17861/">PR #17861</a>: Revert "Fix linewidths and colors for scatter() with unfilled markers"</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17864/">PR #17864</a>: Backport PR #17862 on branch v3.3.x (CI: Install, or upgrade, Python 3 on homebrew.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17846/">PR #17846</a>: Backport PR #17844 on branch v3.3.x (Explain why Qt4 backends are deprecated)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17844/">PR #17844</a>: Explain why Qt4 backends are deprecated</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17833/">PR #17833</a>: Backport PR #17831 on branch v3.3.x (BLD: default to system freetype on AIX)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17831/">PR #17831</a>: BLD: default to system freetype on AIX</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17823/">PR #17823</a>: Backport PR #17821 on branch v3.3.x (FIX: Keep lists of lists of one scalar each 2D in _reshape_2D)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17821/">PR #17821</a>: FIX: Keep lists of lists of one scalar each 2D in _reshape_2D</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17811/">PR #17811</a>: Backport PR #17797 on branch v3.3.x (Fix running contour's test_internal_cpp_api directly.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17812/">PR #17812</a>: Backport PR #17772 on branch v3.3.x (Partially fix rubberbanding in GTK3.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17815/">PR #17815</a>: Backport PR #17814 on branch v3.3.x (Don't duplicate deprecated parameter addendum.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17814/">PR #17814</a>: Don't duplicate deprecated parameter addendum.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17772/">PR #17772</a>: Partially fix rubberbanding in GTK3.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17797/">PR #17797</a>: Fix running contour's test_internal_cpp_api directly.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17809/">PR #17809</a>: Backport PR #17801 on branch v3.3.x (BUG: Fix implementation of _is_closed_polygon)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17801/">PR #17801</a>: BUG: Fix implementation of _is_closed_polygon</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17796/">PR #17796</a>: Backport PR #17764 on branch v3.3.x (FIX: be more careful about not importing pyplot early)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17795/">PR #17795</a>: Backport PR #17781 on branch v3.3.x (Fix limit setting after plotting empty data)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17764/">PR #17764</a>: FIX: be more careful about not importing pyplot early</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17781/">PR #17781</a>: Fix limit setting after plotting empty data</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17787/">PR #17787</a>: Backport PR #17784 on branch v3.3.x (Allow passing emtpy list of ticks to FixedLocator)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17784/">PR #17784</a>: Allow passing empty list of ticks to FixedLocator</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17766/">PR #17766</a>: Backport PR #17752 on branch v3.3.x (Numpydoc-ify various functions)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17752/">PR #17752</a>: Numpydoc-ify various functions</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17762/">PR #17762</a>: Backport PR #17742 on branch v3.3.x (Update tricontour[f] docs)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17742/">PR #17742</a>: Update tricontour[f] docs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17760/">PR #17760</a>: Backport PR #17756 on branch v3.3.x (Fix tk tooltips for dark themes.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17756/">PR #17756</a>: Fix tk tooltips for dark themes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17747/">PR #17747</a>: Backport PR #17731 on branch v3.3.x ("Fix" tight_layout for template backend.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17731/">PR #17731</a>: "Fix" tight_layout for template backend.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17739/">PR #17739</a>: Backport PR #17734 on branch v3.3.x (Oversample thumbnail x2)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17734/">PR #17734</a>: Oversample thumbnail x2</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17738/">PR #17738</a>: Backport PR #17729 on branch v3.3.x (Fix type doc for scroll event "step" attribute.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17729/">PR #17729</a>: Fix type doc for scroll event "step" attribute.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17724/">PR #17724</a>: Backport PR #17720 on branch v3.3.x (Fix check for manager = None.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17720/">PR #17720</a>: Fix check for manager = None.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17719/">PR #17719</a>: Backport PR #17693 on branch v3.3.x (DOC: Add svg2pdf converter for generating PDF docs.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17693/">PR #17693</a>: DOC: Add svg2pdf converter for generating PDF docs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17718/">PR #17718</a>: Backport PR #17715 on branch v3.3.x (Clarify gridspec error message for non-integer inputs.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17717/">PR #17717</a>: Backport PR #17705 on branch v3.3.x (Keep cachedRenderer as None when pickling Figure.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17715/">PR #17715</a>: Clarify gridspec error message for non-integer inputs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17705/">PR #17705</a>: Keep cachedRenderer as None when pickling Figure.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17701/">PR #17701</a>: Backport PR #17687 on branch v3.3.x (Mention keyboard modifiers in toolbar tooltip texts.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17687/">PR #17687</a>: Mention keyboard modifiers in toolbar tooltip texts.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17698/">PR #17698</a>: Backport PR #17686 on branch v3.3.x (Fix tooltip for wx toolbar.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17686/">PR #17686</a>: Fix tooltip for wx toolbar.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17692/">PR #17692</a>: Backport PR #17680 on branch v3.3.x (MNT: migrate away from deprecated c-api)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17680/">PR #17680</a>: MNT: migrate away from deprecated c-api</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17688/">PR #17688</a>: Backport PR #17676 on branch v3.3.x (FIX: correctly process the tick label size)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17676/">PR #17676</a>: FIX: correctly process the tick label size</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17677/">PR #17677</a>: Backport PR #17664 on branch v3.3.x (Clarify docs of AutoDateLocator.intervald)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17678/">PR #17678</a>: Backport PR #17665 on branch v3.3.x (Document that some single char colors are shaded)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17679/">PR #17679</a>: Backport PR #17675 on branch v3.3.x (DOC: specify that the LaTeX installation needs to include cm-super)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17675/">PR #17675</a>: DOC: specify that the LaTeX installation needs to include cm-super</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17665/">PR #17665</a>: Document that some single char colors are shaded</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17664/">PR #17664</a>: Clarify docs of AutoDateLocator.intervald</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17672/">PR #17672</a>: Backport PR #17668 on branch v3.3.x (Don't pass "wrong" <code class="docutils literal notranslate"><span class="pre">indent=False</span></code> in SVG generation.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17671/">PR #17671</a>: Backport PR #17667 on branch v3.3.x (Don't linewrap css in svg header.)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17668/">PR #17668</a>: Don't pass "wrong" <code class="docutils literal notranslate"><span class="pre">indent=False</span></code> in SVG generation.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17667/">PR #17667</a>: Don't linewrap css in svg header.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17666/">PR #17666</a>: Prepare for 3.3.0 rc1</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17663/">PR #17663</a>: DOC: update the gh stats for v3.3.0</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17656/">PR #17656</a>: Fix default colouring of Shadows</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17657/">PR #17657</a>: V3.2.x mergeup</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17623/">PR #17623</a>: Add a flag for disabling LTO.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17569/">PR #17569</a>: Delay usepackage{textcomp} until after the custom tex preamble.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17416/">PR #17416</a>: Reorder NavigationToolbar2 methods.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17604/">PR #17604</a>: DOC: Clarify offset notation and scientific notation</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17617/">PR #17617</a>: Rewrite pdf test to use check_figures_equal.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17654/">PR #17654</a>: Small fixes to recent What's New</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17649/">PR #17649</a>: MNT: make _setattr_cm more forgiving</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17644/">PR #17644</a>: Doc 33 whats new consolidation</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17647/">PR #17647</a>: Fix example in docstring of cbook._unfold.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10187/">PR #10187</a>: DOC: add a blitting tutorial</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17471/">PR #17471</a>: Removed idiomatic constructs from interactive figures docs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17639/">PR #17639</a>: DOC: Update colormap deprecation warning to use Python's copy function.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17223/">PR #17223</a>: Warn on invalid savefig keyword arguments</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17625/">PR #17625</a>: Give _DummyAxis instances a __name__</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17636/">PR #17636</a>: Fix image vlim clipping again</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17635/">PR #17635</a>: Fix autoscaling with tiny sticky values.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17620/">PR #17620</a>: MNT: make _setattr_cm more conservative</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17621/">PR #17621</a>: FIX: restore ability to pass a tuple to axes_class in axes_grid</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16603/">PR #16603</a>: axes collage</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17622/">PR #17622</a>: Fix typo in description of savefig.bbox.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17619/">PR #17619</a>: Skip test_tmpconfigdir_warning when running as root.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17610/">PR #17610</a>: MNT: allow 0 sized figures</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17163/">PR #17163</a>: Fix clipping of markers in PDF backend.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17556/">PR #17556</a>: DOC: Update contributor listing in credits</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17221/">PR #17221</a>: Add metadata saving support to SVG.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17603/">PR #17603</a>: Replace image comparison in test_axes_grid1 by geometry checks.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17428/">PR #17428</a>: Doc start 33 merges</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17607/">PR #17607</a>: Convert adjust_bbox to use ExitStack.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17575/">PR #17575</a>: DOCS: update collections.py docstrings to current doc conventions</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15826/">PR #15826</a>: Fix bar3d bug with matching color string and array x lengths</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14507/">PR #14507</a>: Simplify handling of Qt modifier keys.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17589/">PR #17589</a>: Fix doc build with Sphinx < 3.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17590/">PR #17590</a>: Clarify docs of set_powerlimits()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17597/">PR #17597</a>: MNT: cleanup minor style issues</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17183/">PR #17183</a>: Update configuration of CircleCI builds</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17592/">PR #17592</a>: Improve docstrings of ScalarFormatter</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17456/">PR #17456</a>: Improve stackplot example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17545/">PR #17545</a>: Improve docs of markers</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17233/">PR #17233</a>: Improve PDF metadata support in PGF</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17086/">PR #17086</a>: Remove jQuery & jQuery UI</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17580/">PR #17580</a>: Fix same_color() for 'none' color</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17582/">PR #17582</a>: Fix link in doc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17491/">PR #17491</a>: DOC: Only link to overall Zenodo DOI.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17515/">PR #17515</a>: FIX: add set_box_aspect, improve tight bounding box for Axes3D + fix bbox_inches support with fixed box_aspect</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17581/">PR #17581</a>: DOC: Remove duplicate Returns in subplot2grid.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17550/">PR #17550</a>: Update subplot2grid doc to use Figure.add_gridspec, not GridSpec.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17544/">PR #17544</a>: markerfacecolor should not override fillstyle='none' in plot()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15672/">PR #15672</a>: Remove mention that tkagg was derived from PIL.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17573/">PR #17573</a>: Examples: fix formatting issue in 'Errorbar limit selection'</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17543/">PR #17543</a>: Fix linewidths and colors for scatter() with unfilled markers</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17448/">PR #17448</a>: Add example for drawing an error band around a curve</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17572/">PR #17572</a>: Examples: clarity for 'set and get' example page</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17276/">PR #17276</a>: Allow numpy arrays in markevery</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17536/">PR #17536</a>: Consolidate some tests and fix a couple typos</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17558/">PR #17558</a>: Simplify plot_date()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17534/">PR #17534</a>: Fmaussion extended boundary norm</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17540/">PR #17540</a>: Fix help window on GTK.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17535/">PR #17535</a>: Update docs on subplot2grid / SubplotBase</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17510/">PR #17510</a>: Fix exception handling in FT2Font init.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16953/">PR #16953</a>: Changed 'colors' paramater in PyPlot vlines/hlines and Axes vlines/hlines to default to configured rcParams 'lines.color' option</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17459/">PR #17459</a>: Use light icons on dark themes for wx and gtk, too.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17539/">PR #17539</a>: Use symbolic icons for buttons in GTK toolbar.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15435/">PR #15435</a>: Reuse png metadata handling of imsave() in FigureCanvasAgg.print_png().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/5034/">PR #5034</a>: New "extend" keyword to colors.BoundaryNorm</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17532/">PR #17532</a>: DOC: correct legend.title_fontsize docstring</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17531/">PR #17531</a>: Remove unneeded check/comment re: multiprocessing in setup.py.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17522/">PR #17522</a>: Privatize ttconv module.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17517/">PR #17517</a>: Make sure _parent is in sync with Qt parent in NavigationToolbar2QT</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17525/">PR #17525</a>: DOC/API: set __qualname__ when using class factory</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17511/">PR #17511</a>: Fix offset legend tightbbox</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16203/">PR #16203</a>: Port fontconfig's font weight detection to font_manager.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17485/">PR #17485</a>: Support marking a single artist as not-usetex.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17338/">PR #17338</a>: Support url on more Artists in svg</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17519/">PR #17519</a>: Prefer demo'ing rcParams rather than rc in examples.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13457/">PR #13457</a>: Give <code class="docutils literal notranslate"><span class="pre">AnnotationBbox</span></code> an opinion about its extent</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15037/">PR #15037</a>: Simplifications to errorbar().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17493/">PR #17493</a>: Update SVGs that use interpolation='none'.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15221/">PR #15221</a>: Don't fallback to agg in tight_layout.get_renderer.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17512/">PR #17512</a>: DOC: remove inkscape restriction in doc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17484/">PR #17484</a>: Deprecate ismath parameter to draw_tex and ismath="TeX!".</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17492/">PR #17492</a>: Correctly set default linewidth for unfilled markers.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16908/">PR #16908</a>: Adding 2d support to quadmesh set_array</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17506/">PR #17506</a>: Fix dicts unpacking for <code class="docutils literal notranslate"><span class="pre">.plot</span></code></li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17496/">PR #17496</a>: Fix some incorrect image clipping</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17340/">PR #17340</a>: convert some sample plots to use plt.subplots() instead of other methods</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17504/">PR #17504</a>: Undocument parameter orientation of bar()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13884/">PR #13884</a>: Add some documentation for axisartist's ExtremeFinder, plus some cleanups.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17495/">PR #17495</a>: Fix Pillow import in testing.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17462/">PR #17462</a>: Inline FigureCanvasGtkFoo._render_figure.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17474/">PR #17474</a>: Numpydocify RectangleSelector docstring.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17003/">PR #17003</a>: Optimize extensions with LTO and hidden visibility</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17489/">PR #17489</a>: BUG: Picking vertical line broken</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17486/">PR #17486</a>: Simplify handling of fontproperties=None.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17478/">PR #17478</a>: Add support for blitting in qt5cairo.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15641/">PR #15641</a>: Make get_sample_data autoload npy/npz files.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17481/">PR #17481</a>: Fix LightSource.shade on fully unmasked array.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17289/">PR #17289</a>: Prepare for ragged array warnings in NumPy 1.19</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17358/">PR #17358</a>: Fix masked CubicTriInterpolator</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17477/">PR #17477</a>: DOC: Use Sphinx-gallery animation capture</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17482/">PR #17482</a>: Shorten RectangleSelector._release.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17475/">PR #17475</a>: Cleanup RectangleSelector example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17461/">PR #17461</a>: Deprecate the private FigureCanvasGTK3._renderer_init.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17464/">PR #17464</a>: Fold _make_nseq_validator into _listify_validator.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17469/">PR #17469</a>: Use qVersion, not QT_VERSION_STR -- the latter doesn't exist in PySide2.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/4779/">PR #4779</a>: DOC: Start to document interactive figures</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17458/">PR #17458</a>: Cleanup C++ code</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17466/">PR #17466</a>: DOC: clarify that milestones are intentions not approvals</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17062/">PR #17062</a>: Fix to "exported SVG files blurred in viewers"</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17443/">PR #17443</a>: Fix rcParams validator for dashes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17350/">PR #17350</a>: Move integerness checks to SubplotSpec._from_subplot_args.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17444/">PR #17444</a>: Support odd-length dash patterns in Agg.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17405/">PR #17405</a>: Show the failing line in bad-rcparams warnings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17452/">PR #17452</a>: Make validate_date throw ValueError, not RuntimeError.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17439/">PR #17439</a>: Remove comment re: validation of datetime format strings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17438/">PR #17438</a>: Discourage use of proprietary Matplotlib names for freetype hinting</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16990/">PR #16990</a>: update testing helpers</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16340/">PR #16340</a>: Make set_x/ymargin() update axes limits, just like margins().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15029/">PR #15029</a>: Get default params from matplotlibrc.template.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17363/">PR #17363</a>: Fix toolbar separators in wx+toolmanager.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17348/">PR #17348</a>: Avoid creating a Tick in Axis.get_tick_space.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15725/">PR #15725</a>: Changed line color of boxplot for dark_background</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17362/">PR #17362</a>: Remove status bars in toolmanager mode as well.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16551/">PR #16551</a>: DOC: be more opinionated about flags passed to pip</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17328/">PR #17328</a>: Fixes icon clipping issue with WxAgg NavigationToolbar2 for wxpython 4.1.0</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17425/">PR #17425</a>: fix typo in stem doc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17415/">PR #17415</a>: Cygwin fixes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17401/">PR #17401</a>: FIX: Fix for FFmpeg + GIF</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16569/">PR #16569</a>: MNT: improve the error message in Path init</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17404/">PR #17404</a>: Don't forget to dlclose() main_program in tkagg init.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17414/">PR #17414</a>: Keep validate_date private.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17413/">PR #17413</a>: Revert "DOC: drop the experimental tag constrained_layout and tight_layout"</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17394/">PR #17394</a>: Deprecate passing keys to update_keymap as single comma-separated string</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17395/">PR #17395</a>: TexManager fixes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17399/">PR #17399</a>: Remove qt4 backends from backend fallback candidates.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17392/">PR #17392</a>: Clarify deprecation message re: tex/pgf preambles as list-of-strings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17400/">PR #17400</a>: Cleanup wx examples.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17378/">PR #17378</a>: Fix marker overlap</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17351/">PR #17351</a>: Fix running the test suite with inkscape>=1.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17382/">PR #17382</a>: FIX: properly check figure on gridspec</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17390/">PR #17390</a>: Small updates to troubleshooting guide.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15104/">PR #15104</a>: Simplify file handling in ft2font.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17380/">PR #17380</a>: Support standard names for freetype hinting flags.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15594/">PR #15594</a>: Fix marker overlap</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17372/">PR #17372</a>: Auto-set artist.mouseover based on if get_cursor_data is overridden.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17377/">PR #17377</a>: Remove code for sphinx < 1.8</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17266/">PR #17266</a>: Keep explicit ticklabels in sync with ticks from FixedLocator</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17359/">PR #17359</a>: Fix running test_internal_cpp_api directly.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17355/">PR #17355</a>: Change subprocess for inkscape version detection</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17369/">PR #17369</a>: CI: Add eslint for JS linting</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17226/">PR #17226</a>: Replace backend_driver by new example runner.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17365/">PR #17365</a>: Also use light color tool buttons in qt+toolmanager+dark theme.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17366/">PR #17366</a>: Restrict Qt toolbars to top/bottom of canvas.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17361/">PR #17361</a>: Remove randomness from test_colorbar_get_ticks_2.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17151/">PR #17151</a>: Cleanup colors.py docstrings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17287/">PR #17287</a>: Make API of get_tightbbox more consistent between Axes and Axis.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17092/">PR #17092</a>: Don't create a statusbar in Qt, wx backends.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17220/">PR #17220</a>: Simplify Annotation and Text bbox drawing.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17353/">PR #17353</a>: Make zooming work in qt-embedding example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16727/">PR #16727</a>: Update xtick.alignment parameter in rcsetup to validate against correct values</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17236/">PR #17236</a>: Add the "contour.linewidths" configuration option</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16328/">PR #16328</a>: Make Artist.set() apply properties in the order in which they are given.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9696/">PR #9696</a>: FIX: set_url() without effect in the plot for instances of Tick</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17002/">PR #17002</a>: Fix AnnotationBbox picking and a bit of cleanup</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17256/">PR #17256</a>: Improve ps handling of individual usetex strings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17267/">PR #17267</a>: Improve image comparison decorator</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17332/">PR #17332</a>: Cleanup docstring of subplots().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16843/">PR #16843</a>: Deprecate is_pyqt5.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15898/">PR #15898</a>: New textcolor kwarg for legend</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17333/">PR #17333</a>: Make sharex, etc. args of subplots() keyword-only.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17329/">PR #17329</a>: Improve docs of eventplot()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17330/">PR #17330</a>: Remove pnpoly license.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13656/">PR #13656</a>: For single datasets, don't wrap artist added by Axes.hist in silent_list</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16247/">PR #16247</a>: DOC added kwargs and tight_layout description in plt.figure</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16992/">PR #16992</a>: Implement FigureManager.resize for macosx backend</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17324/">PR #17324</a>: DOC: add offset axes to secondary_axes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17311/">PR #17311</a>: Make pyplot signatures of rgrids() and thetagrids() explicit</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17302/">PR #17302</a>: Fix alignment of offset text on top axis.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14421/">PR #14421</a>: Add GridSpec.subplots()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15111/">PR #15111</a>: By default, don't change the figure face/edgecolor on savefig().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17318/">PR #17318</a>: both x and y should multiply the radius</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17309/">PR #17309</a>: Cleanup parameter types in docstrings</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17308/">PR #17308</a>: Improve docs of bar() and barh()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17312/">PR #17312</a>: changed axis to axes in lifecycle tutorial</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16715/">PR #16715</a>: Automatically create tick formatters for str and callable inputs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16959/">PR #16959</a>: Simplify and robustify ConnectionPatch coordinates conversion.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17306/">PR #17306</a>: FIX: CL more stable</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17301/">PR #17301</a>: Use deprecate_privatize_attribute more.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16985/">PR #16985</a>: Adds normalize kwarg to pie function</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/5243/">PR #5243</a>: Enhancement of tick label offset text positioning</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17292/">PR #17292</a>: Deprecate various wx Toolbar attributes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17297/">PR #17297</a>: Simplify pickling support.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17298/">PR #17298</a>: Fix rubberband in tk.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17299/">PR #17299</a>: Avoid "dash motion" in qt zoom box.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17200/">PR #17200</a>: Implement set_history_buttons for Tk toolbar.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16798/">PR #16798</a>: Make the Qt interactive zoom rectangle black & white.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17296/">PR #17296</a>: Fix doc wording</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17282/">PR #17282</a>: Don't divide by zero in Line2D.segment_hits.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17293/">PR #17293</a>: Fix incorrect deprecation.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17285/">PR #17285</a>: V32 mergeup</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15933/">PR #15933</a>: Warn if a temporary config/cache dir must be created.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15911/">PR #15911</a>: Use os.getpid() in configdir, to avoid multiprocess concurrency issues</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17277/">PR #17277</a>: Move slow FontManager warning to FontManager constructor.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17222/">PR #17222</a>: FIX: long titles x/ylabel layout</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14960/">PR #14960</a>: Don't generate individual doc entries for inherited Axes/Axis/Tick methods</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17175/">PR #17175</a>: Further sync axes_grid colorbars with standard colorbars.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17030/">PR #17030</a>: Move widget functions into matplotlib.testing.widgets.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16975/">PR #16975</a>: Fix "out of bounds" undefined behavior</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17111/">PR #17111</a>: Deprecate NavigationToolbar2._init_toolbar.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15275/">PR #15275</a>: adds turbo colormap</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17174/">PR #17174</a>: Inline RGBAxes._config_axes to its only call site.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17156/">PR #17156</a>: Deprecate text.latex.preview rcParam.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17242/">PR #17242</a>: Make deprecations versions explicit</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17165/">PR #17165</a>: Small optimizations to scale and translate of Affine2D</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17181/">PR #17181</a>: Inline some private helper methods in ColorbarBase + small refactors.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17264/">PR #17264</a>: Don't trigger save when gtk save dialog is closed by escape.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17262/">PR #17262</a>: fix typo in set_clip_on doc</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17234/">PR #17234</a>: Shorten and privatize qt's UiSubplotTool.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17137/">PR #17137</a>: Deprecate Toolbar.press/release; add helper to find overridden methods.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17245/">PR #17245</a>: Improve error handling in _parse_scatter_color_args</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15008/">PR #15008</a>: ENH: add variable epoch</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17260/">PR #17260</a>: Text Rotation Example: Correct roation_mode typo</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17258/">PR #17258</a>: Improve info logged by tex subsystem.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17211/">PR #17211</a>: Deprecate support for running svg converter from path contaning newline.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17078/">PR #17078</a>: Improve nbAgg & WebAgg toolbars</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17191/">PR #17191</a>: Inline unsampled-image path; remove renderer kwarg from _check_unsampled_image.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17213/">PR #17213</a>: Replace use of Bbox.bounds by appropriate properties.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17219/">PR #17219</a>: Add support for suptitle() in tight_layout().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17235/">PR #17235</a>: More axisartist cleanups</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17239/">PR #17239</a>: Remove deprecations that expire in 3.3</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13696/">PR #13696</a>: Deprecate offset_position="data".</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16991/">PR #16991</a>: Begin warning on modifying global state of colormaps</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17053/">PR #17053</a>: Replace most jQuery with vanilla JavaScript</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17228/">PR #17228</a>: Make params to pyplot.tight_layout keyword-only.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17225/">PR #17225</a>: Remove Patch visibility tracking by Legend & OffsetBox.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17027/">PR #17027</a>: Fix saving nbAgg figure after a partial blit</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16847/">PR #16847</a>: Ticks are not markers</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17229/">PR #17229</a>: Autogenerate subplots_adjust with boilerplate.py.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17209/">PR #17209</a>: Simplify some axisartist code.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17204/">PR #17204</a>: Draw unfilled hist()s with the zorder of lines.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17205/">PR #17205</a>: Shorten tight_layout code.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17218/">PR #17218</a>: Document <code class="docutils literal notranslate"><span class="pre">Transform.__add__</span></code> and <code class="docutils literal notranslate"><span class="pre">.__sub__</span></code>.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17215/">PR #17215</a>: Small cleanups.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17212/">PR #17212</a>: Cleanup text.py.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17196/">PR #17196</a>: Move polar tests to their own module.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14747/">PR #14747</a>: Deprecate AxisArtist.dpi_transform.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13144/">PR #13144</a>: Deprecate NavigationToolbar2GTK3.ctx.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17202/">PR #17202</a>: DOC: Remove extra word</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17194/">PR #17194</a>: Small cleanups/simplifications/fixes to pie().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17102/">PR #17102</a>: Switch tk pan/zoom to use togglable buttons.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16832/">PR #16832</a>: Correctly compute path extents</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17193/">PR #17193</a>: Document docstring quote convention</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17195/">PR #17195</a>: Fix polar tests.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17189/">PR #17189</a>: Make all parameters of ColorbarBase, except <code class="docutils literal notranslate"><span class="pre">ax</span></code>, keyword-only.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16717/">PR #16717</a>: Bugfix for issue 16501 raised ValueError polar subplot with (thetamax - thetamin) > 2pi</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17180/">PR #17180</a>: Doc: spines arrows example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17184/">PR #17184</a>: Fix various small typos.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17143/">PR #17143</a>: Move linting to GitHub Actions with reviewdog.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17160/">PR #17160</a>: Correctly go through property setter when init'ing Timer interval.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17166/">PR #17166</a>: Deprecate ScalarMappable.check_update and associated machinery.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17177/">PR #17177</a>: Manually linewrap PS hexlines. Fixes #17176</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17162/">PR #17162</a>: Update docs of rc_context()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17170/">PR #17170</a>: Convert SubplotZero example into centered-spines-with-arrows recipe.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17164/">PR #17164</a>: Fix Figure.add_axes(rect=...).</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17154/">PR #17154</a>: DOC: Fix some warning and unreproducibility</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17169/">PR #17169</a>: Clarify that draw_event occurs after the canvas draw.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17089/">PR #17089</a>: Cleanup some imports in tests</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17040/">PR #17040</a>: Improve docs on automated tests</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17145/">PR #17145</a>: CI: run pydocstyle with our custom options</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16864/">PR #16864</a>: Check parameter type for legend(labels)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17146/">PR #17146</a>: FigureManager/NavigationToolbar2 cleanups.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16933/">PR #16933</a>: Add tests for toolmanager.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17127/">PR #17127</a>: ENH: allow title autopositioning to be turned off</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17150/">PR #17150</a>: Many docstring cleanups.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17148/">PR #17148</a>: Fix most instances of D404 ("docstring should not start with 'this'").</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17142/">PR #17142</a>: BUGFIX: conditional for add_axes arg deprecation</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17032/">PR #17032</a>: Fold table.CustomCell into Cell.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17117/">PR #17117</a>: TextBox improvements.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17108/">PR #17108</a>: Make widgets.TextBox work also when embedding.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17135/">PR #17135</a>: Simplify pan/zoom toggling.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17134/">PR #17134</a>: Don't override update() in NavigationToolbar2Tk.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17129/">PR #17129</a>: In docs remove 'optional' if 'default' can be given</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16963/">PR #16963</a>: Deprecate Locator.refresh and associated helpers.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17133/">PR #17133</a>: Fix Button widget motion callback.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17125/">PR #17125</a>: Make multiline docstrings start with a newline.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17124/">PR #17124</a>: Widgets cleanup.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17123/">PR #17123</a>: Cleanup/Simplify Cell._set_text_position.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16862/">PR #16862</a>: FIX: turn off title autopos if pad is set</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15214/">PR #15214</a>: Inline wx icon loading.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16831/">PR #16831</a>: Simplify interactive zoom handling.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17094/">PR #17094</a>: DOC: drop the experimental tag constrained_layout and tight_layout</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17101/">PR #17101</a>: Avoid "wrapped C/C++ object has been deleted" when closing wx window.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17028/">PR #17028</a>: Changed return type of get_{x,y}ticklabels to plain list</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16058/">PR #16058</a>: Deprecate {ContourSet,Quiver}.ax in favor of .axes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15349/">PR #15349</a>: Use checkboxes as bullet points for the PR review checklists</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17112/">PR #17112</a>: Fix some link redirects in docs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17090/">PR #17090</a>: DOCS: add examples of how one "should" use Bbox</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17110/">PR #17110</a>: Simplify connection of the default key_press and button_press handlers.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17070/">PR #17070</a>: Cleanups to Qt backend.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16776/">PR #16776</a>: Make cursor text precision actually correspond to pointing precision.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17026/">PR #17026</a>: Add eslint & prettier, and re-format JS</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17091/">PR #17091</a>: Make sure slider uses "x" sign before multiplicative factor.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17082/">PR #17082</a>: Cleanup TextBox implementation.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17067/">PR #17067</a>: Simplify and generalize _set_view_from_bbox.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17081/">PR #17081</a>: Update animation_api.rst</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17077/">PR #17077</a>: Improve default formatter for Slider values.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17079/">PR #17079</a>: Use True instead of 1 for boolean parameters.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17074/">PR #17074</a>: Fixed a typo in Lifecycle of a Plot</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17072/">PR #17072</a>: Cleanup multi_image example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15287/">PR #15287</a>: Allow sharex/y after axes creation.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16987/">PR #16987</a>: Deprecate case-insensitive properties.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17059/">PR #17059</a>: More missing refs fixes, and associated doc rewordings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17057/">PR #17057</a>: Simplify subgridspec example/tutorial.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17058/">PR #17058</a>: Fix minor doc typos.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17024/">PR #17024</a>: Clarify docs of Rectangle</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17043/">PR #17043</a>: Avoid spurious deprecation warning in TextBox.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17047/">PR #17047</a>: Highlighted .cbook.warn_deprecated() in contributing.rst</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17054/">PR #17054</a>: Use slope in axline example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17048/">PR #17048</a>: More missing refs fixes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17021/">PR #17021</a>: File name made more understandable</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16903/">PR #16903</a>: Shorten implementation of Axes methods that just wrap Axis methods.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17039/">PR #17039</a>: Cleanups to contour docs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17011/">PR #17011</a>: ci: Publish result images as Azure artifacts.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17038/">PR #17038</a>: Improve readability of documenting_mpl.rst</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16996/">PR #16996</a>: Clean up get_proj() docstring (used view_init docstring as reference)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17019/">PR #17019</a>: Add return field to documentation of 'get_major_ticks'</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16999/">PR #16999</a>: Add section on artifacts to imshow docs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17029/">PR #17029</a>: Fix table.Cell docstrings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17025/">PR #17025</a>: Fix RecursionError when closing nbAgg figures.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16971/">PR #16971</a>: Don't change Figure DPI if value unchanged</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16972/">PR #16972</a>: Fix resize bugs in GTK</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17008/">PR #17008</a>: Change the description of Rectangle's xy parameter</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16337/">PR #16337</a>: Create axline() using slope</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16947/">PR #16947</a>: Fix missing parameter initialization in Axes.specgram()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17001/">PR #17001</a>: Cleanup imshow_extent tutorial.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17000/">PR #17000</a>: More stringent eventplot orientations.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16771/">PR #16771</a>: Deprecate non-string values as legend labels</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15910/">PR #15910</a>: Simplify init of EventCollection.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16998/">PR #16998</a>: Made INSTALL.rst consistent</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15393/">PR #15393</a>: Cleanup shape manipulations.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/10924/">PR #10924</a>: Clear() methods to Radio and CheckButtons and other improvements</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16988/">PR #16988</a>: Make plt.{r,theta}grids act as setters even when all args are kwargs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16986/">PR #16986</a>: update tox.ini to match pythons supported and allow flags for pytest</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16111/">PR #16111</a>: Move locking of fontlist.json <em>into</em> json_dump.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13110/">PR #13110</a>: Slightly tighten the Bbox/Transform API.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16973/">PR #16973</a>: TST: don't actually render 1k+ date ticks</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16967/">PR #16967</a>: Simplify animation writer fallback.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16812/">PR #16812</a>: Bezier/Path API Cleanup: fix circular import issue</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16968/">PR #16968</a>: Add link to 3.2 min-supported-requirements.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16957/">PR #16957</a>: Remove unused, private aliases Polygon._{get,set}_xy.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16960/">PR #16960</a>: Improve error for quoted values in matplotlibrc.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16530/">PR #16530</a>: Fix violinplot support list of pandas.Series</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16939/">PR #16939</a>: Cleanup/tighten axes_grid.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16942/">PR #16942</a>: Cleanup and avoid refleaks OSX Timer__timer_start.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16944/">PR #16944</a>: TST: update default junit_family</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16823/">PR #16823</a>: Dedupe implementation of axes grid switching in toolmanager.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16951/">PR #16951</a>: Cleanup dates docstrings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16769/">PR #16769</a>: Fix some small style issues</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16936/">PR #16936</a>: FIX: Plot is now rendered with correct inital value</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16937/">PR #16937</a>: Making sure to keep over/under/bad in cmap resample/reverse.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16915/">PR #16915</a>: Tighten/cleanup wx backend.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16923/">PR #16923</a>: Test the macosx backend on Travis.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15369/">PR #15369</a>: Update style docs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16893/">PR #16893</a>: Robustify <code class="docutils literal notranslate"><span class="pre">AffineBase.__eq__</span></code> against comparing to other classes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16904/">PR #16904</a>: Turn fontdict & minor into kwonly parameters for set_{x,y}ticklabels.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16917/">PR #16917</a>: Add test for close_event.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16920/">PR #16920</a>: Remove unused _read_ppm_image from macosx.m.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16877/">PR #16877</a>: Cleanup new_fixed_axis examples.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15049/">PR #15049</a>: Annotate argument in axes class match upstream</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16774/">PR #16774</a>: Cleanup demo_axes_hbox_divider.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16873/">PR #16873</a>: More fixes to pydocstyle D403 (First word capitalization)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16896/">PR #16896</a>: set_tick_params(label1On=False) should also make offset text invisible.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16907/">PR #16907</a>: Fix typo in implementation of quit_all_keys.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16900/">PR #16900</a>: Document and test common_texification()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16902/">PR #16902</a>: Remove dot from suffix in testing.compare.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16828/">PR #16828</a>: Use more _setattr_cm, thus fix Text('').get_window_extent(dpi=...)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16901/">PR #16901</a>: Cleanup many docstrings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16840/">PR #16840</a>: Deprecate support for Qt4.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16899/">PR #16899</a>: Remove optional returns from TriAnalyzer._get_compressed_triangulation.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16618/">PR #16618</a>: Use SubplotSpec row/colspans more, and deprecate get_rows_columns.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15392/">PR #15392</a>: Autoscale for ax.arrow()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14626/">PR #14626</a>: Add support for minor ticks in 3d axes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16897/">PR #16897</a>: Add back missing import.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14725/">PR #14725</a>: Move the debug-mode TransformNode.write_graphviz out.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15437/">PR #15437</a>: Improve handling of alpha when saving to jpeg.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15606/">PR #15606</a>: Simplify OldAutoLocator and AutoDateLocator.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16863/">PR #16863</a>: Shortcut for closing all figures</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16876/">PR #16876</a>: Small cleanups to dviread.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15680/">PR #15680</a>: Use more kwonly arguments, less manual kwargs-popping.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15318/">PR #15318</a>: Deprecate unused rcParams["animation.html_args"].</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15303/">PR #15303</a>: Make it possible to use rc_context as a decorator.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16890/">PR #16890</a>: Enables hatch alpha on SVG</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16887/">PR #16887</a>: Shorter event mocking in tests.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16881/">PR #16881</a>: Validate tickdir strings</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16846/">PR #16846</a>: Disconnect manager when resizing figure for animation saving.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16871/">PR #16871</a>: Shorter Path import in setupext.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16892/">PR #16892</a>: Warn in the docs that MouseEvent.key can be wrong.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16209/">PR #16209</a>: Dedupe boilerplate for "adoption" of figure into pyplot.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16098/">PR #16098</a>: Deprecate parameter props of Shadow</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15747/">PR #15747</a>: Move Text init to end of Annotation init.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15679/">PR #15679</a>: np.concatenate cleanups.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16778/">PR #16778</a>: Remove more API deprecated in 3.1(part 7)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16886/">PR #16886</a>: Finish removing mentions of idle_event.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16882/">PR #16882</a>: Fix trivial docstring typos.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16874/">PR #16874</a>: Fix pydocstyle D209 (Multi-line docstring closing separate line)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14044/">PR #14044</a>: Remove font preamble caching in TexManager.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16724/">PR #16724</a>: Fixed incorrect colour in ErrorBar when Nan value is presented</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15254/">PR #15254</a>: Propagate signature-modifying decorators to pyplot wrappers.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16868/">PR #16868</a>: Update release guide</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14442/">PR #14442</a>: In the build, declare all (compulsory) extension modules together.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16866/">PR #16866</a>: Cleanup/update deprecations.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16850/">PR #16850</a>: use validate_[cap/join]style</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16858/">PR #16858</a>: Fix various numpydoc style issues</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16848/">PR #16848</a>: Cleanup CI setup</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16845/">PR #16845</a>: Fix checking of X11 builds with PySide2.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14199/">PR #14199</a>: Deprecate Path helpers in bezier.py</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16838/">PR #16838</a>: Inline some more kwargs into setup.py's setup() call.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16841/">PR #16841</a>: Cleanup errorbar subsampling example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16839/">PR #16839</a>: spines doc cleanup</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16844/">PR #16844</a>: fix example hist(density=...)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16827/">PR #16827</a>: Fix warnings in doc examples</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16772/">PR #16772</a>: Remove more API deprecated in 3.1</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16822/">PR #16822</a>: fix bug where make_compound_path kept all STOPs</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16819/">PR #16819</a>: Destroy figures by manager instance, not by number.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16824/">PR #16824</a>: Deprecate NavigationToolbar2QT.parent.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16825/">PR #16825</a>: Don't use deprecated Gtk add_with_viewport.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16816/">PR #16816</a>: Merge v3.2.x into master</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16786/">PR #16786</a>: Simple cleanups to formatters.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16807/">PR #16807</a>: Update barchart_demo.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16804/">PR #16804</a>: Deprecate some mathtext glue helper classes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16808/">PR #16808</a>: One more instance of check_in_list.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16802/">PR #16802</a>: Fix incorrect super class of VCentered.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16789/">PR #16789</a>: Update markup for collections docstrings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16781/">PR #16781</a>: Update image tutorial wrt. removal of native png handler.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16787/">PR #16787</a>: Avoid vstack() when possible.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16689/">PR #16689</a>: Add a fast path for NumPy arrays to Collection.set_verts</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15373/">PR #15373</a>: Further shorten quiver3d computation...</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16780/">PR #16780</a>: Don't import rcParams but rather use mpl.rcParams (part 3)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16775/">PR #16775</a>: Cleanup axes_divider examples.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15949/">PR #15949</a>: Simplify implementation of SubplotTool.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14869/">PR #14869</a>: Deduplicate code for text-to-path conversion in svg backend.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16527/">PR #16527</a>: Validate positional parameters of add_subplot()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15622/">PR #15622</a>: Cleanup mpl_toolkits locators.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16744/">PR #16744</a>: Reword axes_divider tutorial.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16746/">PR #16746</a>: Reword colorbar-with-axes-divider example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15211/">PR #15211</a>: Various backend cleanups.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15890/">PR #15890</a>: Remove API deprecated in 3.1 (part 2)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16757/">PR #16757</a>: Simplify interactive zoom handling.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15515/">PR #15515</a>: Combine withEffect PathEffect definitions.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15977/">PR #15977</a>: pgf backend cleanups.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15981/">PR #15981</a>: Reuse colorbar outline and patch when updating the colorbar.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14852/">PR #14852</a>: Use Path.arc() to interpolate polar arcs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16686/">PR #16686</a>: Deprecate Substitution.from_params.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16675/">PR #16675</a>: Vectorize patch extraction in Axes3D.plot_surface</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15846/">PR #15846</a>: Standardize signature mismatch error messages.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16740/">PR #16740</a>: Fix type of <code class="docutils literal notranslate"><span class="pre">dpi</span></code> in docstrings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16741/">PR #16741</a>: Dedupe RGBAxes examples.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16755/">PR #16755</a>: Reword docstring of panning callbacks, and pass them a MouseButton.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16749/">PR #16749</a>: Document behavior of savefig("extensionless-name").</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16754/">PR #16754</a>: Cleanup image.py.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14606/">PR #14606</a>: Generic cleanup to hist().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16692/">PR #16692</a>: Allow MarkerStyle instances as input for lines</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15479/">PR #15479</a>: Cleanup axes_rgb.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16617/">PR #16617</a>: Use Path(..., closed=True) more.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16710/">PR #16710</a>: Make format_coord messagebox resize with the window and the content in osx backend</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16681/">PR #16681</a>: Simplify docstring interpolation for Box/Arrow/ConnectionStyles.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16576/">PR #16576</a>: Deprecate arg-less calls to subplot_class_factory (and similar factories)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16652/">PR #16652</a>: Deprecate {Locator,Axis}.{pan,zoom}.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16596/">PR #16596</a>: Deprecate dviread.Encoding.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16231/">PR #16231</a>: Deprecate JPEG-specific kwargs and rcParams to savefig.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16636/">PR #16636</a>: Deprecate autofmt_xdate(which=None) to mean which="major".</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16644/">PR #16644</a>: Deprecate validate_webagg_address.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16619/">PR #16619</a>: Fix overindented lines.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15233/">PR #15233</a>: backend_ps cleanup.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16604/">PR #16604</a>: Deprecate more rc validators.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16601/">PR #16601</a>: Small unrelated cleanups.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16584/">PR #16584</a>: Rename font_bunch to psfont in textpath.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16023/">PR #16023</a>: Dedupe implementations of fill_between & fill_betweenx.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16485/">PR #16485</a>: Simplify validate_color_for_prop_cycle.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16285/">PR #16285</a>: Deprecate RendererCairo.font{weights,angles}</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16410/">PR #16410</a>: Fix support for empty usetex strings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/11644/">PR #11644</a>: Add feature to fallback to stix font in mathtext</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16537/">PR #16537</a>: Delay checking for existence of postscript distillers.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16351/">PR #16351</a>: Group all init of Legend.legendPatch together.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15988/">PR #15988</a>: Refactor Annotation properties.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16421/">PR #16421</a>: Shorten the type1-to-unicode name table.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16200/">PR #16200</a>: Deprecate Artist.{set,get}_contains.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15828/">PR #15828</a>: Deprecate support for dash-offset = None.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16338/">PR #16338</a>: Document SymmetricalLogLocator parameters.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16504/">PR #16504</a>: DOC: more pcolor fixes</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15996/">PR #15996</a>: Cleanup axes_size.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16108/">PR #16108</a>: Deprecate DraggableBase.on_motion_blit.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16706/">PR #16706</a>: Fix exception causes all over the codebase</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15855/">PR #15855</a>: Simplify 3d axes callback setup.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16219/">PR #16219</a>: Simplify CallbackRegistry pickling.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16002/">PR #16002</a>: relax two test tolerances on x86_64</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16063/">PR #16063</a>: Make the signature of Axes.draw() consistent with Artist.draw().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16177/">PR #16177</a>: Further simplify setupext.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16191/">PR #16191</a>: Make Figure._axobservers a CallbackRegistry.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16698/">PR #16698</a>: Small edits to toolkits docs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15430/">PR #15430</a>: Simplify setupext.download_or_cache.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16694/">PR #16694</a>: Lower Text's FontProperties priority when updating</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16511/">PR #16511</a>: Add more detailed kwargs docstrings to Axes methods.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16653/">PR #16653</a>: Tutorials: make path/URL option clearer in matplotlibrc tutorial</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16697/">PR #16697</a>: Update docstrings for plot_directive.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16684/">PR #16684</a>: Fix exception causes in 19 modules</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16674/">PR #16674</a>: Docstring + import cleanups to legend.py.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16683/">PR #16683</a>: Turn mathtext.GlueSpec into a (private) namedtuple.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16660/">PR #16660</a>: Cleanup fancybox_demo.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16691/">PR #16691</a>: Clarify tiny comment re: AnnotationBbox constructor.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16676/">PR #16676</a>: Cleanup animation docstrings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16673/">PR #16673</a>: DOC: correct title_fontsize docstring</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16669/">PR #16669</a>: DOC: update doc release guide</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16563/">PR #16563</a>: Parametrize imshow antialiased tests.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16658/">PR #16658</a>: In docs, add multi-axes connectionpatches to Figure, not Axes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16647/">PR #16647</a>: Update annotation tutorial.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16638/">PR #16638</a>: Remove unused, outdated division operators on jpl_units.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16509/">PR #16509</a>: Add custom math fallback</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16609/">PR #16609</a>: Fix exception causes in rcsetup.py</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16637/">PR #16637</a>: Update docstrings in figure.py.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16534/">PR #16534</a>: DOC: MaxNLocator and contour/contourf doc update (replaces #16428)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16597/">PR #16597</a>: close #16593: setting ecolor turns off color cycling</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16615/">PR #16615</a>: Update custom boxstyles example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16610/">PR #16610</a>: Added graphviz_docs to conf.py</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16608/">PR #16608</a>: Stricter validation of rcParams["axes.axisbelow"].</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16614/">PR #16614</a>: Cleanup quiver3d examples.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16556/">PR #16556</a>: Make backend_ps test robust against timestamp changes in ghostscript.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16602/">PR #16602</a>: Cleanup testing.compare.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16575/">PR #16575</a>: Style fix for dynamic axes subclass generation in mpl_toolkits.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16587/">PR #16587</a>: Remove warnings control from tests.py.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16599/">PR #16599</a>: Cleanup dolphin example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16586/">PR #16586</a>: Deprecate recursionlimit kwarg to matplotlib.test().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16595/">PR #16595</a>: Minor docstring/references update.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16579/">PR #16579</a>: Update usetex_fonteffects example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16578/">PR #16578</a>: Use rc() less often in examples/tutorials.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16572/">PR #16572</a>: Remove some remnants of hist{,2d}(normed=...).</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16491/">PR #16491</a>: Expire the _rename_parameters API changes.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14592/">PR #14592</a>: In SecondaryAxis.set_functions, reuse _set_scale's parent scale caching.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16279/">PR #16279</a>: STY: Fix underindented continuation lines.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16549/">PR #16549</a>: Improve documentation for examples/widgets/textbox.py</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16560/">PR #16560</a>: Update URL to pyparsing.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16292/">PR #16292</a>: More edits to Normalize docstrings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16536/">PR #16536</a>: API/TST: minimum versions</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16559/">PR #16559</a>: 3D example avoid using statefull .gca()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16553/">PR #16553</a>: DOC: clarify the expected shapes of eventplot input</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16535/">PR #16535</a>: Clarify docs of num parameter of plt.figure()</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16547/">PR #16547</a>: Reformat/reword mathtext docstrings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16545/">PR #16545</a>: Add a smoketest for ps.usedistiller="xpdf".</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16529/">PR #16529</a>: Deprecate toggling axes navigatability using the keyboard.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16521/">PR #16521</a>: Remove more API deprecated in 3.1.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16481/">PR #16481</a>: Update set_thetalim documentation</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16524/">PR #16524</a>: Cleanup docstrings</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16540/">PR #16540</a>: Cleanup imports</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16429/">PR #16429</a>: CI: update codecov</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16533/">PR #16533</a>: Recommend to amend pull requests</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16531/">PR #16531</a>: Also deprecate ignorecase ValidateInStrings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16428/">PR #16428</a>: DOC: MaxNLocator and contour/contourf doc update</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16525/">PR #16525</a>: Don't import rcParams but rather use mpl.rcParams (part 2)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16528/">PR #16528</a>: Improve test failure messages on warnings.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16393/">PR #16393</a>: Shorten PyFT2Font_get_charmap.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16483/">PR #16483</a>: Deprecate most ValidateInStrings validators.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16523/">PR #16523</a>: Reorder mathtext rcparams in matplotlibrc template.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16520/">PR #16520</a>: Update a comment re: minimum version of numpy working around bug.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16522/">PR #16522</a>: Fix deprecation warning</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16515/">PR #16515</a>: Fix doc for set_{x,y}label, and then some more.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16516/">PR #16516</a>: Fixes to boxplot() docstring & error messages.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16508/">PR #16508</a>: Multi-dim transforms are non-separable by default.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16507/">PR #16507</a>: Factor out common parts of <code class="docutils literal notranslate"><span class="pre">__str__</span></code> for Transform subclasses.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16514/">PR #16514</a>: Various delayed PR reviews</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16512/">PR #16512</a>: Fix a bunch of random typos.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16510/">PR #16510</a>: Doc markup cleanups.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16500/">PR #16500</a>: Dedupe timer attribute docs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16503/">PR #16503</a>: DOC: suppress warning on pcolor demo</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16495/">PR #16495</a>: Deemphasize basemap in user-facing docs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16484/">PR #16484</a>: Don't forget to set stretch when exporting font as svg reference.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16486/">PR #16486</a>: Simplify validate_color, and make it slightly stricter.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16246/">PR #16246</a>: Avoid using FontProperties when not needed.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16432/">PR #16432</a>: Prefer geomspace() to logspace().</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16099/">PR #16099</a>: Consistently name callback arguments event instead of evt</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16477/">PR #16477</a>: Remove some APIs deprecated in mpl3.1.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16475/">PR #16475</a>: Use vlines() and plot(), not stem(), in timeline example.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16474/">PR #16474</a>: Switch default of stem(use_line_collection=...) to True.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16467/">PR #16467</a>: Convert named_colors example to use Rectangle</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16047/">PR #16047</a>: Remove more API deprecated in 3.1</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16373/">PR #16373</a>: Fix usetex_baseline_test.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16433/">PR #16433</a>: Simplify demo_curvelinear_grid2.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16472/">PR #16472</a>: Fix mplot3d projection</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16092/">PR #16092</a>: Deprecate clear_temp param/attr of FileMovieWriter.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15504/">PR #15504</a>: Warn when trying to start a GUI event loop out of the main thread.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/15023/">PR #15023</a>: Simplify formatting of matplotlibrc.template.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13535/">PR #13535</a>: Validate inputs to ScalarMappable constructor</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16469/">PR #16469</a>: FIX: colorbar minorticks when rcParams['x/ytick.minor.visible'] = True</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16401/">PR #16401</a>: BLD: Auto-detect PlatformToolset</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16024/">PR #16024</a>: Keep parameter names in preprocess_data.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/13390/">PR #13390</a>: Make sure that scatter3d copies its inputs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16107/">PR #16107</a>: Deprecate DraggableBase.artist_picker.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16455/">PR #16455</a>: Update some docstrings in colors.py</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16456/">PR #16456</a>: Enable more font_manager tests to be run locally.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16459/">PR #16459</a>: Update backend dependency docs.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16444/">PR #16444</a>: Dedupe spectral plotting tests.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16460/">PR #16460</a>: Remove some mentions of avconv, following its deprecation.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16443/">PR #16443</a>: Parametrize some spectral tests.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16204/">PR #16204</a>: Expire deprecation of mathcircled</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16446/">PR #16446</a>: Replace matshow baseline test by check_figures_equal.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16418/">PR #16418</a>: Backend timer simplifications.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16454/">PR #16454</a>: Use pytest.raises(match=...)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14916/">PR #14916</a>: Make kwargs names in scale.py not include the axis direction.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16258/">PR #16258</a>: ENH: add shading='nearest' and 'auto' to <code class="docutils literal notranslate"><span class="pre">pcolormesh</span></code></li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16228/">PR #16228</a>: Allow directly passing explicit font paths.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16445/">PR #16445</a>: Remove a bunch of imports-within-tests.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16440/">PR #16440</a>: Expire deprecation of stackrel.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16439/">PR #16439</a>: Rework pylab docstring.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16441/">PR #16441</a>: Rework pylab docstring.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16442/">PR #16442</a>: Expire deprecation of stackrel.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16365/">PR #16365</a>: TST: test_acorr (replaced image comparison with figure comparion)</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16206/">PR #16206</a>: Expire deprecation of stackrel</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16437/">PR #16437</a>: Rework pylab docstring.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/8896/">PR #8896</a>: Fix mplot3d projection</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16430/">PR #16430</a>: Remove unnecessary calls to np.array in examples.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16407/">PR #16407</a>: Remove outdated comment re: PYTHONHASHSEED and pytest.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16225/">PR #16225</a>: Cleanup animation examples.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16336/">PR #16336</a>: Include axline() in infinite lines example</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16395/">PR #16395</a>: Add set/get for ellipse width/height</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16431/">PR #16431</a>: CI: add py38 to azure matrix</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16415/">PR #16415</a>: Expire some APIs deprecated in mpl3.1.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16425/">PR #16425</a>: MNT: rename internal variable</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16427/">PR #16427</a>: Style-fix some examples and update .flake8 per-file-ignores.</li>
<li><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16423/">PR #16423</a>: Slightly improve streamplot code legibility.</li>