-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathgithub_stats.html
More file actions
1403 lines (1216 loc) · 143 KB
/
github_stats.html
File metadata and controls
1403 lines (1216 loc) · 143 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>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="generator" content="Docutils 0.19: https://docutils.sourceforge.io/" />
<title>GitHub statistics (Feb 13, 2023) — Matplotlib 3.7.0 documentation</title>
<script data-cfasync="false">
document.documentElement.dataset.mode = localStorage.getItem("mode") || "";
document.documentElement.dataset.theme = localStorage.getItem("theme") || "light";
</script>
<!-- Loaded before other Sphinx assets -->
<link href="../_static/styles/theme.css?digest=796348d33e8b1d947c94" rel="stylesheet">
<link href="../_static/styles/bootstrap.css?digest=796348d33e8b1d947c94" rel="stylesheet">
<link href="../_static/styles/pydata-sphinx-theme.css?digest=796348d33e8b1d947c94" rel="stylesheet">
<link href="../_static/vendor/fontawesome/6.1.2/css/all.min.css?digest=796348d33e8b1d947c94" rel="stylesheet">
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.1.2/webfonts/fa-solid-900.woff2">
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.1.2/webfonts/fa-brands-400.woff2">
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.1.2/webfonts/fa-regular-400.woff2">
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v3.7.0-3-g235131a6bc" />
<link rel="stylesheet" type="text/css" href="../_static/css/style.css?v3.7.0-3-g235131a6bc" />
<link rel="stylesheet" type="text/css" href="../_static/graphviz.css?v3.7.0-3-g235131a6bc" />
<link rel="stylesheet" type="text/css" href="../_static/plot_directive.css?v3.7.0-3-g235131a6bc" />
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css?v3.7.0-3-g235131a6bc" />
<link rel="stylesheet" type="text/css" href="../_static/sg_gallery.css?v3.7.0-3-g235131a6bc" />
<link rel="stylesheet" type="text/css" href="../_static/sg_gallery-binder.css?v3.7.0-3-g235131a6bc" />
<link rel="stylesheet" type="text/css" href="../_static/sg_gallery-dataframe.css?v3.7.0-3-g235131a6bc" />
<link rel="stylesheet" type="text/css" href="../_static/sg_gallery-rendered-html.css?v3.7.0-3-g235131a6bc" />
<link rel="stylesheet" type="text/css" href="../_static/design-style.4045f2051d55cab465a707391d5b2007.min.css?v3.7.0-3-g235131a6bc" />
<link rel="stylesheet" type="text/css" href="../_static/mpl.css?v3.7.0-3-g235131a6bc" />
<!-- Pre-loaded scripts that we'll load fully later -->
<link rel="preload" as="script" href="../_static/scripts/bootstrap.js?digest=796348d33e8b1d947c94">
<link rel="preload" as="script" href="../_static/scripts/pydata-sphinx-theme.js?digest=796348d33e8b1d947c94">
<script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v3.7.0-3-g235131a6bc"></script>
<script src="../_static/jquery.js?v3.7.0-3-g235131a6bc"></script>
<script src="../_static/underscore.js?v3.7.0-3-g235131a6bc"></script>
<script src="../_static/_sphinx_javascript_frameworks_compat.js?v3.7.0-3-g235131a6bc"></script>
<script src="../_static/doctools.js?v3.7.0-3-g235131a6bc"></script>
<script src="../_static/sphinx_highlight.js?v3.7.0-3-g235131a6bc"></script>
<script src="../_static/clipboard.min.js?v3.7.0-3-g235131a6bc"></script>
<script src="../_static/copybutton.js?v3.7.0-3-g235131a6bc"></script>
<script src="../_static/design-tabs.js?v3.7.0-3-g235131a6bc"></script>
<script data-domain="matplotlib.org" defer="defer" src="https://views.scientific-python.org/js/script.js"></script>
<script>DOCUMENTATION_OPTIONS.pagename = 'users/github_stats';</script>
<script>
DOCUMENTATION_OPTIONS.theme_switcher_json_url = 'https://matplotlib.org/devdocs/_static/switcher.json';
DOCUMENTATION_OPTIONS.theme_switcher_version_match = '3.7.0';
</script>
<link rel="canonical" href="https://matplotlib.org/stable/users/github_stats.html" />
<link rel="search" type="application/opensearchdescription+xml"
title="Search within Matplotlib 3.7.0 documentation"
href="../_static/opensearch.xml"/>
<link rel="shortcut icon" href="../_static/favicon.ico"/>
<link rel="search" title="Search" href="../search.html" />
<link rel="next" title="GitHub statistics for 3.6.3 (Jan 11, 2023)" href="prev_whats_new/github_stats_3.6.3.html" />
<link rel="prev" title="API Changes for 3.7.0" href="../api/prev_api_changes/api_changes_3.7.0.html" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="docsearch:language" content="en">
</head>
<body data-spy="scroll" data-target="#bd-toc-nav" data-offset="180" data-default-mode="">
<a class="skip-link" href="#main-content">Skip to main content</a>
<input type="checkbox" class="sidebar-toggle" name="__primary" id="__primary">
<label class="overlay overlay-primary" for="__primary"></label>
<input type="checkbox" class="sidebar-toggle" name="__secondary" id="__secondary">
<label class="overlay overlay-secondary" for="__secondary"></label>
<div class="search-button__wrapper">
<div class="search-button__overlay"></div>
<div class="search-button__search-container">
<form class="bd-search d-flex align-items-center" action="../search.html" method="get">
<i class="fa-solid fa-magnifying-glass"></i>
<input type="search" class="form-control" name="q" id="search-input" placeholder="Search the docs ..." aria-label="Search the docs ..." autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false">
<span class="search-button__kbd-shortcut"><kbd class="kbd-shortcut__modifier">Ctrl</kbd>+<kbd>K</kbd></span>
</form>
</div>
</div>
<nav class="bd-header navbar navbar-expand-lg bd-navbar" id="navbar-main"><div class="bd-header__inner bd-page-width">
<label class="sidebar-toggle primary-toggle" for="__primary">
<span class="fa-solid fa-bars"></span>
</label>
<div id="navbar-start">
<a class="navbar-brand logo" href="../index.html">
<img src="../_static/images/logo2.svg" class="logo__image only-light" alt="Logo image">
<img src="../_static/images/logo_dark.svg" class="logo__image only-dark" alt="Logo image">
</a>
</div>
<div class="col-lg-9 navbar-header-items">
<div id="navbar-center" class="mr-auto">
<div class="navbar-center-item">
<ul id="navbar-main-elements" class="navbar-nav">
<li class="nav-item">
<a class="reference internal nav-link" href="../plot_types/index.html">Plot types</a>
</li>
<li class="nav-item">
<a class="reference internal nav-link" href="../gallery/index.html">Examples</a>
</li>
<li class="nav-item">
<a class="reference internal nav-link" href="../tutorials/index.html">Tutorials</a>
</li>
<li class="nav-item">
<a class="reference internal nav-link" href="../api/index.html">Reference</a>
</li>
<li class="nav-item">
<a class="reference internal nav-link" href="index.html">User guide</a>
</li>
<li class="nav-item">
<a class="reference internal nav-link" href="../devel/index.html">Develop</a>
</li>
<li class="nav-item">
<a class="reference internal nav-link" href="release_notes.html">Releases</a>
</li>
</ul>
</div>
</div>
<div id="navbar-end">
<div class="navbar-end-item navbar-persistent--container">
<button class="btn btn-sm navbar-btn search-button search-button__button" title="Search" aria-label="Search" data-toggle="tooltip">
<i class="fa-solid fa-magnifying-glass"></i>
</button>
</div>
<div class="navbar-end-item">
<button class="theme-switch-button btn btn-sm btn-outline-primary navbar-btn rounded-circle" title="light/dark" aria-label="light/dark" data-toggle="tooltip">
<span class="theme-switch" data-mode="light"><i class="fa-solid fa-sun"></i></span>
<span class="theme-switch" data-mode="dark"><i class="fa-solid fa-moon"></i></span>
<span class="theme-switch" data-mode="auto"><i class="fa-solid fa-circle-half-stroke"></i></span>
</button>
</div>
<div class="navbar-end-item">
<div class="version-switcher__container dropdown">
<button type="button" class="version-switcher__button btn btn-sm navbar-btn dropdown-toggle" data-toggle="dropdown">
stable <!-- this text may get changed later by javascript -->
<span class="caret"></span>
</button>
<div class="version-switcher__menu dropdown-menu list-group-flush py-0">
<!-- dropdown will be populated by javascript on page load -->
</div>
</div>
</div>
<div class="navbar-end-item">
<ul id="navbar-icon-links" class="navbar-nav" aria-label="Icon Links">
<li class="nav-item">
<a href="https://gitter.im/matplotlib/matplotlib" title="Gitter" class="nav-link" rel="noopener" target="_blank" data-toggle="tooltip"><span><i class="fa-brands fa-gitter"></i></span>
<label class="sr-only">Gitter</label></a>
</li>
<li class="nav-item">
<a href="https://discourse.matplotlib.org" title="Discourse" class="nav-link" rel="noopener" target="_blank" data-toggle="tooltip"><span><i class="fa-brands fa-discourse"></i></span>
<label class="sr-only">Discourse</label></a>
</li>
<li class="nav-item">
<a href="https://github.com/matplotlib/matplotlib" title="GitHub" class="nav-link" rel="noopener" target="_blank" data-toggle="tooltip"><span><i class="fa-brands fa-github"></i></span>
<label class="sr-only">GitHub</label></a>
</li>
<li class="nav-item">
<a href="https://twitter.com/matplotlib/" title="Twitter" class="nav-link" rel="noopener" target="_blank" data-toggle="tooltip"><span><i class="fa-brands fa-twitter"></i></span>
<label class="sr-only">Twitter</label></a>
</li>
</ul>
</div>
</div>
</div>
<div class="navbar-persistent--mobile">
<button class="btn btn-sm navbar-btn search-button search-button__button" title="Search" aria-label="Search" data-toggle="tooltip">
<i class="fa-solid fa-magnifying-glass"></i>
</button>
</div>
<label class="sidebar-toggle secondary-toggle" for="__secondary">
<span class="fa-solid fa-outdent"></span>
</label>
</div>
</nav>
<div class="bd-container">
<div class="bd-container__inner bd-page-width">
<div class="bd-sidebar-primary bd-sidebar">
<div class="sidebar-header-items sidebar-primary__section">
<div class="sidebar-header-items__center">
<div class="navbar-center-item">
<ul id="navbar-main-elements" class="navbar-nav">
<li class="nav-item">
<a class="reference internal nav-link" href="../plot_types/index.html">Plot types</a>
</li>
<li class="nav-item">
<a class="reference internal nav-link" href="../gallery/index.html">Examples</a>
</li>
<li class="nav-item">
<a class="reference internal nav-link" href="../tutorials/index.html">Tutorials</a>
</li>
<li class="nav-item">
<a class="reference internal nav-link" href="../api/index.html">Reference</a>
</li>
<li class="nav-item">
<a class="reference internal nav-link" href="index.html">User guide</a>
</li>
<li class="nav-item">
<a class="reference internal nav-link" href="../devel/index.html">Develop</a>
</li>
<li class="nav-item">
<a class="reference internal nav-link" href="release_notes.html">Releases</a>
</li>
</ul>
</div>
</div>
<div class="sidebar-header-items__end">
<div class="navbar-end-item">
<button class="theme-switch-button btn btn-sm btn-outline-primary navbar-btn rounded-circle" title="light/dark" aria-label="light/dark" data-toggle="tooltip">
<span class="theme-switch" data-mode="light"><i class="fa-solid fa-sun"></i></span>
<span class="theme-switch" data-mode="dark"><i class="fa-solid fa-moon"></i></span>
<span class="theme-switch" data-mode="auto"><i class="fa-solid fa-circle-half-stroke"></i></span>
</button>
</div>
<div class="navbar-end-item">
<div class="version-switcher__container dropdown">
<button type="button" class="version-switcher__button btn btn-sm navbar-btn dropdown-toggle" data-toggle="dropdown">
stable <!-- this text may get changed later by javascript -->
<span class="caret"></span>
</button>
<div class="version-switcher__menu dropdown-menu list-group-flush py-0">
<!-- dropdown will be populated by javascript on page load -->
</div>
</div>
</div>
<div class="navbar-end-item">
<ul id="navbar-icon-links" class="navbar-nav" aria-label="Icon Links">
<li class="nav-item">
<a href="https://gitter.im/matplotlib/matplotlib" title="Gitter" class="nav-link" rel="noopener" target="_blank" data-toggle="tooltip"><span><i class="fa-brands fa-gitter"></i></span>
<label class="sr-only">Gitter</label></a>
</li>
<li class="nav-item">
<a href="https://discourse.matplotlib.org" title="Discourse" class="nav-link" rel="noopener" target="_blank" data-toggle="tooltip"><span><i class="fa-brands fa-discourse"></i></span>
<label class="sr-only">Discourse</label></a>
</li>
<li class="nav-item">
<a href="https://github.com/matplotlib/matplotlib" title="GitHub" class="nav-link" rel="noopener" target="_blank" data-toggle="tooltip"><span><i class="fa-brands fa-github"></i></span>
<label class="sr-only">GitHub</label></a>
</li>
<li class="nav-item">
<a href="https://twitter.com/matplotlib/" title="Twitter" class="nav-link" rel="noopener" target="_blank" data-toggle="tooltip"><span><i class="fa-brands fa-twitter"></i></span>
<label class="sr-only">Twitter</label></a>
</li>
</ul>
</div>
</div>
</div>
<div class="sidebar-start-items sidebar-primary__section">
<div class="sidebar-start-items__item"><nav class="bd-links" id="bd-docs-nav" aria-label="Section navigation">
<p class="bd-links__title" role="heading" aria-level="1">
Section Navigation
</p>
<div class="bd-toc-item navbar-nav">
<ul class="current nav bd-sidenav">
<li class="toctree-l1 has-children"><a class="reference internal" href="prev_whats_new/whats_new_3.7.0.html">What's new in Matplotlib 3.7.0 (Feb 13, 2023)</a><input class="toctree-checkbox" id="toctree-checkbox-1" name="toctree-checkbox-1" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-1"><i class="fa-solid fa-chevron-down"></i></label><ul class="simple">
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_3.7.0.html">API Changes for 3.7.0</a></li>
<li class="toctree-l1 current active has-children"><a class="current reference internal" href="#">GitHub statistics (Feb 13, 2023)</a><input checked="" class="toctree-checkbox" id="toctree-checkbox-2" name="toctree-checkbox-2" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-2"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.6.3.html">GitHub statistics for 3.6.3 (Jan 11, 2023)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.6.2.html">GitHub statistics for 3.6.2 (Nov 02, 2022)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.6.1.html">GitHub statistics for 3.6.1 (Oct 08, 2022)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.6.0.html">GitHub statistics for 3.6.0 (Sep 15, 2022)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.5.3.html">GitHub statistics for 3.5.3 (Aug 10, 2022)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.5.2.html">GitHub statistics for 3.5.2 (May 02, 2022)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.5.1.html">GitHub statistics for 3.5.1 (Dec 11, 2021)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.5.0.html">GitHub statistics for 3.5.0 (Nov 15, 2021)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.4.3.html">GitHub statistics for 3.4.3 (August 21, 2021)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.4.2.html">GitHub statistics for 3.4.2 (May 08, 2021)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.4.1.html">GitHub statistics for 3.4.1 (Mar 31, 2021)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.4.0.html">GitHub statistics for 3.4.0 (Mar 26, 2021)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.3.4.html">GitHub statistics for 3.3.4 (Jan 28, 2021)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.3.3.html">GitHub statistics for 3.3.3 (Nov 11, 2020)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.3.2.html">GitHub statistics for 3.3.2 (Sep 15, 2020)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.3.1.html">GitHub statistics for 3.3.1 (Aug 13, 2020)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.3.0.html">GitHub statistics for 3.3.0 (Jul 16, 2020)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.2.2.html">GitHub statistics for 3.2.2 (Jun 17, 2020)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.2.1.html">GitHub statistics for 3.2.1 (Mar 18, 2020)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.2.0.html">GitHub statistics for 3.2.0 (Mar 04, 2020)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.1.3.html">GitHub statistics for 3.1.3 (Feb 03, 2020)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.1.2.html">GitHub statistics for 3.1.2 (Nov 21, 2019)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.1.1.html">GitHub statistics for 3.1.1 (Jul 02, 2019)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.1.0.html">GitHub statistics for 3.1.0 (May 18, 2019)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.0.3.html">GitHub statistics for 3.0.3 (Feb 28, 2019)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.0.2.html">GitHub statistics for 3.0.2 (Nov 10, 2018)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.0.1.html">GitHub statistics for 3.0.1 (Oct 25, 2018)</a></li>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/github_stats_3.0.0.html">GitHub statistics for 3.0.0 (Sep 18, 2018)</a></li>
</ul>
</li>
</ul>
<ul class="nav bd-sidenav">
<li class="toctree-l1 has-children"><a class="reference internal" href="prev_whats_new/whats_new_3.6.0.html">What's new in Matplotlib 3.6.0 (Sep 15, 2022)</a><input class="toctree-checkbox" id="toctree-checkbox-3" name="toctree-checkbox-3" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-3"><i class="fa-solid fa-chevron-down"></i></label><ul class="simple">
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_3.6.1.html">API Changes for 3.6.1</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_3.6.0.html">API Changes for 3.6.0</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.6.3.html">GitHub statistics for 3.6.3 (Jan 11, 2023)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.6.2.html">GitHub statistics for 3.6.2 (Nov 02, 2022)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.6.1.html">GitHub statistics for 3.6.1 (Oct 08, 2022)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.6.0.html">GitHub statistics for 3.6.0 (Sep 15, 2022)</a></li>
</ul>
<ul class="nav bd-sidenav">
<li class="toctree-l1 has-children"><a class="reference internal" href="prev_whats_new/whats_new_3.5.2.html">What's new in Matplotlib 3.5.2 (May 02, 2022)</a><input class="toctree-checkbox" id="toctree-checkbox-4" name="toctree-checkbox-4" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-4"><i class="fa-solid fa-chevron-down"></i></label><ul class="simple">
</ul>
</li>
<li class="toctree-l1 has-children"><a class="reference internal" href="prev_whats_new/whats_new_3.5.0.html">What's new in Matplotlib 3.5.0 (Nov 15, 2021)</a><input class="toctree-checkbox" id="toctree-checkbox-5" name="toctree-checkbox-5" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-5"><i class="fa-solid fa-chevron-down"></i></label><ul class="simple">
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_3.5.3.html">API Changes for 3.5.3</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_3.5.2.html">API Changes for 3.5.2</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_3.5.0.html">API Changes for 3.5.0</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.5.3.html">GitHub statistics for 3.5.3 (Aug 10, 2022)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.5.2.html">GitHub statistics for 3.5.2 (May 02, 2022)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.5.1.html">GitHub statistics for 3.5.1 (Dec 11, 2021)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.5.0.html">GitHub statistics for 3.5.0 (Nov 15, 2021)</a></li>
</ul>
<ul class="nav bd-sidenav">
<li class="toctree-l1 has-children"><a class="reference internal" href="prev_whats_new/whats_new_3.4.0.html">What's new in Matplotlib 3.4.0 (Mar 26, 2021)</a><input class="toctree-checkbox" id="toctree-checkbox-6" name="toctree-checkbox-6" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-6"><i class="fa-solid fa-chevron-down"></i></label><ul class="simple">
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_3.4.2.html">API Changes for 3.4.2</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_3.4.0.html">API Changes for 3.4.0</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.4.1.html">GitHub statistics for 3.4.1 (Mar 31, 2021)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.4.0.html">GitHub statistics for 3.4.0 (Mar 26, 2021)</a></li>
</ul>
<ul class="nav bd-sidenav">
<li class="toctree-l1 has-children"><a class="reference internal" href="prev_whats_new/whats_new_3.3.0.html">What's new in Matplotlib 3.3.0 (Jul 16, 2020)</a><input class="toctree-checkbox" id="toctree-checkbox-7" name="toctree-checkbox-7" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-7"><i class="fa-solid fa-chevron-down"></i></label><ul class="simple">
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_3.3.1.html">API Changes for 3.3.1</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_3.3.0.html">API Changes for 3.3.0</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.3.4.html">GitHub statistics for 3.3.4 (Jan 28, 2021)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.3.3.html">GitHub statistics for 3.3.3 (Nov 11, 2020)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.3.2.html">GitHub statistics for 3.3.2 (Sep 15, 2020)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.3.1.html">GitHub statistics for 3.3.1 (Aug 13, 2020)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.3.0.html">GitHub statistics for 3.3.0 (Jul 16, 2020)</a></li>
</ul>
<ul class="nav bd-sidenav">
<li class="toctree-l1 has-children"><a class="reference internal" href="prev_whats_new/whats_new_3.2.0.html">What's new in Matplotlib 3.2 (Mar 04, 2020)</a><input class="toctree-checkbox" id="toctree-checkbox-8" name="toctree-checkbox-8" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-8"><i class="fa-solid fa-chevron-down"></i></label><ul class="simple">
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_3.2.0.html">API Changes for 3.2.0</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.2.2.html">GitHub statistics for 3.2.2 (Jun 17, 2020)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.2.1.html">GitHub statistics for 3.2.1 (Mar 18, 2020)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.2.0.html">GitHub statistics for 3.2.0 (Mar 04, 2020)</a></li>
</ul>
<ul class="nav bd-sidenav">
<li class="toctree-l1 has-children"><a class="reference internal" href="prev_whats_new/whats_new_3.1.0.html">What's new in Matplotlib 3.1 (May 18, 2019)</a><input class="toctree-checkbox" id="toctree-checkbox-9" name="toctree-checkbox-9" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-9"><i class="fa-solid fa-chevron-down"></i></label><ul class="simple">
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_3.1.1.html">API Changes for 3.1.1</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_3.1.0.html">API Changes for 3.1.0</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.1.3.html">GitHub statistics for 3.1.3 (Feb 03, 2020)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.1.2.html">GitHub statistics for 3.1.2 (Nov 21, 2019)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.1.1.html">GitHub statistics for 3.1.1 (Jul 02, 2019)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.1.0.html">GitHub statistics for 3.1.0 (May 18, 2019)</a></li>
</ul>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/whats_new_3.0.html">What's new in Matplotlib 3.0 (Sep 18, 2018)</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_3.0.1.html">API Changes for 3.0.1</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_3.0.0.html">API Changes for 3.0.0</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.0.3.html">GitHub statistics for 3.0.3 (Feb 28, 2019)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.0.2.html">GitHub statistics for 3.0.2 (Nov 10, 2018)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.0.1.html">GitHub statistics for 3.0.1 (Oct 25, 2018)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.0.0.html">GitHub statistics for 3.0.0 (Sep 18, 2018)</a></li>
</ul>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/whats_new_2.2.html">What's new in Matplotlib 2.2 (Mar 06, 2018)</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_2.2.0.html">API Changes in 2.2.0</a></li>
</ul>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/whats_new_2.1.0.html">What's new in Matplotlib 2.1.0 (Oct 7, 2017)</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_2.1.2.html">API Changes in 2.1.2</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_2.1.1.html">API Changes in 2.1.1</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_2.1.0.html">API Changes in 2.1.0</a></li>
</ul>
<ul class="nav bd-sidenav">
<li class="toctree-l1 has-children"><a class="reference internal" href="prev_whats_new/whats_new_2.0.0.html">What's new in Matplotlib 2.0 (Jan 17, 2017)</a><input class="toctree-checkbox" id="toctree-checkbox-10" name="toctree-checkbox-10" type="checkbox"/><label class="toctree-toggle" for="toctree-checkbox-10"><i class="fa-solid fa-chevron-down"></i></label><ul>
<li class="toctree-l2"><a class="reference internal" href="prev_whats_new/dflt_style_changes.html">Changes to the default style</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_2.0.1.html">API Changes in 2.0.1</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_2.0.0.html">API Changes in 2.0.0</a></li>
</ul>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/whats_new_1.5.html">What's new in Matplotlib 1.5 (Oct 29, 2015)</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_1.5.3.html">API Changes in 1.5.3</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_1.5.2.html">API Changes in 1.5.2</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_1.5.0.html">API Changes in 1.5.0</a></li>
</ul>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/whats_new_1.4.html">What's new in Matplotlib 1.4 (Aug 25, 2014)</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_1.4.x.html">API Changes in 1.4.x</a></li>
</ul>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/whats_new_1.3.html">What's new in Matplotlib 1.3 (Aug 01, 2013)</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_1.3.x.html">API Changes in 1.3.x</a></li>
</ul>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/whats_new_1.2.2.html">What's new in Matplotlib 1.2.2</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/whats_new_1.2.html">What's new in Matplotlib 1.2 (Nov 9, 2012)</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_1.2.x.html">API Changes in 1.2.x</a></li>
</ul>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/whats_new_1.1.html">What's new in Matplotlib 1.1 (Nov 02, 2011)</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_1.1.x.html">API Changes in 1.1.x</a></li>
</ul>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/whats_new_1.0.html">What's new in Matplotlib 1.0 (Jul 06, 2010)</a></li>
</ul>
<ul class="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/changelog.html">List of changes to Matplotlib prior to 2015</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/whats_new_0.99.html">What's new in Matplotlib 0.99 (Aug 29, 2009)</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.99.x.html">Changes beyond 0.99.x</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.99.html">Changes in 0.99</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/whats_new_0.98.4.html">What's new in Matplotlib 0.98.4</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.98.x.html">Changes for 0.98.x</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.98.1.html">Changes for 0.98.1</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.98.0.html">Changes for 0.98.0</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.91.2.html">Changes for 0.91.2</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.91.0.html">Changes for 0.91.0</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.90.1.html">Changes for 0.90.1</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.90.0.html">Changes for 0.90.0</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.87.7.html">Changes for 0.87.7</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.86.html">Changes for 0.86</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.85.html">Changes for 0.85</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.84.html">Changes for 0.84</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.83.html">Changes for 0.83</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.82.html">Changes for 0.82</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.81.html">Changes for 0.81</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.80.html">Changes for 0.80</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.73.html">Changes for 0.73</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.72.html">Changes for 0.72</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.71.html">Changes for 0.71</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.70.html">Changes for 0.70</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.65.1.html">Changes for 0.65.1</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.65.html">Changes for 0.65</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.63.html">Changes for 0.63</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.61.html">Changes for 0.61</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.60.html">Changes for 0.60</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.54.3.html">Changes for 0.54.3</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.54.html">Changes for 0.54</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.50.html">Changes for 0.50</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.42.html">Changes for 0.42</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api/prev_api_changes/api_changes_0.40.html">Changes for 0.40</a></li>
</ul>
</div>
</nav>
</div>
</div>
<div class="sidebar-end-items sidebar-primary__section">
<div class="sidebar-end-items__item">
</div>
</div>
<div id="rtd-footer-container"></div>
</div>
<main id="main-content" class="bd-main">
<div class="bd-content">
<div class="bd-article-container">
<div class="bd-header-article">
</div>
<article class="bd-article" role="main">
<section id="github-statistics-feb-13-2023">
<span id="github-stats"></span><h1>GitHub statistics (Feb 13, 2023)<a class="headerlink" href="#github-statistics-feb-13-2023" title="Permalink to this heading">#</a></h1>
<p>GitHub statistics for 2022/09/16 (tag: v3.6.0) - 2023/02/13</p>
<p>These lists are automatically generated, and may be incomplete or contain duplicates.</p>
<p>We closed 120 issues and merged 427 pull requests.
The full list can be seen <a class="reference external" href="https://github.com/matplotlib/matplotlib/milestone/70?closed=1">on GitHub</a></p>
<p>The following 112 authors contributed 1962 commits.</p>
<ul class="simple">
<li><p>Abhijnan Bajpai</p></li>
<li><p>Adrien F. Vincent</p></li>
<li><p>Ahoy Ahoy</p></li>
<li><p>Akshit Tyagi</p></li>
<li><p>Ali Meshkat</p></li>
<li><p>Almar Klein</p></li>
<li><p>Andrés Martínez</p></li>
<li><p>Ante Sikic</p></li>
<li><p>Antony Lee</p></li>
<li><p>Augustin LAVILLE</p></li>
<li><p>baharev</p></li>
<li><p>cargobuild</p></li>
<li><p>Carsten Schnober</p></li>
<li><p>Chahak Mehta</p></li>
<li><p>Charisma Kausar</p></li>
<li><p>David Stansby</p></li>
<li><p>dependabot[bot]</p></li>
<li><p>DerWeh</p></li>
<li><p>Eero Vaher</p></li>
<li><p>Elliott Sales de Andrade</p></li>
<li><p>Eric Larson</p></li>
<li><p>Eric Prestat</p></li>
<li><p>erykoff</p></li>
<li><p>EunHo Lee</p></li>
<li><p>Felix Goudreault</p></li>
<li><p>Greg Lucas</p></li>
<li><p>hannah</p></li>
<li><p>Ian Hunt-Isaak</p></li>
<li><p>Ian Thomas</p></li>
<li><p>intellizEHL</p></li>
<li><p>iofall</p></li>
<li><p>j1642</p></li>
<li><p>jacoverster</p></li>
<li><p>Jae-Joon Lee</p></li>
<li><p>Jakub Klus</p></li>
<li><p>James Braza</p></li>
<li><p>Jay Stanley</p></li>
<li><p>Jef Myers</p></li>
<li><p>jeffreypaul15</p></li>
<li><p>Jefro</p></li>
<li><p>Jody Klymak</p></li>
<li><p>John Paul Jepko</p></li>
<li><p>Joseph Fox-Rabinovitz</p></li>
<li><p>Joshua Barrass</p></li>
<li><p>Julian Chen</p></li>
<li><p>Junaid Khan</p></li>
<li><p>Justin Tracey</p></li>
<li><p>Kaidong Hu</p></li>
<li><p>Kanza</p></li>
<li><p>Karan</p></li>
<li><p>Kian Eliasi</p></li>
<li><p>kolibril13</p></li>
<li><p>Kostya Farber</p></li>
<li><p>Krutarth Patel</p></li>
<li><p>Kyle Sunden</p></li>
<li><p>Leo Singer</p></li>
<li><p>Lucas Ricci</p></li>
<li><p>luke</p></li>
<li><p>Marc Van den Bossche</p></li>
<li><p>Martok</p></li>
<li><p>Marvvxi</p></li>
<li><p>Matthew Feickert</p></li>
<li><p>Mauricio Collares</p></li>
<li><p>MeeseeksMachine</p></li>
<li><p>melissawm</p></li>
<li><p>Mikhail Ryazanov</p></li>
<li><p>Muhammad Abdur Rakib</p></li>
<li><p>noatamir</p></li>
<li><p>NRaudseps</p></li>
<li><p>Olivier Castany</p></li>
<li><p>Oscar Gustafsson</p></li>
<li><p>parthpankajtiwary</p></li>
<li><p>Paul Seyfert</p></li>
<li><p>Pavel Grunt</p></li>
<li><p>Pieter Eendebak</p></li>
<li><p>PIotr Strzelczyk</p></li>
<li><p>Pratim Ugale</p></li>
<li><p>pre-commit-ci[bot]</p></li>
<li><p>ramvikrams</p></li>
<li><p>richardsheridan</p></li>
<li><p>Ruth Comer</p></li>
<li><p>Ryan May</p></li>
<li><p>saranti</p></li>
<li><p>Scott Shambaugh</p></li>
<li><p>Shabnam Sadegh</p></li>
<li><p>Shawn Zhong</p></li>
<li><p>Simon Waldherr</p></li>
<li><p>Skhaki18</p></li>
<li><p>slackline</p></li>
<li><p>Snipeur060</p></li>
<li><p>Sourajita Dewasi</p></li>
<li><p>SourajitaDewasi</p></li>
<li><p>Stefanie Molin</p></li>
<li><p>Steffen Rehberg</p></li>
<li><p>Sven Eschlbeck</p></li>
<li><p>sveneschlbeck</p></li>
<li><p>takimata</p></li>
<li><p>tfpf</p></li>
<li><p>Thomas A Caswell</p></li>
<li><p>Tiger Nie</p></li>
<li><p>Tim Hoffmann</p></li>
<li><p>Tom</p></li>
<li><p>Tortar</p></li>
<li><p>tsumli</p></li>
<li><p>tybeller</p></li>
<li><p>vdbma</p></li>
<li><p>Vishal Pankaj Chandratreya</p></li>
<li><p>vivekvedant</p></li>
<li><p>whyvra</p></li>
<li><p>yuanx749</p></li>
<li><p>zhizheng1</p></li>
<li><p>مهدي شينون (Mehdi Chinoune)</p></li>
</ul>
<p>GitHub issues and pull requests:</p>
<p>Pull Requests (427):</p>
<ul class="simple">
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25201/">PR #25201</a>: Backport PR #25196 on branch v3.7.x (Add deprecation for setting data with non sequence type in <code class="docutils literal notranslate"><span class="pre">Line2D</span></code>)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25196/">PR #25196</a>: Add deprecation for setting data with non sequence type in <code class="docutils literal notranslate"><span class="pre">Line2D</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25197/">PR #25197</a>: Backport PR #25193 on branch v3.7.x (Fix displacement of colorbar for eps with bbox_inches='tight')</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25193/">PR #25193</a>: Fix displacement of colorbar for eps with bbox_inches='tight'</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24781/">PR #24781</a>: DOC: restore SHA to footer</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25188/">PR #25188</a>: Backport PR #25085 on branch v3.7.x (FIX: only try to update blit caches if the canvas we expect)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25170/">PR #25170</a>: Backport PR #25097 on branch v3.7.x (fix FigureCanvasTkAgg memory leak via weakrefs)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25186/">PR #25186</a>: Backport PR #24893 on branch v3.7.x (STY: make allowed line length 9 longer to 88 from 79)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25185/">PR #25185</a>: Backport PR #25183 on branch v3.7.x (FIX: do not use deprecated API internally)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25184/">PR #25184</a>: Backport PR #25174 on branch v3.7.x (Accept LA icons for the toolbar)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25085/">PR #25085</a>: FIX: only try to update blit caches if the canvas we expect</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25183/">PR #25183</a>: FIX: do not use deprecated API internally</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25182/">PR #25182</a>: Backport PR #25052 on branch v3.7.x (Support both Bbox and list for bbox to table/Table)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25174/">PR #25174</a>: Accept LA icons for the toolbar</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25052/">PR #25052</a>: Support both Bbox and list for bbox to table/Table</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25095/">PR #25095</a>: Backport PR #23442 on branch v3.7.x (Remove need to detect math mode in pgf strings)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25097/">PR #25097</a>: fix FigureCanvasTkAgg memory leak via weakrefs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25167/">PR #25167</a>: Backport PR #25122 on branch v3.7.x (FIX: scaling factor for window with negative value)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25122/">PR #25122</a>: FIX: scaling factor for window with negative value</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25161/">PR #25161</a>: Backport PR #25158 on branch v3.7.x (Disconnect SubplotTool destroyer callback on tool_fig close)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25160/">PR #25160</a>: Backport PR #25129 on branch v3.7.x (Undeprecate Cursor event handlers)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25158/">PR #25158</a>: Disconnect SubplotTool destroyer callback on tool_fig close</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25129/">PR #25129</a>: Undeprecate Cursor event handlers</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25154/">PR #25154</a>: Backport PR #25151 on branch v3.7.x (Increase timeout to GitHub API)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25151/">PR #25151</a>: Increase timeout to GitHub API</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25136/">PR #25136</a>: Backport PR #25126 on branch v3.7.x (FIX: fully invalidate TransformWrapper parents before swapping)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25132/">PR #25132</a>: Backport PR #24993 on branch v3.7.x ([DOC] GitHub spelling and links)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25126/">PR #25126</a>: FIX: fully invalidate TransformWrapper parents before swapping</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24993/">PR #24993</a>: [DOC] GitHub spelling and links</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25118/">PR #25118</a>: Backport PR #25113 on branch v3.7.x (Fix outdated comment re: _update_label_position.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25113/">PR #25113</a>: Fix outdated comment re: _update_label_position.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25111/">PR #25111</a>: Backport PR #25110 on branch v3.7.x (Stop recommending <code class="docutils literal notranslate"><span class="pre">ncol</span></code> in legend examples)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25110/">PR #25110</a>: Stop recommending <code class="docutils literal notranslate"><span class="pre">ncol</span></code> in legend examples</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25106/">PR #25106</a>: Fix cursor_demo wrt. Line2D.set_x/ydata not accepting scalars anymore.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25103/">PR #25103</a>: Backport PR #25098 on branch v3.7.x (Correctly pass valinit as keyword in SliderTool.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25098/">PR #25098</a>: Correctly pass valinit as keyword in SliderTool.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/23442/">PR #23442</a>: Remove need to detect math mode in pgf strings</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25093/">PR #25093</a>: Backport PR #25092 on branch v3.7.x (Fix distribution of test data)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24893/">PR #24893</a>: STY: make allowed line length 9 longer to 88 from 79</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25092/">PR #25092</a>: Fix distribution of test data</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25089/">PR #25089</a>: Backport PR #25088 on branch v3.7.x (DOC: Fix broken cross-reference when building PDF)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25088/">PR #25088</a>: DOC: Fix broken cross-reference when building PDF</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25083/">PR #25083</a>: Backport PR #25074 on branch v3.7.x (Revert "Use system distutils instead of the setuptools copy")</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25082/">PR #25082</a>: Backport PR #25079 on branch v3.7.x (FIX: Only send one update signal when autoscaling norms)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25084/">PR #25084</a>: DOC: Fix typos in GitHub stats</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25074/">PR #25074</a>: Revert "Use system distutils instead of the setuptools copy"</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25079/">PR #25079</a>: FIX: Only send one update signal when autoscaling norms</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25072/">PR #25072</a>: Merge v3.6.x into v3.7.x</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25071/">PR #25071</a>: Backport PR #25039 on branch v3.7.x (Updated WebAgg JS to check and send request over wss if using HTTPS)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25039/">PR #25039</a>: Updated WebAgg JS to check and send request over wss if using HTTPS</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25070/">PR #25070</a>: Backport PR #25058 on branch v3.7.x (fix for pcolormesh doesn't allow shading = 'flat' in the option)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25058/">PR #25058</a>: fix for pcolormesh doesn't allow shading = 'flat' in the option</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25067/">PR #25067</a>: Backport PR #25054 on branch v3.7.x (Remove note that mathtext.fontset = "custom" is unsupported.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25066/">PR #25066</a>: Backport PR #24999 on branch v3.7.x (DOC: figure explanation)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25054/">PR #25054</a>: Remove note that mathtext.fontset = "custom" is unsupported.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25065/">PR #25065</a>: Backport PR #24838 on branch v3.7.x (Add styling support to Check and Radio buttons )</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24999/">PR #24999</a>: DOC: figure explanation</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24838/">PR #24838</a>: Add styling support to Check and Radio buttons</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25056/">PR #25056</a>: Backport PR #25055 on branch v3.7.x (Reword awkward sentence in FAQ.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25055/">PR #25055</a>: Reword awkward sentence in FAQ.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25049/">PR #25049</a>: Backport PR #25047 on branch v3.7.x (Remove dead code from deprecated-and-removed block)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25047/">PR #25047</a>: Remove dead code from deprecated-and-removed block</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25037/">PR #25037</a>: Backport PR #25018 on branch v3.7.x (Simplify "artist reference" example.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25018/">PR #25018</a>: Simplify "artist reference" example.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25034/">PR #25034</a>: Backport PR #24812 on branch v3.7.x ([Doc] expanded basic pie example)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24812/">PR #24812</a>: [Doc] expanded basic pie example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25029/">PR #25029</a>: Backport PR #25019 on branch v3.7.x (Tweak titles pyplot examples.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25019/">PR #25019</a>: Tweak titles pyplot examples.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25026/">PR #25026</a>: Backport PR #25017 on branch v3.7.x (Capitalize headings in example Gallery)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25017/">PR #25017</a>: Capitalize headings in example Gallery</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25010/">PR #25010</a>: Backport PR #24989 on branch v3.7.x (Suppress pyparsing warning)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25008/">PR #25008</a>: Backport PR #25004 on branch v3.7.x (Bump pypa/cibuildwheel from 2.11.4 to 2.12.0)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24989/">PR #24989</a>: Suppress pyparsing warning</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25004/">PR #25004</a>: Bump pypa/cibuildwheel from 2.11.4 to 2.12.0</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25001/">PR #25001</a>: Backport PR #25000 on branch v3.7.x (Update matplotlibrc urls)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25000/">PR #25000</a>: Update matplotlibrc urls</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24977/">PR #24977</a>: Backport PR #24970 on branch v3.7.x (FIX: Handle uint8 indices properly for colormap lookups)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24970/">PR #24970</a>: FIX: Handle uint8 indices properly for colormap lookups</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24975/">PR #24975</a>: Backport PR #24971 on branch v3.7.x (FIX: adjust_bbox should not modify layout engine)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24974/">PR #24974</a>: Backport PR #24973 on branch v3.7.x (MNT: Fix double % signs in matplotlibrc)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24966/">PR #24966</a>: Backport PR #24965 on branch v3.7.x (Remove additional deprecations from 3.5)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24971/">PR #24971</a>: FIX: adjust_bbox should not modify layout engine</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24973/">PR #24973</a>: MNT: Fix double % signs in matplotlibrc</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24965/">PR #24965</a>: Remove additional deprecations from 3.5</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24963/">PR #24963</a>: Backport PR #24912 on branch v3.7.x (Remove contour warning for "no-valid-levels".)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24962/">PR #24962</a>: Backport PR #24957 on branch v3.7.x (DOC: Enable Opensearch)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24961/">PR #24961</a>: Backport PR #24948 on branch v3.7.x (Remove remaining deprecations from 3.5)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24959/">PR #24959</a>: Backport PR #24254 on branch v3.7.x (Expire deprecations in widgets and keyword only arguments for Selectors)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24912/">PR #24912</a>: Remove contour warning for "no-valid-levels".</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24960/">PR #24960</a>: Backport PR #24825 on branch v3.7.x (Allow non-default scales on polar axes)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24957/">PR #24957</a>: DOC: Enable Opensearch</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24948/">PR #24948</a>: Remove remaining deprecations from 3.5</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24825/">PR #24825</a>: Allow non-default scales on polar axes</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24254/">PR #24254</a>: Expire deprecations in widgets and keyword only arguments for Selectors</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24956/">PR #24956</a>: Backport PR #24955 on branch v3.7.x (Cleanup bullseye plot example.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24955/">PR #24955</a>: Cleanup bullseye plot example.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24949/">PR #24949</a>: Backport PR #24918 on branch v3.7.x (DOC: animation faster)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24947/">PR #24947</a>: Auto backport of pr 24897 on v3.7.x</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24945/">PR #24945</a>: Backport PR #24940 on branch v3.7.x ([MNT] specify which gallery sections come last)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24918/">PR #24918</a>: DOC: animation faster</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24917/">PR #24917</a>: Backport PR #24897: DOC: Add ref for every under examples/animation</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24940/">PR #24940</a>: [MNT] specify which gallery sections come last</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24941/">PR #24941</a>: Backport PR #24655 on branch v3.7.x (Update font_manager to only use registry on Win)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24655/">PR #24655</a>: Update font_manager to only use registry on Win</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24937/">PR #24937</a>: Backport PR #24470 on branch v3.7.x ([ENH] hatch keyword for pie + some pie documentation)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24938/">PR #24938</a>: Backport PR #23390 on branch v3.7.x (FIX: colorbar contour with log norm should default to log locator and formatter...)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24935/">PR #24935</a>: Backport PR #24934 on branch v3.7.x (Swap ipython directives for code-block directives)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24470/">PR #24470</a>: [ENH] hatch keyword for pie + some pie documentation</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24933/">PR #24933</a>: Backport PR #24924 on branch v3.7.x (Fix toggling layout engines)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24934/">PR #24934</a>: Swap ipython directives for code-block directives</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24931/">PR #24931</a>: Backport PR #24783 on branch v3.7.x (inset locator fix with tests added)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24924/">PR #24924</a>: Fix toggling layout engines</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24928/">PR #24928</a>: Backport PR #24927 on branch v3.7.x (DOC: Remove space after directive name, before double-colon)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24926/">PR #24926</a>: Backport PR #24925 on branch v3.7.x (DOC: Improve documentation for set_loglevel)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24925/">PR #24925</a>: DOC: Improve documentation for set_loglevel</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24922/">PR #24922</a>: Backport PR #24921 on branch v3.7.x (Pin sphinx != 6.1.2)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24921/">PR #24921</a>: Pin sphinx != 6.1.2</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24911/">PR #24911</a>: Backport PR #24904 on branch v3.7.x (Deprecate AxisArtistHelpers with inconsistent loc/nth_coord.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24897/">PR #24897</a>: DOC: Add ref for every under examples/animation</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24904/">PR #24904</a>: Deprecate AxisArtistHelpers with inconsistent loc/nth_coord.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/22314/">PR #22314</a>: Add a helper to generate xy coordinates for AxisArtistHelper.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24841/">PR #24841</a>: changed method in animation tutorial table of methods</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24902/">PR #24902</a>: Remove provisional note from pyplot.subplot_mosaic</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24891/">PR #24891</a>: DOC: mark mosaic as no longer provisional</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24889/">PR #24889</a>: Harmonize exceptions for unknown keyword arguments.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24085/">PR #24085</a>: Set facecolor of FilledArrow axisline style and fix tight layout</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19743/">PR #19743</a>: ENH: allow fig.legend outside axes...</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24887/">PR #24887</a>: [MNT] Bump NumPy to 1.20</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24896/">PR #24896</a>: changed contribute docs link to writing docs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24894/">PR #24894</a>: DOC: explain clipbox a bit better</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24864/">PR #24864</a>: Deprecate BrokenBarHCollection.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24869/">PR #24869</a>: Skip displaying pan/zoom navigate mode in toolbar.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24892/">PR #24892</a>: FIX: error in formatting in error string in redirect extension</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24895/">PR #24895</a>: add new & improved doc notices to what's new</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24888/">PR #24888</a>: update install instructions for conda</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24886/">PR #24886</a>: CI: rotate the circleci deploy key</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24879/">PR #24879</a>: Document "." as a filled marker.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24870/">PR #24870</a>: Better default bool contour levels.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24786/">PR #24786</a>: Increase a few test tolerances on some arches</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24863/">PR #24863</a>: Add parameter doc to PolarTransform</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24845/">PR #24845</a>: Fix toggling of MultiCursor.{horizOn,vertOn}</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24862/">PR #24862</a>: Fix argument checking in <code class="docutils literal notranslate"><span class="pre">Axes3D.quiver</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24868/">PR #24868</a>: [pre-commit.ci] pre-commit autoupdate</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24840/">PR #24840</a>: Simplify/robustify segment-point distance calculation.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24850/">PR #24850</a>: Improve PolarAffine docstring</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24851/">PR #24851</a>: Variable rename t > theta</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24763/">PR #24763</a>: Allow polar scales where zero is not in valid interval</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24846/">PR #24846</a>: Promote pending cm deprecations to full deprecations</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24848/">PR #24848</a>: <code class="docutils literal notranslate"><span class="pre">Collection.set_linestyle</span></code>: remove redundant string handling</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24839/">PR #24839</a>: Move geo/polar projections to their own pages</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24727/">PR #24727</a>: Handle argument "facecolors=None" correctly in plot_surface()</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24847/">PR #24847</a>: Avoid extra copy initializing empty Affine2D</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24837/">PR #24837</a>: DOC: Replace .format by f-strings in examples</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24604/">PR #24604</a>: Enh/extend mosaic kwargs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24131/">PR #24131</a>: Deprecate attributes and expire deprecation in animation</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/23457/">PR #23457</a>: Add blitting support to button widgets</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24832/">PR #24832</a>: [MNT] Improve variable naming in bar</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24829/">PR #24829</a>: Simplify shape-checking in QuadMesh.set_array.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24835/">PR #24835</a>: Delay nightly wheel builds by 2 hours</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24831/">PR #24831</a>: [Doc] Fix ndarray-links for arguments</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24824/">PR #24824</a>: Fix incorrect method in doc</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24826/">PR #24826</a>: space in version added for reverse in legend</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24819/">PR #24819</a>: Bump pypa/cibuildwheel from 2.11.3 to 2.11.4</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24811/">PR #24811</a>: removed casting handles to list in legend</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24759/">PR #24759</a>: Reverse legend</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24465/">PR #24465</a>: Reparametrize offsetbox calculations in terms of bboxes.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/22316/">PR #22316</a>: Arbitrary figure customization hooks.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/22329/">PR #22329</a>: Enforce that Line data modifications are sequences</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24730/">PR #24730</a>: Data access API for rcParams</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24699/">PR #24699</a>: Implement nested four-level TeX cache</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24752/">PR #24752</a>: DOC: Make event handling table scrollable</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24637/">PR #24637</a>: Fixes #20044 pass AnnotationBbox to renderer</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24810/">PR #24810</a>: Don't modify dictionary input to widgets</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24769/">PR #24769</a>: Improve matplotlib.axes documentation</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24806/">PR #24806</a>: Deprecate 'x' argument for widgets.TextBox.begin_typing</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24293/">PR #24293</a>: Handle rasterization start & stop only from Artist</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24768/">PR #24768</a>: Fix/zorder rasterization</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24474/">PR #24474</a>: Use scatter for check boxes and set facecolors correctly in check boxes and radio buttons</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24262/">PR #24262</a>: Fix issue with space allocated for single tick that should not be there</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24780/">PR #24780</a>: Update environment.yml</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/23576/">PR #23576</a>: Soft deprecate the textpath module (import from text instead)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24750/">PR #24750</a>: Fix deprecations of *Cursor widget event handlers</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24757/">PR #24757</a>: Allow using masked in <code class="docutils literal notranslate"><span class="pre">set_offsets</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/21661/">PR #21661</a>: Fix plot directive with func calls</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24803/">PR #24803</a>: Correct type in docstring of zorder for streamplot and LineCollection</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24801/">PR #24801</a>: Correct docstring of RangeSlider.on_changed</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24802/">PR #24802</a>: Correct docstring of CheckButtons.get_status</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24758/">PR #24758</a>: MNT: Simplify code related to masked arrays</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24756/">PR #24756</a>: DOC: Simplify some table markup</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24795/">PR #24795</a>: DOC: Fix duplicate redirect</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24782/">PR #24782</a>: DOC: update typos and grammar errors</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24794/">PR #24794</a>: Update README.md</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24071/">PR #24071</a>: Deprecate undefined label_mode to Grid</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24724/">PR #24724</a>: Run delvewheel on Windows for wheels</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24538/">PR #24538</a>: [Doc] Document legend_handles and legend_handlers</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24751/">PR #24751</a>: DOC: Update Artist inheritance diagram</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24761/">PR #24761</a>: Don't set the never-used Line2D._contains in set_picker.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24760/">PR #24760</a>: Remove unused dicts from backend_cairo.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24736/">PR #24736</a>: DOC: simplify CheckButton example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/22700/">PR #22700</a>: MAINT: Move docstring of <code class="docutils literal notranslate"><span class="pre">LogLocator</span></code> to class</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19763/">PR #19763</a>: Remove visibility changes in draw for *Cursor widgets</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/23473/">PR #23473</a>: Separately track modifier keys for mouse events.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24748/">PR #24748</a>: DOC: remove research notice</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24734/">PR #24734</a>: Support masked dates</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24737/">PR #24737</a>: MNT: make fig.colorbar(..., ax=INPUT) even more forgiving</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24120/">PR #24120</a>: don't try to start a new event loop in WebAgg when in an ipykernel</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24362/">PR #24362</a>: Allow bool-like values for sharex/sharey</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24740/">PR #24740</a>: Minor redundancy cleanup of code which sets 3D aspect 3D</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/22273/">PR #22273</a>: Improve inheritance diagrams</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24668/">PR #24668</a>: Add test for remaining axis options</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/9598/">PR #9598</a>: ENH: rely on non-rectangular patch paths rather than bboxes for legend auto-placing (fix #9580)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/22920/">PR #22920</a>: Mnt deprecate mlab</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24408/">PR #24408</a>: Fix: restore make_axes to accept a tuple of axes</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24731/">PR #24731</a>: DOC: Post warnings as reviews on PRs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24652/">PR #24652</a>: Offsetbox default arguments</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24720/">PR #24720</a>: FIX: be more forgiving in default draw wrapper</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24719/">PR #24719</a>: Remove quotes from EngFormatter.format_eng example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24718/">PR #24718</a>: Remove refresh function from polar ThetaLocator</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24710/">PR #24710</a>: Drop support for Qt<5.10.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24509/">PR #24509</a>: Factor out & improve accuracy of derivatives calculations in axisartist.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/19591/">PR #19591</a>: reverse order in which stackplot elements are added to axes</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24367/">PR #24367</a>: STY: Update macosx zoom rect styling</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24706/">PR #24706</a>: Bump pypa/cibuildwheel from 2.11.2 to 2.11.3</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24705/">PR #24705</a>: Cleanup a few examples.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/21096/">PR #21096</a>: FIX: improve symlog ticker</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24498/">PR #24498</a>: DOC: Update multiple category bar chart examples</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24688/">PR #24688</a>: Deprecate quiver_doc and barbs_doc class members</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24526/">PR #24526</a>: [Doc] Fix spelling and grammar in tutorials</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24675/">PR #24675</a>: TST: set style in mpl_toolkits to ease later transition</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24484/">PR #24484</a>: Artist's draw method prevents rasterization by default</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24667/">PR #24667</a>: Test scroll zoom bbox update</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24662/">PR #24662</a>: Doc/git force</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24664/">PR #24664</a>: Deprecate offsetbox.bbox_artist</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24670/">PR #24670</a>: Tiny capitalization fix.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24596/">PR #24596</a>: ENH: Add ellipse class for annotation box styles</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24249/">PR #24249</a>: Add legend tests for 3D plots</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24627/">PR #24627</a>: MNT: when clearing an Axes via clear/cla fully detach children</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24653/">PR #24653</a>: Directly call _long_axis()._set_axes_scale in Colorbar.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24640/">PR #24640</a>: Small TransformWrapper cleanups.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24528/">PR #24528</a>: BUG: Warn when an existing layout manager changes to tight layout</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24635/">PR #24635</a>: Remove unneeded _update_transScale calls in _init_axis.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24641/">PR #24641</a>: Fix that font files never pass the test on Win</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24522/">PR #24522</a>: Use pybind11 for tri module</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24603/">PR #24603</a>: Shorten the definition of sawtooth boxstyle.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24630/">PR #24630</a>: Improve error message for gridspec when the index is not an integer.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24634/">PR #24634</a>: Init axes._children early enough to avoid need for some getattr calls.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24629/">PR #24629</a>: Doc/gitwash redirects</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24624/">PR #24624</a>: Expire FancyBboxPatch deprecations.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24619/">PR #24619</a>: ENH: Allow RGB(A) arrays for pcolormesh</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/23588/">PR #23588</a>: Refactoring gitwash</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/21549/">PR #21549</a>: Unifying the Figure getter/setter interface to match its constructor</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24582/">PR #24582</a>: Shorten demo_axes_grid example.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24577/">PR #24577</a>: Fold _set_ticklabels into set_ticklabels.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24581/">PR #24581</a>: Simplify implementation of _is_sorted.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24575/">PR #24575</a>: Use std::isnan and fix compiler warning</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24570/">PR #24570</a>: FIX: VPacker and HPacker bottom/top alignment</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/23812/">PR #23812</a>: Ci add codeql</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24556/">PR #24556</a>: Fix incorrect window_extent of AxesImage</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24566/">PR #24566</a>: Improve argument checking for set_xticks().</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24544/">PR #24544</a>: DOC: Add links to supported file formats in animations tutorial</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24511/">PR #24511</a>: Add test for mutating input arrays #8990</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24558/">PR #24558</a>: In mplot3d, fix a doc typo and autogen zaxis_inverted.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24555/">PR #24555</a>: ENH: Add warning for SymLogScale when values in linear scale range</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/23417/">PR #23417</a>: Consistently set label on axis with units</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24542/">PR #24542</a>: DOC: Clarify supported animation formats in animation tutorial</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/23685/">PR #23685</a>: Add mathtext support for <code class="docutils literal notranslate"><span class="pre">\middle</span></code> and correct rendering of <code class="docutils literal notranslate"><span class="pre">\|</span></code></p></li>