-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathgithub_stats.html
More file actions
1624 lines (1427 loc) · 175 KB
/
github_stats.html
File metadata and controls
1624 lines (1427 loc) · 175 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="viewport" content="width=device-width, initial-scale=1" />
<title>GitHub statistics for 3.8.0 (Sep 14, 2023) — Matplotlib 3.8.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=e353d410970836974a52" rel="stylesheet" />
<link href="../_static/styles/bootstrap.css?digest=e353d410970836974a52" rel="stylesheet" />
<link href="../_static/styles/pydata-sphinx-theme.css?digest=e353d410970836974a52" rel="stylesheet" />
<link href="../_static/vendor/fontawesome/6.1.2/css/all.min.css?digest=e353d410970836974a52" 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?v=fa44fd50" />
<link rel="stylesheet" type="text/css" href="../_static/css/style.css?v=86e00652" />
<link rel="stylesheet" type="text/css" href="../_static/graphviz.css?v=eafc0fe6" />
<link rel="stylesheet" type="text/css" href="../_static/plot_directive.css" />
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css?v=76b2166b" />
<link rel="stylesheet" type="text/css" href="../_static/sg_gallery.css?v=61a4c737" />
<link rel="stylesheet" type="text/css" href="../_static/sg_gallery-binder.css?v=f4aeca0c" />
<link rel="stylesheet" type="text/css" href="../_static/sg_gallery-dataframe.css?v=2082cf3c" />
<link rel="stylesheet" type="text/css" href="../_static/sg_gallery-rendered-html.css?v=1277b6f3" />
<link rel="stylesheet" type="text/css" href="../_static/design-style.1e8bd061cd6da7fc9cf755528e8ffc24.min.css?v=0a3b3ea7" />
<link rel="stylesheet" type="text/css" href="../_static/mpl.css?v=a30b99b9" />
<!-- Pre-loaded scripts that we'll load fully later -->
<link rel="preload" as="script" href="../_static/scripts/bootstrap.js?digest=e353d410970836974a52" />
<link rel="preload" as="script" href="../_static/scripts/pydata-sphinx-theme.js?digest=e353d410970836974a52" />
<script src="../_static/documentation_options.js?v=fbaf77b0"></script>
<script src="../_static/doctools.js?v=888ff710"></script>
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
<script src="../_static/clipboard.min.js?v=a7894cd8"></script>
<script src="../_static/copybutton.js?v=ccdb6887"></script>
<script src="../_static/design-tabs.js?v=36754332"></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?v3.8.0-3-g3411279f04';
DOCUMENTATION_OPTIONS.theme_switcher_version_match = '3.8.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.8.0 documentation"
href="../_static/opensearch.xml"/>
<link rel="icon" href="../_static/favicon.ico"/>
<link rel="search" title="Search" href="../search.html" />
<link rel="next" title="GitHub statistics for 3.7.3 (Sep 11, 2023)" href="prev_whats_new/github_stats_3.7.3.html" />
<link rel="prev" title="Removal change template" href="../api/next_api_changes/removals/00001-ABC.html" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="docsearch:language" content="en"/>
</head>
<body data-bs-spy="scroll" data-bs-target=".bd-toc-nav" data-offset="180" data-bs-root-margin="0px 0px -60%" 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">
<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 class="navbar-header-items__start">
<div class="navbar-item">
<a class="navbar-brand logo" href="https://matplotlib.org/stable/">
<img src="../_static/logo_light.svg" class="logo__image only-light" alt="Logo image"/>
<script>document.write(`<img src="../_static/logo_dark.svg" class="logo__image only-dark" alt="Logo image"/>`);</script>
</a></div>
</div>
<div class="col-lg-9 navbar-header-items">
<div class="me-auto navbar-header-items__center">
<div class="navbar-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="index.html">User guide</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="../gallery/index.html">Examples</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="../devel/index.html">Contribute</a>
</li>
<li class="nav-item">
<a class="reference internal nav-link" href="release_notes.html">Releases</a>
</li>
</ul></div>
</div>
<div class="navbar-header-items__end">
<div class="navbar-item navbar-persistent--container">
<script>
document.write(`
<button class="btn btn-sm navbar-btn search-button search-button__button" title="Search" aria-label="Search" data-bs-placement="bottom" data-bs-toggle="tooltip">
<i class="fa-solid fa-magnifying-glass"></i>
</button>
`);
</script>
</div>
<div class="navbar-item">
<script>
document.write(`
<button class="theme-switch-button btn btn-sm btn-outline-primary navbar-btn rounded-circle" title="light/dark" aria-label="light/dark" data-bs-placement="bottom" data-bs-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>
`);
</script></div>
<div class="navbar-item">
<script>
document.write(`
<div class="version-switcher__container dropdown">
<button type="button" class="version-switcher__button btn btn-sm navbar-btn dropdown-toggle" data-bs-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>
`);
</script></div>
<div class="navbar-item"><ul class="navbar-icon-links 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-bs-toggle="tooltip" data-bs-placement="bottom"><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-bs-toggle="tooltip" data-bs-placement="bottom"><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-bs-toggle="tooltip" data-bs-placement="bottom"><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-bs-toggle="tooltip" data-bs-placement="bottom"><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">
<script>
document.write(`
<button class="btn btn-sm navbar-btn search-button search-button__button" title="Search" aria-label="Search" data-bs-placement="bottom" data-bs-toggle="tooltip">
<i class="fa-solid fa-magnifying-glass"></i>
</button>
`);
</script>
</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-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="index.html">User guide</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="../gallery/index.html">Examples</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="../devel/index.html">Contribute</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-item">
<script>
document.write(`
<button class="theme-switch-button btn btn-sm btn-outline-primary navbar-btn rounded-circle" title="light/dark" aria-label="light/dark" data-bs-placement="bottom" data-bs-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>
`);
</script></div>
<div class="navbar-item">
<script>
document.write(`
<div class="version-switcher__container dropdown">
<button type="button" class="version-switcher__button btn btn-sm navbar-btn dropdown-toggle" data-bs-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>
`);
</script></div>
<div class="navbar-item"><ul class="navbar-icon-links 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-bs-toggle="tooltip" data-bs-placement="bottom"><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-bs-toggle="tooltip" data-bs-placement="bottom"><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-bs-toggle="tooltip" data-bs-placement="bottom"><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-bs-toggle="tooltip" data-bs-placement="bottom"><span><i class="fa-brands fa-twitter"></i></span>
<label class="sr-only">Twitter</label></a>
</li>
</ul></div>
</div>
</div>
<div class="sidebar-primary-items__start sidebar-primary__section">
<div class="sidebar-primary-item"><nav class="bd-docs-nav bd-links"
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="nav bd-sidenav">
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.7.3.html">GitHub statistics for 3.7.3 (Sep 11, 2023)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.7.2.html">GitHub statistics for 3.7.2 (Jul 05, 2023)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.7.1.html">GitHub statistics for 3.7.1 (Mar 03, 2023)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.7.0.html">GitHub statistics for 3.7.0 (Feb 13, 2023)</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>
<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>
<li class="toctree-l1"><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-l1"><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-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>
<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>
<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>
<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>
<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>
</div>
</nav></div>
</div>
<div class="sidebar-primary-items__end sidebar-primary__section">
</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 class="header-article-items header-article__inner">
<div class="header-article-items__start">
<div class="header-article-item">
<nav aria-label="Breadcrumbs">
<ul class="bd-breadcrumbs" role="navigation" aria-label="Breadcrumb">
<li class="breadcrumb-item breadcrumb-home">
<a href="../index.html" class="nav-link" aria-label="Home">
<i class="fa-solid fa-home"></i>
</a>
</li>
<li class="breadcrumb-item"><a href="release_notes.html" class="nav-link">Release notes</a></li>
<li class="breadcrumb-item active" aria-current="page">GitHub statistics for 3.8.0 (Sep 14, 2023)</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
<div id="searchbox"></div>
<article class="bd-article" role="main">
<section id="github-statistics-for-3-8-0-sep-14-2023">
<span id="github-stats"></span><h1>GitHub statistics for 3.8.0 (Sep 14, 2023)<a class="headerlink" href="#github-statistics-for-3-8-0-sep-14-2023" title="Link to this heading">#</a></h1>
<p>GitHub statistics for 2023/02/13 (tag: v3.7.0) - 2023/09/14</p>
<p>These lists are automatically generated, and may be incomplete or contain duplicates.</p>
<p>We closed 185 issues and merged 649 pull requests.
The full list can be seen <a class="reference external" href="https://github.com/matplotlib/matplotlib/milestone/77?closed=1">on GitHub</a></p>
<p>The following 146 authors contributed 2914 commits.</p>
<ul class="simple">
<li><p>0xedl</p></li>
<li><p>Aalok Chhetri</p></li>
<li><p>Adam J. Stewart</p></li>
<li><p>Adam Turner</p></li>
<li><p>Albert Y. Shih</p></li>
<li><p>Alissa</p></li>
<li><p>Alissa Hodge</p></li>
<li><p>Almar Klein</p></li>
<li><p>Andreas Deininger</p></li>
<li><p>Antony Lee</p></li>
<li><p>Artem Shekhovtsov</p></li>
<li><p>Astra</p></li>
<li><p>Ben Root</p></li>
<li><p>Brandon Dusch</p></li>
<li><p>BuildTools</p></li>
<li><p>Caden Gobat</p></li>
<li><p>Chahak Mehta</p></li>
<li><p>Clément Robert</p></li>
<li><p>ColeBurch</p></li>
<li><p>Daniele Nicolodi</p></li>
<li><p>daniilS</p></li>
<li><p>David Kaméus</p></li>
<li><p>David Stansby</p></li>
<li><p>dependabot[bot]</p></li>
<li><p>Devilsaint</p></li>
<li><p>devRD</p></li>
<li><p>Dusch4593</p></li>
<li><p>DWesl</p></li>
<li><p>Eero Vaher</p></li>
<li><p>Elliott Sales de Andrade</p></li>
<li><p>Eric Firing</p></li>
<li><p>Eric Larson</p></li>
<li><p>Eric Prestat</p></li>
<li><p>Eric Wieser</p></li>
<li><p>Evgenii Radchenko</p></li>
<li><p>Fabian Joswig</p></li>
<li><p>Felix Goudreault</p></li>
<li><p>Gabriel Madeira</p></li>
<li><p>Gautam Sagar</p></li>
<li><p>Gokberk Gunes</p></li>
<li><p>Greg Lucas</p></li>
<li><p>Hai Zhu</p></li>
<li><p>hannah</p></li>
<li><p>Haojun Song</p></li>
<li><p>Hasan Rashid</p></li>
<li><p>haval0</p></li>
<li><p>Higgs32584</p></li>
<li><p>Ian Hunt-Isaak</p></li>
<li><p>Ian Thomas</p></li>
<li><p>II-Day-II</p></li>
<li><p>Irtaza Khalid</p></li>
<li><p>j1642</p></li>
<li><p>Jan-Hendrik Müller</p></li>
<li><p>Jarrod Millman</p></li>
<li><p>Jody Klymak</p></li>
<li><p>Johann Krauter</p></li>
<li><p>John Paul Jepko</p></li>
<li><p>Jonathan Wheeler</p></li>
<li><p>jsdodge</p></li>
<li><p>Julian Chen</p></li>
<li><p>kolibril13</p></li>
<li><p>krooijers</p></li>
<li><p>Kyle Sunden</p></li>
<li><p>Larry Bradley</p></li>
<li><p>LemonBoy</p></li>
<li><p>lganic</p></li>
<li><p>Lukas Schrangl</p></li>
<li><p>luke</p></li>
<li><p>marbled-toast</p></li>
<li><p>mariamalykh</p></li>
<li><p>Marisa Wong</p></li>
<li><p>Mateusz Sokół</p></li>
<li><p>Matt Newville</p></li>
<li><p>matt statham</p></li>
<li><p>Matthew Feickert</p></li>
<li><p>Matthew Morrison</p></li>
<li><p>Matthias Bussonnier</p></li>
<li><p>MeeseeksMachine</p></li>
<li><p>Melissa Weber Mendonça</p></li>
<li><p>melissawm</p></li>
<li><p>Michael Dittrich</p></li>
<li><p>Michael Higgins</p></li>
<li><p>Mubin Manasia</p></li>
<li><p>Mudassir Chapra</p></li>
<li><p>Niranjan</p></li>
<li><p>NISHANT KUMAR</p></li>
<li><p>Noy Hanan</p></li>
<li><p>Olin Johnson</p></li>
<li><p>Oscar Gustafsson</p></li>
<li><p>Pavel Zwerschke</p></li>
<li><p>Peter Cock</p></li>
<li><p>Petros Tzathas</p></li>
<li><p>Photoniker</p></li>
<li><p>photoniker</p></li>
<li><p>Pierre Haessig</p></li>
<li><p>Pieter Eendebak</p></li>
<li><p>Prajwal Agrawal</p></li>
<li><p>pre-commit-ci[bot]</p></li>
<li><p>priyanshi</p></li>
<li><p>Priyanshi Gaur</p></li>
<li><p>RadostW</p></li>
<li><p>Rahul Mohan</p></li>
<li><p>Ratnabali Dutta</p></li>
<li><p>rbt94</p></li>
<li><p>Richard Barnes</p></li>
<li><p>richardsheridan</p></li>
<li><p>RishabhSpark</p></li>
<li><p>Rob Righter</p></li>
<li><p>roberto.bodo</p></li>
<li><p>root</p></li>
<li><p>Ruth Comer</p></li>
<li><p>Sam</p></li>
<li><p>saranti</p></li>
<li><p>Scott Shambaugh</p></li>
<li><p>Shreeya Ramesh</p></li>
<li><p>Sia Ghelichkhan</p></li>
<li><p>Sigma-Verma</p></li>
<li><p>Smeet nagda</p></li>
<li><p>SnorfYang</p></li>
<li><p>Stefanie Molin</p></li>
<li><p>Steffen Rehberg</p></li>
<li><p>stevezhang</p></li>
<li><p>stevezhang1999</p></li>
<li><p>Talha Irfan</p></li>
<li><p>Thomas A Caswell</p></li>
<li><p>Thomas J. Fan</p></li>
<li><p>Tigran Khachatryan</p></li>
<li><p>Tim Hoffmann</p></li>
<li><p>Tom</p></li>
<li><p>Tom Sarantis</p></li>
<li><p>Tunç Başar Köse</p></li>
<li><p>Utkarsh Verma</p></li>
<li><p>vavanade</p></li>
<li><p>Vishal Pankaj Chandratreya</p></li>
<li><p>vivekvedant</p></li>
<li><p>vizzy_viz</p></li>
<li><p>Vladimir</p></li>
<li><p>Vladimir Ilievski</p></li>
<li><p>Waleed-Abdullah</p></li>
<li><p>weijili</p></li>
<li><p>whyvra</p></li>
<li><p>xtanion</p></li>
<li><p>Y.D.X</p></li>
<li><p>Yi Wei</p></li>
<li><p>yuzie007</p></li>
<li><p>渡邉 美希</p></li>
</ul>
<p>GitHub issues and pull requests:</p>
<p>Pull Requests (649):</p>
<ul class="simple">
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26777/">PR #26777</a>: Backport PR #26702 on branch v3.8.x (converted coc to rst and put links in code_of_conduct.md)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26775/">PR #26775</a>: Backport PR #26767 on branch v3.8.x (Trim Gouraud triangles that contain NaN)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26776/">PR #26776</a>: Backport PR #26687 on branch v3.8.x (Remove usage of recarray)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26702/">PR #26702</a>: converted coc to rst and put links in code_of_conduct.md</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26687/">PR #26687</a>: Remove usage of recarray</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26767/">PR #26767</a>: Trim Gouraud triangles that contain NaN</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26770/">PR #26770</a>: Backport PR #26762 on branch v3.8.x (MNT: Numpy 2.0 removals from ndarray class)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26762/">PR #26762</a>: MNT: Numpy 2.0 removals from ndarray class</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26769/">PR #26769</a>: DOC: Pin mpl-sphinx-theme to 3.8.x</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26768/">PR #26768</a>: Backport PR #26700 on branch v3.8.x (Check type for set_clip_box)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26700/">PR #26700</a>: Check type for set_clip_box</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26766/">PR #26766</a>: Backport PR #26763 on branch v3.8.x (DOC: Add redirects for old gitwash files)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26763/">PR #26763</a>: DOC: Add redirects for old gitwash files</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26756/">PR #26756</a>: Pin numpy to <2 for 3.8.0</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26761/">PR #26761</a>: Merge branch v3.7.x into v3.8.x</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26757/">PR #26757</a>: Backport PR #26628 on branch v3.8.x (DOC: move install related FAQ to install docs)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26628/">PR #26628</a>: DOC: move install related FAQ to install docs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26753/">PR #26753</a>: Backport PR #26705 on branch v3.8.x ([Doc] Small fixes found by velin)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26705/">PR #26705</a>: [Doc] Small fixes found by velin</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26746/">PR #26746</a>: Backport PR #26671 on branch v3.8.x ([DOC] Enhance API reference index)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26671/">PR #26671</a>: [DOC] Enhance API reference index</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26740/">PR #26740</a>: Backport PR #26676 on branch v3.8.x ([DOC] Slightly improve the LineCollection docstring)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26676/">PR #26676</a>: [DOC] Slightly improve the LineCollection docstring</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26712/">PR #26712</a>: Backport PR #26491 on branch v3.8.x (TYP: Add common-type overloads of subplot_mosaic)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26726/">PR #26726</a>: Backport PR #26719 on branch v3.8.x (Fix issue with missing attribute in Path3DCollection)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26724/">PR #26724</a>: Backport PR #26721 on branch v3.8.x (Add a Python 3.12 classifier)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26711/">PR #26711</a>: Backport PR #26709 on branch v3.8.x (DOC: consistency in docstrings of formatting of array-like)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26491/">PR #26491</a>: TYP: Add common-type overloads of subplot_mosaic</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26709/">PR #26709</a>: DOC: consistency in docstrings of formatting of array-like</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26708/">PR #26708</a>: Backport PR #26601 on branch v3.8.x (Avoid checking limits when updating both min and max for contours)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26601/">PR #26601</a>: Avoid checking limits when updating both min and max for contours</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26701/">PR #26701</a>: Backport PR #26695 on branch v3.8.x (Bump actions/checkout from 3 to 4)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26695/">PR #26695</a>: Bump actions/checkout from 3 to 4</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26694/">PR #26694</a>: Backport PR #26689 on branch v3.8.x (Fix error generation for missing pgf.texsystem.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26522/">PR #26522</a>: TST: Add failing test</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26689/">PR #26689</a>: Fix error generation for missing pgf.texsystem.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26688/">PR #26688</a>: Backport PR #26680 on branch v3.8.x (Fix flaky CI tests)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26680/">PR #26680</a>: Fix flaky CI tests</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26675/">PR #26675</a>: Backport PR #26665 on branch v3.8.x (Clarify loading of backend FigureCanvas and show().)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26673/">PR #26673</a>: Backport PR #26193 on branch v3.8.x (Sort tex2uni data in mathtext)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26665/">PR #26665</a>: Clarify loading of backend FigureCanvas and show().</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26193/">PR #26193</a>: Sort tex2uni data in mathtext</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26663/">PR #26663</a>: Backport PR #26245 on branch v3.8.x ([pre-commit.ci] pre-commit autoupdate)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26668/">PR #26668</a>: Backport PR #26541 on branch v3.8.x (TYP: Add typing on mathtext internals)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26666/">PR #26666</a>: Backport PR #26657 on branch v3.8.x (DOC: Fix some small issues)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26541/">PR #26541</a>: TYP: Add typing on mathtext internals</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26662/">PR #26662</a>: Backport PR #26542 on branch v3.8.x (TST: Ensure test_webagg subprocess is terminated)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26661/">PR #26661</a>: Backport PR #26566 on branch v3.8.x (MAINT: Numpy 2.0 deprecations for row_stack and in1d)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26657/">PR #26657</a>: DOC: Fix some small issues</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26660/">PR #26660</a>: Backport PR #26656 on branch v3.8.x (TYP: Fix some small bugs)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26659/">PR #26659</a>: Backport PR #26470 on branch v3.8.x ([DOC]: mathtext tutorial-consolidate explain and notes)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26245/">PR #26245</a>: [pre-commit.ci] pre-commit autoupdate</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26658/">PR #26658</a>: Backport PR #26608 on branch v3.8.x (Removed unnecessary origin keywords)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26542/">PR #26542</a>: TST: Ensure test_webagg subprocess is terminated</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26566/">PR #26566</a>: MAINT: Numpy 2.0 deprecations for row_stack and in1d</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26656/">PR #26656</a>: TYP: Fix some small bugs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26651/">PR #26651</a>: Backport PR #26348 on branch v3.8.x (Test some untested Locator code)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26470/">PR #26470</a>: [DOC]: mathtext tutorial-consolidate explain and notes</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26608/">PR #26608</a>: Removed unnecessary origin keywords</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26655/">PR #26655</a>: Backport PR #26649 on branch v3.8.x ([DOC] Remove "Discouraged" notices that have been superseded by deprecation)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26654/">PR #26654</a>: Backport PR #26597 on branch v3.8.x (Squeeze post-converted values when validating limits)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26652/">PR #26652</a>: Backport PR #26646 on branch v3.8.x (Use standard method for closing QApp when last window is closed.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26648/">PR #26648</a>: Backport PR #26521 on branch v3.8.x (Replaced list with tuple in pyplot for axes)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26649/">PR #26649</a>: [DOC] Remove "Discouraged" notices that have been superseded by deprecation</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26647/">PR #26647</a>: Backport PR #26582 on branch v3.8.x (MNT: Enable wheels for Python 3.12)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26646/">PR #26646</a>: Use standard method for closing QApp when last window is closed.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26650/">PR #26650</a>: Backport PR #26635 on branch v3.8.x ([MNT] Do not configure axes properties via subplots(..., subplot_kw={...}))</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26644/">PR #26644</a>: Backport PR #26641 on branch v3.8.x ([Doc] Add ACCEPTS for some Axes set methods)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26348/">PR #26348</a>: Test some untested Locator code</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26635/">PR #26635</a>: [MNT] Do not configure axes properties via subplots(..., subplot_kw={...})</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26521/">PR #26521</a>: Replaced list with tuple in pyplot for axes</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26643/">PR #26643</a>: Backport PR #26636 on branch v3.8.x ([Doc] Improve set_layout_engine docs)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26641/">PR #26641</a>: [Doc] Add ACCEPTS for some Axes set methods</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26640/">PR #26640</a>: Backport PR #24209 on branch v3.8.x (List the webagg_core module in the sphinx docs.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26638/">PR #26638</a>: Backport PR #26633 on branch v3.8.x ([Doc] Shorten documentation links in widgets)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26636/">PR #26636</a>: [Doc] Improve set_layout_engine docs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24209/">PR #24209</a>: List the webagg_core module in the sphinx docs.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26633/">PR #26633</a>: [Doc] Shorten documentation links in widgets</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26632/">PR #26632</a>: Backport PR #26540 on branch v3.8.x (TYP: Add overloads for FT2Font.get_sfnt_table)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26631/">PR #26631</a>: Backport PR #26619 on branch v3.8.x ([DOC] Clarify some tick-related docstrings)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26540/">PR #26540</a>: TYP: Add overloads for FT2Font.get_sfnt_table</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26619/">PR #26619</a>: [DOC] Clarify some tick-related docstrings</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26625/">PR #26625</a>: Backport PR #26622 on branch v3.8.x ([Doc] Improve DSP-related examples)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26622/">PR #26622</a>: [Doc] Improve DSP-related examples</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26618/">PR #26618</a>: Backport PR #24711 on branch v3.8.x (Test with Python 3.12)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26617/">PR #26617</a>: Backport PR #26598 on branch v3.8.x (FIX: array labelcolor for Tick)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26615/">PR #26615</a>: Backport PR #26614 on branch v3.8.x (Properly disconnect machinery when removing child axes.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26614/">PR #26614</a>: Properly disconnect machinery when removing child axes.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24711/">PR #24711</a>: Test with Python 3.12</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26607/">PR #26607</a>: Backport PR #26606 on branch v3.8.x ([Doc] Revise histogram features example (Closes #26604))</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26606/">PR #26606</a>: [Doc] Revise histogram features example (Closes #26604)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26599/">PR #26599</a>: Backport PR #26565 on branch v3.8.x ([doc]: added section Verify installation)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26565/">PR #26565</a>: [doc]: added section Verify installation</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26595/">PR #26595</a>: Backport PR #26591 on branch v3.8.x (Fix ToolBase.figure property setter.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26591/">PR #26591</a>: Fix ToolBase.figure property setter.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26584/">PR #26584</a>: Backport PR #26581 on branch v3.8.x (Deduplicate test for toolbar button icon LA mode.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26585/">PR #26585</a>: Backport PR #26576 on branch v3.8.x (Use sys.platform over os.name)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26583/">PR #26583</a>: Backport PR #26578 on branch v3.8.x (MAINT: add __pycache__/ to .gitignore)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26576/">PR #26576</a>: Use sys.platform over os.name</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26581/">PR #26581</a>: Deduplicate test for toolbar button icon LA mode.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26578/">PR #26578</a>: MAINT: add __pycache__/ to .gitignore</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26579/">PR #26579</a>: Backport PR #26572 on branch v3.8.x ([DOC]: clarify pre-commits and editing workflow)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26572/">PR #26572</a>: [DOC]: clarify pre-commits and editing workflow</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26575/">PR #26575</a>: Backport PR #26573 on branch v3.8.x ([DOC]: codespace link in contribute index)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26573/">PR #26573</a>: [DOC]: codespace link in contribute index</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26568/">PR #26568</a>: Backport PR #26462 on branch v3.8.x (Boxplot fix median line extending past box boundaries #19409)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26416/">PR #26416</a>: [doc]: add 'validate' section to install docs #26379</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26564/">PR #26564</a>: Backport PR #26543 on branch v3.8.x (Add ninja to Cygwin builder)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26462/">PR #26462</a>: Boxplot fix median line extending past box boundaries #19409</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26563/">PR #26563</a>: Backport PR #26519 on branch v3.8.x (Fix mathtext mismatched braces)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26543/">PR #26543</a>: Add ninja to Cygwin builder</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26519/">PR #26519</a>: Fix mathtext mismatched braces</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26556/">PR #26556</a>: Backport PR #26554 on branch v3.8.x (Remove NumPy abs overrides from pylab)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26550/">PR #26550</a>: Backport PR #26545 on branch v3.8.x (Fix size inferral when using cairocffi)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26547/">PR #26547</a>: Backport PR #26493 on branch v3.8.x (Disable <code class="docutils literal notranslate"><span class="pre">``add_html_cache_busting``</span></code> on Sphinx 7.1+)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26546/">PR #26546</a>: Backport PR #26201 on branch v3.8.x (DOC: Add documentation on codespaces usage)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26548/">PR #26548</a>: Backport PR #26514 on branch v3.8.x (Clarify interaction between params of get_path_collection_extents.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26514/">PR #26514</a>: Clarify interaction between params of get_path_collection_extents.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26537/">PR #26537</a>: Backport PR #26529 on branch v3.8.x (Fix MathText antialiasing)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26536/">PR #26536</a>: Backport PR #26532 on branch v3.8.x (Fix input check in Poly3DCollection.__init__)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26529/">PR #26529</a>: Fix MathText antialiasing</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26534/">PR #26534</a>: Backport PR #26513 on branch v3.8.x (Tweak shape repr in _api.check_shape error message.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26533/">PR #26533</a>: Backport PR #26526 on branch v3.8.x (Bump pypa/cibuildwheel from 2.14.1 to 2.15.0)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26513/">PR #26513</a>: Tweak shape repr in _api.check_shape error message.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26526/">PR #26526</a>: Bump pypa/cibuildwheel from 2.14.1 to 2.15.0</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26201/">PR #26201</a>: DOC: Add documentation on codespaces usage</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26530/">PR #26530</a>: Backport PR #26509 on branch v3.8.x (Update/tweak SpanSelector docs.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26509/">PR #26509</a>: Update/tweak SpanSelector docs.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26528/">PR #26528</a>: Backport PR #26504 on branch v3.8.x (TYP: Add overload to specify output of Colormap.__call__ when possible)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26527/">PR #26527</a>: Backport PR #26173 on branch v3.8.x (Synchronize mathtext docs and handling)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26504/">PR #26504</a>: TYP: Add overload to specify output of Colormap.__call__ when possible</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26173/">PR #26173</a>: Synchronize mathtext docs and handling</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26511/">PR #26511</a>: Backport PR #26490 on branch v3.8.x (Import PIL.Image explicitly over PIL)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26490/">PR #26490</a>: Import PIL.Image explicitly over PIL</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26503/">PR #26503</a>: Backport PR #26502 on branch v3.8.x (TST: Increase some tolerances for non-x86 arches)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26502/">PR #26502</a>: TST: Increase some tolerances for non-x86 arches</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26499/">PR #26499</a>: Backport PR #26498 on branch v3.8.x (Add plausible analytics to the documentation pages)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26498/">PR #26498</a>: Add plausible analytics to the documentation pages</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26493/">PR #26493</a>: Disable <code class="docutils literal notranslate"><span class="pre">``add_html_cache_busting``</span></code> on Sphinx 7.1+</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26489/">PR #26489</a>: Backport PR #26487 on branch v3.8.x (DOC: Remove unused image rotator)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26487/">PR #26487</a>: DOC: Remove unused image rotator</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26479/">PR #26479</a>: ps: Add option to use figure size as paper size</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26469/">PR #26469</a>: Deprecate PdfPages(keep_empty=True).</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24379/">PR #24379</a>: DOC: Update dropped splines example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26326/">PR #26326</a>: Only do pchanged and set stale when value changes + doc consistency</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26443/">PR #26443</a>: BLD: stop skipping musl wheel builds</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26475/">PR #26475</a>: [DOC]: Noto Sans for windows docs builds</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26481/">PR #26481</a>: Clarify behavior of norm clipping</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26474/">PR #26474</a>: [DOC]: filter non-gui backend warnings when building docs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26480/">PR #26480</a>: [DOC] Documentation fixes</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26476/">PR #26476</a>: Remove auto from supported ps.papersizes in matplotlibrc.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25966/">PR #25966</a>: Fix support for Ctrl-C on the macosx backend.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26473/">PR #26473</a>: Fix codespaces setup.sh script</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24376/">PR #24376</a>: Support removing inner ticks in label_outer()</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25785/">PR #25785</a>: Deprecate papersize=auto in PostScript</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26472/">PR #26472</a>: Do not close figures on backend switch.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26402/">PR #26402</a>: Restructure interface section of API Reference index page</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26467/">PR #26467</a>: MNT: Adjust for upcoming numpy repr changes</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26451/">PR #26451</a>: TYP: Add several missing return type annotations</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26466/">PR #26466</a>: Make annotate/OffsetFrom unaffected by later mutation of coordinates.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26445/">PR #26445</a>: [DOC]: annotation tutorial: blended artist, headers, and user demo deletes</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26454/">PR #26454</a>: Rename an internal parameter of _label_outer_x/yaxis()</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26130/">PR #26130</a>: Enable branch coverage for C/C++ code</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26448/">PR #26448</a>: [DOC] Update dependency documentation</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26450/">PR #26450</a>: Fix return value of Text.update</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26447/">PR #26447</a>: DOC: Fix accidental cases of blockquotes</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26401/">PR #26401</a>: WARN: more direct warning ticklabels</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26444/">PR #26444</a>: Fix some bugs found by typing</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26253/">PR #26253</a>: Filter out inf values in plot_surface</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26407/">PR #26407</a>: Improve some smaller typing issues</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26328/">PR #26328</a>: [DOC]: improve consistency of plot types gallery</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26434/">PR #26434</a>: TYP: Adjust type hint of Norm.__call__ to return masked array</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26376/">PR #26376</a>: Text antialiasing for mathtext (reopen)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25830/">PR #25830</a>: Specify ticks and axis label positions for 3D plots</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25784/">PR #25784</a>: ps: Fix anchoring of rotated usetex text</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26403/">PR #26403</a>: Update type hints for font manager and extension</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26433/">PR #26433</a>: Call out which pane is hovered over for 3d hover coordinates</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26418/">PR #26418</a>: Add next_whats_new entries for mathtext features</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26429/">PR #26429</a>: DOC: update ContourSet attributes deprecation advice</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26051/">PR #26051</a>: Type hinting developer docs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26427/">PR #26427</a>: Improve button widget examples a bit</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26423/">PR #26423</a>: Fix pyparsing version check</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26425/">PR #26425</a>: Delete second MRI demo example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26424/">PR #26424</a>: macos: Don't leak None in Timer cleanup</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26332/">PR #26332</a>: moved doc root to landing page, make user landing a guide page</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26408/">PR #26408</a>: DOC: add note about manually downloading qhull + freetype</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26404/">PR #26404</a>: Remove old What's new entries</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26011/">PR #26011</a>: Emit xlim_changed on shared axes.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25810/">PR #25810</a>: Fix default return of Collection.get_{cap,join}style</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26168/">PR #26168</a>: Add _val_or_rc-function</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26335/">PR #26335</a>: Optimize imshow</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26367/">PR #26367</a>: Add typing for internal helpers</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26397/">PR #26397</a>: TYP: Add type hints to testing module</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26399/">PR #26399</a>: Reinstate & deprecate ContourSet.antialiased</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26385/">PR #26385</a>: Improve typing in pyplot</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26151/">PR #26151</a>: Add substack cmd for mathtext</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26396/">PR #26396</a>: Move pylab documentation to its own module page</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26393/">PR #26393</a>: TST: Remove extra dummy Axis classes</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26384/">PR #26384</a>: Fix triage tool due to Qt bump to 5.12</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26382/">PR #26382</a>: Tweak hist2d docstring.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26359/">PR #26359</a>: Simplify MRI with EEG example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26071/">PR #26071</a>: ENH: macosx allow figures to be opened in tabs or windows</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/16473/">PR #16473</a>: Make <code class="docutils literal notranslate"><span class="pre">.axis(zmin=...)</span></code> work on 3D axes</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26333/">PR #26333</a>: Add middle for delims</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26365/">PR #26365</a>: Fix removal of Figure-level artists</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26341/">PR #26341</a>: Fix pickling of axes property cycle.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26279/">PR #26279</a>: DOC: remove users_explain/axis</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26347/">PR #26347</a>: Add tests for LogFormatter.format_data and format_data_short</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26329/">PR #26329</a>: Clarify that ImageGrid requires limits-sharing.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26349/">PR #26349</a>: Tweak Sankey docs.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26352/">PR #26352</a>: Fix bad histogramming bins in mri/eeg example.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26353/">PR #26353</a>: Remove unused private method</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26342/">PR #26342</a>: ENH: Collection.set_paths</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26344/">PR #26344</a>: Some more micro optimizations</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26346/">PR #26346</a>: Increase coverage</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26330/">PR #26330</a>: Deprecate wrappers combining axes_grid1 and axisartist.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26338/">PR #26338</a>: Bump pypa/cibuildwheel from 2.14.0 to 2.14.1</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26331/">PR #26331</a>: Support standard Axes in RGBAxes.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26219/">PR #26219</a>: DOC: Restore banner indicating docs are unreleased</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25558/">PR #25558</a>: Simplify outdated Image.contains check.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26324/">PR #26324</a>: More micro optimizations of plot</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26325/">PR #26325</a>: Remove unused variables</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26022/">PR #26022</a>: MNT/FIX: macosx change Timer to NSTimer instance</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26303/">PR #26303</a>: Micro optimization of plotting</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26249/">PR #26249</a>: FIX: axes3d.scatter color parameter doesn't decrease in size for non-finite coordinate inputs.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26078/">PR #26078</a>: Fix parasite_axes does not properly handle units</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25839/">PR #25839</a>: [ENH]: int / float-tuple like kwarg legend(loc) for rcParams['legend.loc']</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26056/">PR #26056</a>: Privatize TexManager.texcache</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25363/">PR #25363</a>: Bump minimum QT5 version to 5.12</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26176/">PR #26176</a>: Add more sizeable delimiters</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26302/">PR #26302</a>: FIX: move the font lock higher up the call and class tree</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26309/">PR #26309</a>: qt: Mark canvas for re-draw after savefig</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26311/">PR #26311</a>: FIX: labels at start of contours</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26278/">PR #26278</a>: ENH: clip_path keyword for contour and contourf</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26295/">PR #26295</a>: Deprecate inset_locator.InsetPosition.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26122/">PR #26122</a>: Only change axes aspect in imshow if image transform is/contains transData</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26297/">PR #26297</a>: Use transformed paths for contour labelling decisions</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26160/">PR #26160</a>: add setters and getters for _AxLine's xy1, xy2 and slope parameters</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26294/">PR #26294</a>: Deprecate cbook.Stack.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26284/">PR #26284</a>: Bump pypa/cibuildwheel from 2.13.1 to 2.14.0</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25661/">PR #25661</a>: boldsymbol support for mathtext</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26285/">PR #26285</a>: Improve exception message for set_ticks() kwargs without labels</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/14593/">PR #14593</a>: Simplify SecondaryAxis.set_color.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26273/">PR #26273</a>: TST: simplify mask in pcolor writing to mask test</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26263/">PR #26263</a>: Doc fix toc users</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26242/">PR #26242</a>: Deprecate FigureCanvasBase.switch_backends.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26164/">PR #26164</a>: Only clear Axis once when creating an Axes</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26035/">PR #26035</a>: issue #26031 - [MNT]: decrease timeout on interactive tests locally</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/23485/">PR #23485</a>: Fix displayed 3d coordinates showing gibberish</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25027/">PR #25027</a>: Make pcolor more mesh-like</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26235/">PR #26235</a>: MNT:Decreased timeout for local interactive tests</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26270/">PR #26270</a>: Merge v3.7.x into main</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26269/">PR #26269</a>: DOC: Fix image_rotator</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26265/">PR #26265</a>: DOC: ensure that the bounding box is scaled with dpi in example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26255/">PR #26255</a>: DOC: Modernize Colorbar Tick Labelling example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26258/">PR #26258</a>: DOC: fix rst formatting</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26257/">PR #26257</a>: DOC: Clarify terminology</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26256/">PR #26256</a>: Better document the ContourSet API change.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26254/">PR #26254</a>: DOC: Improve readability of date formatters/locators example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26233/">PR #26233</a>: DOC: replaced step with stairs in basic plot types</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26213/">PR #26213</a>: Add <code class="docutils literal notranslate"><span class="pre">CITATION.cff</span></code> file</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26226/">PR #26226</a>: Use CLOSEPOLY kind code to close tricontourf polygons</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26208/">PR #26208</a>: FIX: also copy the axis units when creating twins</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26185/">PR #26185</a>: Set transform for offset text in 3d</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26068/">PR #26068</a>: Rewrite Tick formatters example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26218/">PR #26218</a>: moved minimum dependencies to maintenance section</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26217/">PR #26217</a>: Doc/rm maintainer wf</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26212/">PR #26212</a>: Avoid deprecated typing hints</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26198/">PR #26198</a>: Limit Forward references in Mathtext parser</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26210/">PR #26210</a>: Re-export textpath types in text</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25247/">PR #25247</a>: Turn ContourSet into a standard Collection artist.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26204/">PR #26204</a>: ci: Add tzdata to nightly builds</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26200/">PR #26200</a>: [Doc] Add note about (str, alpha) version added</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26171/">PR #26171</a>: precommit warns on main + instructions for fix</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26189/">PR #26189</a>: Factor out legend/figlegend nargs validation.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26199/">PR #26199</a>: ci: Fix typo for nightly builds</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26197/">PR #26197</a>: CI: Add pre-release installs to upcoming tests</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26086/">PR #26086</a>: reorganize contributing landing page</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/17497/">PR #17497</a>: Dedupe some C++ templates</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26190/">PR #26190</a>: Deprecate removal of explicit legend handles whose label starts with _.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26188/">PR #26188</a>: Add note to remove texts in baselines when they are regenerated.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25714/">PR #25714</a>: Fix ffmpeg framerates</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26142/">PR #26142</a>: [Doc] alphabetize mathtext symbols by unicode</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25933/">PR #25933</a>: Relational Operators for mathtext</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26159/">PR #26159</a>: DOC: Remove unused static images</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25913/">PR #25913</a>: DOC: contributing and documenting clean ups + community for incubator invites</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26141/">PR #26141</a>: Doc cards user explain</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26110/">PR #26110</a>: DOC: fix levels in user/explain/figure</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26102/">PR #26102</a>: Start basing mathtext tutorial on mathtext parser</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26138/">PR #26138</a>: MNT: add VNClte porte by default</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26089/">PR #26089</a>: Add public method to update <code class="docutils literal notranslate"><span class="pre">Legend</span></code> object's loc property .</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26137/">PR #26137</a>: Add codespaces configuration</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25548/">PR #25548</a>: FIX: macosx keep track of mouse up/down for cursor hand changes</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26132/">PR #26132</a>: MNT: remove test images from mathtext tests that have been removed</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26125/">PR #26125</a>: Stop building universal2 and win32 wheels</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26105/">PR #26105</a>: Doc user guide cards</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26128/">PR #26128</a>: Add missing spacer in tk toolmanager toolbar.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26129/">PR #26129</a>: Remove outdated comment in <code class="docutils literal notranslate"><span class="pre">Artist.__getstate__</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25631/">PR #25631</a>: API: forbid unsafe savefig kwargs to AbstractMovieWriter.grab_frame</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25926/">PR #25926</a>: DOC: restore navigation documentation</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24666/">PR #24666</a>: Setting color of legend shadow</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26010/">PR #26010</a>: Correct Unicode for [lg]napprox</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26120/">PR #26120</a>: Fix new warnings in compiled extensions</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26060/">PR #26060</a>: Mnt: GUI tests</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25623/">PR #25623</a>: Use classic style in old what's new entries</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26113/">PR #26113</a>: Fixes #12926 - inconsistency upon passing C in hexbin</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25555/">PR #25555</a>: Let widgets/clabel better handle overlapping axes.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26114/">PR #26114</a>: Bump pypa/cibuildwheel from 2.13.0 to 2.13.1</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26112/">PR #26112</a>: Skip tests for users-explain gallery</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26111/">PR #26111</a>: [MNT] Update nightly wheels install location</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25779/">PR #25779</a>: Adding ellipse_arrow.py example and closes #25477</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26101/">PR #26101</a>: Correct bounding box calculation for text markers</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26096/">PR #26096</a>: FIX: Handle masked arrays for RGBA input with ScalarMappables</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26024/">PR #26024</a>: Add missing operators code</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26072/">PR #26072</a>: Pcolormesh with Gouraud shading: masked arrays</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25381/">PR #25381</a>: ENH: switch mpl_toolkits to implicit namespace package (PEP 420)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26070/">PR #26070</a>: Factor out common checks for set_data in various Image subclasses.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26091/">PR #26091</a>: Shorten axes_grid1 inset_locator code.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26090/">PR #26090</a>: ci: Move Python 3.11 job to Ubuntu 22.04</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/21054/">PR #21054</a>: Deprecate many single-use rc validators.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26065/">PR #26065</a>: Install extra requirements when testing with 3.11 on GH</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26080/">PR #26080</a>: Deprecate unused "frac" key in annotate() arrowprops.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25248/">PR #25248</a>: added Ishikawa plot in response to issue #25222 add organizational ch…</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26064/">PR #26064</a>: add ishikawa diagram to examples</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26079/">PR #26079</a>: Tweak Annotation docstring.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26069/">PR #26069</a>: Tweak AnnotationBbox coords specification.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26073/">PR #26073</a>: Cleanup date tick locators and formatters</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26057/">PR #26057</a>: Further cleanup rainbow_text example.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26058/">PR #26058</a>: Don't show type hints in rendered docs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26042/">PR #26042</a>: Further simplify AxesGrid._init_locators.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25993/">PR #25993</a>: Modify rainbow_text() function to use annotate() function</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25850/">PR #25850</a>: Handle exceptions in numpy::array_view<...>::set().</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25542/">PR #25542</a>: ENH: offset parameter for MultipleLocator</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25515/">PR #25515</a>: DOC/BLD: plot directive srcset</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26045/">PR #26045</a>: 'Inactive' workflow: reduce run frequency</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26047/">PR #26047</a>: PR welcome: getting attention</p></li>