-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathgithub_stats.html
More file actions
1425 lines (1210 loc) · 132 KB
/
github_stats.html
File metadata and controls
1425 lines (1210 loc) · 132 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" data-content_root="../" >
<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.9.0 (May 15, 2024) — Matplotlib 3.9.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=8d27b9dea8ad943066ae" rel="stylesheet" />
<link href="../_static/styles/bootstrap.css?digest=8d27b9dea8ad943066ae" rel="stylesheet" />
<link href="../_static/styles/pydata-sphinx-theme.css?digest=8d27b9dea8ad943066ae" rel="stylesheet" />
<link href="../_static/vendor/fontawesome/6.5.1/css/all.min.css?digest=8d27b9dea8ad943066ae" rel="stylesheet" />
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.5.1/webfonts/fa-solid-900.woff2" />
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.5.1/webfonts/fa-brands-400.woff2" />
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.5.1/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?v=7f9a90b1" />
<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=369bd9d1" />
<!-- Pre-loaded scripts that we'll load fully later -->
<link rel="preload" as="script" href="../_static/scripts/bootstrap.js?digest=8d27b9dea8ad943066ae" />
<link rel="preload" as="script" href="../_static/scripts/pydata-sphinx-theme.js?digest=8d27b9dea8ad943066ae" />
<script src="../_static/vendor/fontawesome/6.5.1/js/all.min.js?digest=8d27b9dea8ad943066ae"></script>
<script src="../_static/documentation_options.js?v=e55a5be6"></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_version = '0.15.2';
DOCUMENTATION_OPTIONS.theme_switcher_json_url = 'https://matplotlib.org/devdocs/_static/switcher.json?v3.9.0-2-g43c95480c6-dirty';
DOCUMENTATION_OPTIONS.theme_switcher_version_match = '3.9.0';
DOCUMENTATION_OPTIONS.show_version_warning_banner = false;
</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.9.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.8.4 (Apr 03, 2024)" href="prev_whats_new/github_stats_3.8.4.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"/>
<meta name="docbuild:last-update" content="May 15, 2024"/>
</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 id="pst-skip-link" class="skip-link" href="#main-content">Skip to main content</a>
<div id="pst-scroll-pixel-helper"></div>
<button type="button" class="btn rounded-pill" id="pst-back-to-top">
<i class="fa-solid fa-arrow-up"></i>
Back to top
</button>
<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>
<header 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="col-lg-3 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="Matplotlib 3.9.0 documentation - Home"/>
<script>document.write(`<img src="../_static/logo_dark.svg" class="logo__image only-dark" alt="Matplotlib 3.9.0 documentation - Home"/>`);</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 fa-lg"></i>
</button>
`);
</script>
</div>
<div class="navbar-item">
<script>
document.write(`
<button class="btn btn-sm navbar-btn theme-switch-button" title="light/dark" aria-label="light/dark" data-bs-placement="bottom" data-bs-toggle="tooltip">
<span class="theme-switch nav-link" data-mode="light"><i class="fa-solid fa-sun fa-lg"></i></span>
<span class="theme-switch nav-link" data-mode="dark"><i class="fa-solid fa-moon fa-lg"></i></span>
<span class="theme-switch nav-link" data-mode="auto"><i class="fa-solid fa-circle-half-stroke fa-lg"></i></span>
</button>
`);
</script></div>
<div class="navbar-item">
<script>
document.write(`
<div class="version-switcher__container dropdown">
<button id="pst-version-switcher-button-2"
type="button"
class="version-switcher__button btn btn-sm navbar-btn dropdown-toggle"
data-bs-toggle="dropdown"
aria-haspopup="listbox"
aria-controls="pst-version-switcher-list-2"
aria-label="Version switcher list"
>
Choose version <!-- this text may get changed later by javascript -->
<span class="caret"></span>
</button>
<div id="pst-version-switcher-list-2"
class="version-switcher__menu dropdown-menu list-group-flush py-0"
role="listbox" aria-labelledby="pst-version-switcher-button-2">
<!-- 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 fa-lg" aria-hidden="true"></i></span>
<span class="sr-only">Gitter</span></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 fa-lg" aria-hidden="true"></i></span>
<span class="sr-only">Discourse</span></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 fa-lg" aria-hidden="true"></i></span>
<span class="sr-only">GitHub</span></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 fa-lg" aria-hidden="true"></i></span>
<span class="sr-only">Twitter</span></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 fa-lg"></i>
</button>
`);
</script>
</div>
<label class="sidebar-toggle secondary-toggle" for="__secondary" tabindex="0">
<span class="fa-solid fa-outdent"></span>
</label>
</div>
</header>
<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="btn btn-sm navbar-btn theme-switch-button" title="light/dark" aria-label="light/dark" data-bs-placement="bottom" data-bs-toggle="tooltip">
<span class="theme-switch nav-link" data-mode="light"><i class="fa-solid fa-sun fa-lg"></i></span>
<span class="theme-switch nav-link" data-mode="dark"><i class="fa-solid fa-moon fa-lg"></i></span>
<span class="theme-switch nav-link" data-mode="auto"><i class="fa-solid fa-circle-half-stroke fa-lg"></i></span>
</button>
`);
</script></div>
<div class="navbar-item">
<script>
document.write(`
<div class="version-switcher__container dropdown">
<button id="pst-version-switcher-button-3"
type="button"
class="version-switcher__button btn btn-sm navbar-btn dropdown-toggle"
data-bs-toggle="dropdown"
aria-haspopup="listbox"
aria-controls="pst-version-switcher-list-3"
aria-label="Version switcher list"
>
Choose version <!-- this text may get changed later by javascript -->
<span class="caret"></span>
</button>
<div id="pst-version-switcher-list-3"
class="version-switcher__menu dropdown-menu list-group-flush py-0"
role="listbox" aria-labelledby="pst-version-switcher-button-3">
<!-- 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 fa-lg" aria-hidden="true"></i></span>
<span class="sr-only">Gitter</span></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 fa-lg" aria-hidden="true"></i></span>
<span class="sr-only">Discourse</span></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 fa-lg" aria-hidden="true"></i></span>
<span class="sr-only">GitHub</span></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 fa-lg" aria-hidden="true"></i></span>
<span class="sr-only">Twitter</span></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.8.4.html">GitHub statistics for 3.8.4 (Apr 03, 2024)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.8.3.html">GitHub statistics for 3.8.3 (Feb 14, 2024)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.8.2.html">GitHub statistics for 3.8.2 (Nov 17, 2023)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.8.1.html">GitHub statistics for 3.8.1 (Oct 31, 2023)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.8.0.html">GitHub statistics for 3.8.0 (Sep 14, 2023)</a></li>
<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="Breadcrumb">
<ul class="bd-breadcrumbs">
<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...</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
<div id="searchbox"></div>
<article class="bd-article">
<section id="github-statistics-for-3-9-0-may-15-2024">
<span id="github-stats"></span><h1>GitHub statistics for 3.9.0 (May 15, 2024)<a class="headerlink" href="#github-statistics-for-3-9-0-may-15-2024" title="Link to this heading">#</a></h1>
<p>GitHub statistics for 2023/09/15 (tag: v3.8.0) - 2024/05/15</p>
<p>These lists are automatically generated, and may be incomplete or contain duplicates.</p>
<p>We closed 97 issues and merged 450 pull requests.
The full list can be seen <a class="reference external" href="https://github.com/matplotlib/matplotlib/milestone/78?closed=1">on GitHub</a></p>
<p>The following 175 authors contributed 2584 commits.</p>
<ul class="simple">
<li><p>0taj</p></li>
<li><p>Abdul Razak Taha</p></li>
<li><p>Adam J. Stewart</p></li>
<li><p>Adam Turner</p></li>
<li><p>Aditi Gautam</p></li>
<li><p>agautam478</p></li>
<li><p>Alan Lau</p></li>
<li><p>Albert Y. Shih</p></li>
<li><p>Alec Vercruysse</p></li>
<li><p>Alexander Volkov</p></li>
<li><p>Alice Descoeudres</p></li>
<li><p>Allan Haldane</p></li>
<li><p>Amirreza Aflakparast</p></li>
<li><p>Ananya Devarakonda</p></li>
<li><p>ananya314</p></li>
<li><p>Anja Beck</p></li>
<li><p>Anjini2004</p></li>
<li><p>Ant Lockyer</p></li>
<li><p>Antony Lee</p></li>
<li><p>Anvi Verma</p></li>
<li><p>Artyom Romanov</p></li>
<li><p>Augusto Borges</p></li>
<li><p>avramid9</p></li>
<li><p>Ben Root</p></li>
<li><p>bersbersbers</p></li>
<li><p>Binaya Sharma</p></li>
<li><p>Cameron</p></li>
<li><p>Chaoyi Hu</p></li>
<li><p>chaoyihu</p></li>
<li><p>Chiraag Balu</p></li>
<li><p>Christoph Hasse</p></li>
<li><p>ConstableCatnip</p></li>
<li><p>CozyFrog</p></li>
<li><p>Cyril Gadal</p></li>
<li><p>Dale Dai</p></li>
<li><p>Daniel Bergman</p></li>
<li><p>Daniel Hitchcock</p></li>
<li><p>danielcobej</p></li>
<li><p>David Gilbertson</p></li>
<li><p>David Stansby</p></li>
<li><p><a class="reference external" href="mailto:ddale1128%40gmail.com">ddale1128<span>@</span>gmail<span>.</span>com</a></p></li>
<li><p>dependabot[bot]</p></li>
<li><p>Devilsaint</p></li>
<li><p>dohyun</p></li>
<li><p>Drew Kinneer</p></li>
<li><p>DWesl</p></li>
<li><p>Elisa Heckelmann</p></li>
<li><p>ElisaHeck</p></li>
<li><p>Elliott Sales de Andrade</p></li>
<li><p>Eric Firing</p></li>
<li><p>Eric Prestat</p></li>
<li><p>esibinga</p></li>
<li><p>Eva Sibinga</p></li>
<li><p>Evgenii Radchenko</p></li>
<li><p>Faisal Fawad</p></li>
<li><p>Felipe Cybis Pereira</p></li>
<li><p>Garrett Sward</p></li>
<li><p>Gaurav-Kumar-Soni</p></li>
<li><p>Gauri Chaudhari</p></li>
<li><p>Gautam Sagar</p></li>
<li><p>Greg Lucas</p></li>
<li><p>Gurudatta Shanbhag</p></li>
<li><p>hannah</p></li>
<li><p>Haoying Zhang</p></li>
<li><p>Hugues Hoppe</p></li>
<li><p>i-jey</p></li>
<li><p>iamfaham</p></li>
<li><p>Ian Hunt-Isaak</p></li>
<li><p>Ian Thomas</p></li>
<li><p>ifEricReturnTrue</p></li>
<li><p>Illviljan</p></li>
<li><p>Issam</p></li>
<li><p>Issam Arabi</p></li>
<li><p>Jacob Stevens-Haas</p></li>
<li><p>Jacob Tomlinson</p></li>
<li><p>Jake</p></li>
<li><p>Jake Stevens-Haas</p></li>
<li><p>James Salsman</p></li>
<li><p>Jaroza727</p></li>
<li><p>Jeremy Farrell</p></li>
<li><p>Jirka</p></li>
<li><p>Jody Klymak</p></li>
<li><p>Jorge Moraleda</p></li>
<li><p>Joshua Stevenson</p></li>
<li><p>jovianw</p></li>
<li><p>João Andrade</p></li>
<li><p>jpgianfaldoni</p></li>
<li><p>jsdodge</p></li>
<li><p>jsjeelshah</p></li>
<li><p>judfs</p></li>
<li><p>Juhan Oskar Hennoste</p></li>
<li><p>Junpei Ota</p></li>
<li><p>Katherine Turk</p></li>
<li><p>katotaisei</p></li>
<li><p>KheshavKumar</p></li>
<li><p>Koustav Ghosh</p></li>
<li><p>Kritika Verma</p></li>
<li><p>Kyle Sunden</p></li>
<li><p>Linyi Li</p></li>
<li><p>linyilily</p></li>
<li><p>lkkmpn</p></li>
<li><p>Lucia Korpas</p></li>
<li><p>madisonwong210</p></li>
<li><p>Maggie Liu</p></li>
<li><p>Marc Bresson</p></li>
<li><p>Matthew Feickert</p></li>
<li><p>Matthew Morrison</p></li>
<li><p>Matthias Bussonnier</p></li>
<li><p>Melissa Weber Mendonça</p></li>
<li><p>melissawm</p></li>
<li><p>mliu08</p></li>
<li><p>Mostafa Noah</p></li>
<li><p>MostafaNouh0011</p></li>
<li><p>n-aswin</p></li>
<li><p>Nabil</p></li>
<li><p>nbarlowATI</p></li>
<li><p>Nidaa Rabah</p></li>
<li><p>Nivedita Chaudhari</p></li>
<li><p>Oscar Gustafsson</p></li>
<li><p>patel-zeel</p></li>
<li><p>Pavel Liavonau</p></li>
<li><p>Pedro</p></li>
<li><p>Pedro Peçanha</p></li>
<li><p>Peter Talley</p></li>
<li><p>Pradeep Reddy Raamana</p></li>
<li><p>Prajwal Agrawal</p></li>
<li><p>Pranav Raghu</p></li>
<li><p>prateetishah</p></li>
<li><p>pre-commit-ci[bot]</p></li>
<li><p>QuadroTec</p></li>
<li><p>Rafael Tsuha</p></li>
<li><p>Raghuram Sirigiri</p></li>
<li><p>Raphael</p></li>
<li><p>Raphael Quast</p></li>
<li><p>Ratnabali Dutta</p></li>
<li><p>rawwash</p></li>
<li><p>rsp2210</p></li>
<li><p>Ruoyi</p></li>
<li><p>Ruoyi Xie</p></li>
<li><p>Rushikesh Pandya</p></li>
<li><p>Ruth Comer</p></li>
<li><p>samGreer</p></li>
<li><p>Samuel Diebolt</p></li>
<li><p>saranti</p></li>
<li><p>Scott Shambaugh</p></li>
<li><p>Sebastian Berg</p></li>
<li><p>Seohyeon Lee</p></li>
<li><p>Sheepfan0828</p></li>
<li><p>ShivamPathak99</p></li>
<li><p>Shriya Kalakata</p></li>
<li><p>shriyakalakata</p></li>
<li><p>Stefan</p></li>
<li><p>Steffen Rehberg</p></li>
<li><p>stevezhang1999</p></li>
<li><p>Sudhanshu Pandey</p></li>
<li><p>Talha Irfan</p></li>
<li><p>thehappycheese</p></li>
<li><p>Thomas A Caswell</p></li>
<li><p>Tiago Lubiana</p></li>
<li><p>Tim Hoffmann</p></li>
<li><p>tobias</p></li>
<li><p>Tom Sarantis</p></li>
<li><p>trananso</p></li>
<li><p>turnipseason</p></li>
<li><p>tusharkulkarni008</p></li>
<li><p>UFEddy</p></li>
<li><p>Vashesh08</p></li>
<li><p>vicky6</p></li>
<li><p>vigneshvetrivel8</p></li>
<li><p>wemi3</p></li>
<li><p>yangyangdotcom</p></li>
<li><p>YiLun Fan</p></li>
<li><p>Zach Champion</p></li>
<li><p>zachjweiner</p></li>
<li><p>zoehcycy</p></li>
</ul>
<p>GitHub issues and pull requests:</p>
<p>Pull Requests (450):</p>
<ul class="simple">
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28206/">PR #28206</a>: Backport PR #28205 on branch v3.9.x (TST: Fix tests with older versions of ipython)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28207/">PR #28207</a>: TST: Followup corrections to #28205</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28205/">PR #28205</a>: TST: Fix tests with older versions of ipython</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28203/">PR #28203</a>: Backport PR #28164 on branch v3.9.x (CI: Ensure code coverage is always uploaded)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28204/">PR #28204</a>: Backport PR #28195 on branch v3.9.x (TST: Prepare for pytest 9)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28191/">PR #28191</a>: DOC: Use released mpl-sphinx-theme on v3.9.x</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28195/">PR #28195</a>: TST: Prepare for pytest 9</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28193/">PR #28193</a>: Backport PR #28185 on branch v3.9.x (DOC: Bump mpl-sphinx-theme to 3.9)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28190/">PR #28190</a>: Backport PR #28103 on branch v3.9.x ([DOC]: Fix compatibility with sphinx-gallery 0.16)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28164/">PR #28164</a>: CI: Ensure code coverage is always uploaded</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28194/">PR #28194</a>: Backport PR #28188 on branch v3.9.x ([TST] Bump some tolerances for Macos ARM)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28188/">PR #28188</a>: [TST] Bump some tolerances for Macos ARM</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28185/">PR #28185</a>: DOC: Bump mpl-sphinx-theme to 3.9</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28189/">PR #28189</a>: Backport PR #28181 on branch v3.9.x (DOC: Prepare release notes for 3.9)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28103/">PR #28103</a>: [DOC]: Fix compatibility with sphinx-gallery 0.16</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28181/">PR #28181</a>: DOC: Prepare release notes for 3.9</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28184/">PR #28184</a>: Backport PR #28182 on branch v3.9.x (Bump custom hatch deprecation expiration)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28182/">PR #28182</a>: Bump custom hatch deprecation expiration</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28178/">PR #28178</a>: Backport PR #28171 on branch v3.9.x (Support removing absent tools from ToolContainerBase.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28171/">PR #28171</a>: Support removing absent tools from ToolContainerBase.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28174/">PR #28174</a>: Backport PR #28169 on branch v3.9.x (Clarify public-ness of some ToolContainerBase APIs.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28169/">PR #28169</a>: Clarify public-ness of some ToolContainerBase APIs.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28160/">PR #28160</a>: Backport PR #28039 on branch v3.9.x (Respect vertical_axis when rotating plot interactively)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28159/">PR #28159</a>: Backport PR #28157 on branch v3.9.x (Remove call to non-existent method _default_contains in Artist)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28162/">PR #28162</a>: Backport PR #27948 on branch v3.9.x (Move IPython backend mapping to Matplotlib and support entry points)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28163/">PR #28163</a>: Backport PR #28144 on branch v3.9.x (DOC: Refactor code in the fishbone diagram example)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28144/">PR #28144</a>: DOC: Refactor code in the fishbone diagram example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27948/">PR #27948</a>: Move IPython backend mapping to Matplotlib and support entry points</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28039/">PR #28039</a>: Respect vertical_axis when rotating plot interactively</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28157/">PR #28157</a>: Remove call to non-existent method _default_contains in Artist</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28141/">PR #28141</a>: Backport PR #27960 on branch v3.9.x (Update AppVeyor config)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28138/">PR #28138</a>: Backport PR #28068 on branch v3.9.x ([TYP] Add possible type hint to <code class="docutils literal notranslate"><span class="pre">colors</span></code> argument in <code class="docutils literal notranslate"><span class="pre">LinearSegmentedColormap.from_list</span></code>)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28140/">PR #28140</a>: Backport PR #28136 on branch v3.9.x (Appease pycodestyle.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27960/">PR #27960</a>: Update AppVeyor config</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28068/">PR #28068</a>: [TYP] Add possible type hint to <code class="docutils literal notranslate"><span class="pre">colors</span></code> argument in <code class="docutils literal notranslate"><span class="pre">LinearSegmentedColormap.from_list</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28136/">PR #28136</a>: Appease pycodestyle.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28135/">PR #28135</a>: Backport PR #28134 on branch v3.9.x (DOC: Minor improvements on quickstart)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28134/">PR #28134</a>: DOC: Minor improvements on quickstart</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28121/">PR #28121</a>: Backport PR #28085 on branch v3.9.x (Clarify that the pgf backend is never actually used interactively.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28120/">PR #28120</a>: Backport PR #28102 on branch v3.9.x (Fix typo in color mapping documentation in quick_start.py)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28109/">PR #28109</a>: Backport PR #28100 on branch v3.9.x (TST: wxcairo sometimes raises OSError on missing cairo libraries)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28100/">PR #28100</a>: TST: wxcairo sometimes raises OSError on missing cairo libraries</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28108/">PR #28108</a>: Backport PR #28107 on branch v3.9.x ([DOC] Fix description in CapStyle example)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28107/">PR #28107</a>: [DOC] Fix description in CapStyle example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28102/">PR #28102</a>: Fix typo in color mapping documentation in quick_start.py</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28095/">PR #28095</a>: Backport PR #28094 on branch v3.9.x (DOC: exclude sphinx 7.3.*)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28081/">PR #28081</a>: Backport PR #28078 on branch v3.9.x (Clarify that findfont & _find_fonts_by_props return paths.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28080/">PR #28080</a>: Backport PR #28077 on branch v3.9.x (Parent tk StringVar to the canvas widget, not to the toolbar.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28092/">PR #28092</a>: Backport PR #28032 on branch v3.9.x (FIX: ensure images are C order before passing to pillow)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28032/">PR #28032</a>: FIX: ensure images are C order before passing to pillow</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28088/">PR #28088</a>: Backport PR #28087 on branch v3.9.x (Document Qt5 minimal version.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28085/">PR #28085</a>: Clarify that the pgf backend is never actually used interactively.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28078/">PR #28078</a>: Clarify that findfont & _find_fonts_by_props return paths.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28077/">PR #28077</a>: Parent tk StringVar to the canvas widget, not to the toolbar.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28062/">PR #28062</a>: Backport PR #28056 on branch v3.9.x (Strip trailing spaces from log-formatter cursor output.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28063/">PR #28063</a>: Backport PR #28055 on branch v3.9.x (DOC: Improve inverted axis example)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28056/">PR #28056</a>: Strip trailing spaces from log-formatter cursor output.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28049/">PR #28049</a>: Backport PR #28036 on branch v3.9.x (BLD: Fetch version from setuptools_scm at build time)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28036/">PR #28036</a>: BLD: Fetch version from setuptools_scm at build time</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28038/">PR #28038</a>: Backport PR #28023 on branch v3.9.x (ci: Update merge conflict labeler)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28023/">PR #28023</a>: ci: Update merge conflict labeler</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28035/">PR #28035</a>: Backport PR #28026 on branch v3.9.x ([DOC] reshuffle of contributing)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28026/">PR #28026</a>: [DOC] reshuffle of contributing</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28024/">PR #28024</a>: DOC: Rewrite "Work on an issue" section</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28011/">PR #28011</a>: DOC: Move bug reports and feature requests to top of contributing index</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27747/">PR #27747</a>: Move doc/users/installing/ to doc/install/</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27952/">PR #27952</a>: ENH: Align titles</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28017/">PR #28017</a>: Merge up v3.8.4</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28014/">PR #28014</a>: Improve timeline example.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28019/">PR #28019</a>: DOC: correct path to mpl_toolkits reference images</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26981/">PR #26981</a>: Fixes Issue #26377 - Auto-escape % Symbol in Latex in pie labels</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28007/">PR #28007</a>: wx: Fix file extension for toolmanager-style toolbar</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25556/">PR #25556</a>: Display cursor coordinates for all axes twinned with the current one.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/23597/">PR #23597</a>: Always use PyQT/PySide6 for GitHub CI</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28013/">PR #28013</a>: Avoid plt.xticks/plt.yticks in gallery examples.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28006/">PR #28006</a>: Fix deprecation warnings in ft2font extension</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27723/">PR #27723</a>: ci: Enable testing on M1 macOS</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26375/">PR #26375</a>: Add <code class="docutils literal notranslate"><span class="pre">widths</span></code>, <code class="docutils literal notranslate"><span class="pre">heights</span></code> and <code class="docutils literal notranslate"><span class="pre">angles</span></code> setter to <code class="docutils literal notranslate"><span class="pre">EllipseCollection</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27999/">PR #27999</a>: Remove documentation that some backends don't support hatching.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26710/">PR #26710</a>: Add support for High DPI displays to wxAgg backend</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27148/">PR #27148</a>: Correctly treat pan/zoom events of overlapping axes.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27981/">PR #27981</a>: DOC: Fix label type specification in parameter descriptions</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27979/">PR #27979</a>: Clarify error message for bad-dimensionality in pcolorfast().</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27962/">PR #27962</a>: DOC: Document axes_grid1.Grid attributes</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27968/">PR #27968</a>: MNT: Remove remaining 3.7 deprecations</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27965/">PR #27965</a>: DOC: Rewrite the example illustrating bxp()</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26453/">PR #26453</a>: add documentation for reloading font cache</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26131/">PR #26131</a>: Tst/restore old tests</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27730/">PR #27730</a>: Add an rcparam for image.interpolation_stage.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27956/">PR #27956</a>: Use PyOS_setsig in macos backend</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27829/">PR #27829</a>: Simplify color/marker disambiguation logic in _process_plot_format.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27840/">PR #27840</a>: Add legend support for boxplots</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27943/">PR #27943</a>: Support Cn, n>9 in plot() shorthand format.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27950/">PR #27950</a>: ci: Fix condition for publishing wheels</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27909/">PR #27909</a>: Add a note to pyplot docstrings referencing the corresponding object methods</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27929/">PR #27929</a>: DOC: Add summary lines to plot types</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27915/">PR #27915</a>: [BUG] Fix redirect-from Sphinx extension</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27945/">PR #27945</a>: DOC: Explain leading dot in object references</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27947/">PR #27947</a>: Update docs for <code class="docutils literal notranslate"><span class="pre">FancyArrowPatch</span></code> & <code class="docutils literal notranslate"><span class="pre">Annotation</span></code> to make it clear that ShrinkA/B parameters are in points and not fractional.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27944/">PR #27944</a>: Bump the actions group with 2 updates</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27932/">PR #27932</a>: Fix pickling of make_axes_area_auto_adjustable'd axes.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26500/">PR #26500</a>: closes #26477 ENH: Add interpolation_stage in qt figureoptions</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27927/">PR #27927</a>: Update docs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27916/">PR #27916</a>: Revert renaming labels to tick_labels in boxplot_stats()</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27931/">PR #27931</a>: Highlight development_setup code snippets as bash, not python.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27856/">PR #27856</a>: Support hatching in cairo backends.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27922/">PR #27922</a>: Fix cbook style</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27668/">PR #27668</a>: MNT: prevent merging using labels + branch protection rules</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27857/">PR #27857</a>: Documentation edit for matshow function</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27928/">PR #27928</a>: DOC: Fix syntax for ToolBase.image docstring</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27873/">PR #27873</a>: Simplify the LineCollection example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27492/">PR #27492</a>: Fix semantics of MEP22 image names.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27918/">PR #27918</a>: Fix new flake8 errors from old merge</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27874/">PR #27874</a>: Modernize macosx backend a bit</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25887/">PR #25887</a>: Update <code class="docutils literal notranslate"><span class="pre">_unpack_to_numpy</span></code> function to convert JAX and PyTorch arrays to NumPy</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27685/">PR #27685</a>: Work around pyparsing diagnostic warnings</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26594/">PR #26594</a>: Added optional props argument to Lasso Widget __init__ to customize Lasso line</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/22761/">PR #22761</a>: Add minor ticks on and off in Axis</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/22407/">PR #22407</a>: Add <code class="docutils literal notranslate"><span class="pre">set_XY</span></code> and <code class="docutils literal notranslate"><span class="pre">set_data</span></code> to <code class="docutils literal notranslate"><span class="pre">Quiver</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27901/">PR #27901</a>: Rename boxplot's tick label parameter</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27883/">PR #27883</a>: Fix build on older macOS deployment targets</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27900/">PR #27900</a>: Remove empty user guide tutorials page</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27885/">PR #27885</a>: Clean up headers in extensions</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27910/">PR #27910</a>: DOC: Fix dead link in README</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26567/">PR #26567</a>: Use SVG inheritance diagrams now that linking has been fixed</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27899/">PR #27899</a>: Merge up 3.8.x into main</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27905/">PR #27905</a>: Improved error message for malformed colors</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27906/">PR #27906</a>: Override open_group, close_group methods in PathEffectRenderer</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27904/">PR #27904</a>: FIX: Restore D213 in flake8</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27895/">PR #27895</a>: Remove versions from sidebar in docs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27894/">PR #27894</a>: Mark triangulation classes as final</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27557/">PR #27557</a>: Use :mpltype:<code class="docutils literal notranslate"><span class="pre">color</span></code> for color types</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27845/">PR #27845</a>: Make sure custom alpha param does not change 'none' colors in a list of colors</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27719/">PR #27719</a>: Add BackendRegistry singleton class</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27890/">PR #27890</a>: DOC: State approximate documentation build time</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27887/">PR #27887</a>: BLD: Add a fallback URL for FreeType</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25224/">PR #25224</a>: Allow passing a transformation to secondary_xaxis/_yaxis</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27886/">PR #27886</a>: Fix devdocs version switcher</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27884/">PR #27884</a>: FIX: don't copy twice on RGB input</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27087/">PR #27087</a>: Convert path extension to pybind11</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27867/">PR #27867</a>: DOC: Update some animation related topics</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27848/">PR #27848</a>: FIX: handle nans in RGBA input with ScalarMappables</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27821/">PR #27821</a>: BLD,Cygwin: Include Python.h first in various C++ files</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27457/">PR #27457</a>: TST: adding tests of current clear behavior on ticks</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27872/">PR #27872</a>: doc: add description of <code class="docutils literal notranslate"><span class="pre">**kwargs</span></code> usage to collections</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27868/">PR #27868</a>: Use pybind11 string formatter for exception messages</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27862/">PR #27862</a>: Add dtype/copy args to internal testing class</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27658/">PR #27658</a>: Bump pydata-sphinx-theme</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27303/">PR #27303</a>: FIX: also exclude np.nan in RGB(A) in color mapping</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27860/">PR #27860</a>: Bump the actions group with 2 updates</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27869/">PR #27869</a>: Correctly set temporary pdf/pgf backends</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27850/">PR #27850</a>: Deprecate <code class="docutils literal notranslate"><span class="pre">plot_date</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27815/">PR #27815</a>: Add side option to violinplot</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27836/">PR #27836</a>: DOC: use ... for continuation prompt in docstrings</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27819/">PR #27819</a>: MNT: remove draw method args and kwargs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27813/">PR #27813</a>: DOC: Update violinplot() docs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27698/">PR #27698</a>: Add linting and validation of all YAML files</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27811/">PR #27811</a>: Fix Annulus width check</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27667/">PR #27667</a>: Change return type of <code class="docutils literal notranslate"><span class="pre">ion</span></code> and <code class="docutils literal notranslate"><span class="pre">ioff</span></code> to fix unbound variable errors with Pyright</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27807/">PR #27807</a>: Expand CI pytest reporting config to ignore xfails</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27806/">PR #27806</a>: Remove self._renderer from AnnotationBbox and ConnectionPatch</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27799/">PR #27799</a>: Clarify that set_ticks() affects major/minor ticks independently</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27787/">PR #27787</a>: Improve documentation on boxplot and violinplot</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27800/">PR #27800</a>: Deactivate sidebar for release notes</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27798/">PR #27798</a>: Fix sphinx-gallery CSS</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27462/">PR #27462</a>: DOC: clarify the default value of <em>radius</em> in Patch.contains_point</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27565/">PR #27565</a>: MNT: arghandling subplotspec</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27796/">PR #27796</a>: Make mypy a bit stricter</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27767/">PR #27767</a>: Update handling of sequence labels for plot</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27795/">PR #27795</a>: Add EffVer badge</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27780/">PR #27780</a>: Partly revert #27711</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27768/">PR #27768</a>: MNT: deprecate draw method args and kwargs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27783/">PR #27783</a>: Update README.md to fix citation link</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27726/">PR #27726</a>: TST: always set a (long) timeout for subprocess and always use our wrapper</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27781/">PR #27781</a>: Simplify example: Box plots with custom fill colors</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27750/">PR #27750</a>: Bump the actions group with 2 updates</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27771/">PR #27771</a>: Add marker-only and line+marker visuals to the plot() plot types</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27764/">PR #27764</a>: Increase size of legend in Legend guide example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26800/">PR #26800</a>: Bump minimum NumPy version to 1.23</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27752/">PR #27752</a>: Update some Meson internals</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27702/">PR #27702</a>: GOV: adopt EffVer</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26965/">PR #26965</a>: Removal of deprecated API cm</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27758/">PR #27758</a>: [Doc] Remove special casing for removed method</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25815/">PR #25815</a>: [TST] Make jpl units instantiated with datetimes consistent with mpl converters</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27729/">PR #27729</a>: DOC: Improve colormap normalization example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27732/">PR #27732</a>: TST: Remove memory leak test</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27733/">PR #27733</a>: ci: Simplify CodeQL setup</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27692/">PR #27692</a>: Add method to update position of arrow patch</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27736/">PR #27736</a>: Fix incorrect API reference in docs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27731/">PR #27731</a>: DOC: Create explicit rename legend entry section in guide</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27560/">PR #27560</a>: Moved /users/project to /doc/project</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27728/">PR #27728</a>: Simplify Figure._suplabels.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27715/">PR #27715</a>: Bump the actions group with 3 updates</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27711/">PR #27711</a>: Fix boxplot legend entries part 2</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27696/">PR #27696</a>: DOC: clean up automated tests section of workflow docs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27686/">PR #27686</a>: Improve Locator docstrings</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27704/">PR #27704</a>: ci: Remove prerelease conditions from Azure Pipelines</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27568/">PR #27568</a>: Fix boxplot legend entries</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27694/">PR #27694</a>: MNT: fix labeller</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26953/">PR #26953</a>: MNT: test that table doesn't try to convert unitized data</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27690/">PR #27690</a>: Remove "Past versions" section from release notes</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26926/">PR #26926</a>: Closes #22011: Changes to SubFigures so it behaves like a regular artist</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27469/">PR #27469</a>: Fixed legend with legend location "best" when legend overlaps shaded area and text</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27684/">PR #27684</a>: Bump the actions group with 1 update</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27665/">PR #27665</a>: Axes.inset_axes - warning message removed</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27688/">PR #27688</a>: CI: skip code coverage upload on scheduled tests</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27689/">PR #27689</a>: ci: Don't include API/what's new notes in general doc labels</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27640/">PR #27640</a>: Add <code class="docutils literal notranslate"><span class="pre">get_cursor_data</span></code> to <code class="docutils literal notranslate"><span class="pre">NonUniformImage</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27676/">PR #27676</a>: BLD: Downgrade FreeType to 2.6.1 on Windows ARM</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27619/">PR #27619</a>: Use GH action to install reviewdog</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27552/">PR #27552</a>: TST: Use importlib for importing in pytest</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27650/">PR #27650</a>: DOC: Added call out to API guidelines to contribute + small API guidelines reorg</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27618/">PR #27618</a>: Add option of running stubtest using tox</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27656/">PR #27656</a>: Bump the actions group with 1 update</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27415/">PR #27415</a>: Use class form of data classes</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27649/">PR #27649</a>: Check for latex binary before building docs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27641/">PR #27641</a>: MNT: fix api changes link in PR template</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27644/">PR #27644</a>: ci: Fix mpl_toolkits label</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27230/">PR #27230</a>: Query macOS for available system fonts.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27643/">PR #27643</a>: ci: Update nightly upload for artifacts v4</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27642/">PR #27642</a>: Fix auto-labeler configuration</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27639/">PR #27639</a>: Doc: typo fix for #22699</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26978/">PR #26978</a>: [pre-commit.ci] pre-commit autoupdate</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27563/">PR #27563</a>: Enable PyPI publishing from GitHub Actions</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/22699/">PR #22699</a>: Proof of concept for adding kwdoc content to properties using a decorator</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27633/">PR #27633</a>: Auto-label PRs based on changed files</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27607/">PR #27607</a>: Error on bad input to hexbin extents</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27629/">PR #27629</a>: Don't run CI twice on dependabot branches</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27562/">PR #27562</a>: Avoid an extra copy/resample if imshow input has no alpha</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27628/">PR #27628</a>: Bump the actions group with 2 updates</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27626/">PR #27626</a>: CI: Group dependabot updates</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27589/">PR #27589</a>: Don't clip PowerNorm inputs < vmin</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27613/">PR #27613</a>: Fix marker validator with cycler (allow mix of classes)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27615/">PR #27615</a>: MNT: add spaces to PR template</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27614/">PR #27614</a>: DOC: Updated link in annotation API docs to point to annotation user guide</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27605/">PR #27605</a>: Ignore masked values in boxplot</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26884/">PR #26884</a>: Remove deprecated code from _fontconfig_patterns</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27602/">PR #27602</a>: Let FormatStrFormatter respect axes.unicode_minus.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27601/">PR #27601</a>: Clarify dollar_ticks example and FormatStrFormatter docs.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24834/">PR #24834</a>: Deprecate apply_theta_transforms=True to PolarTransform</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27591/">PR #27591</a>: Use macOS instead of OSX in comments/docs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27577/">PR #27577</a>: MNT: add the running version to pickle warning message</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25191/">PR #25191</a>: Deprecate 'prune' kwarg to MaxNLocator</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27566/">PR #27566</a>: DOC: changed tag <code class="docutils literal notranslate"><span class="pre">plot</span> <span class="pre">type</span></code> to <code class="docutils literal notranslate"><span class="pre">plot-type</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27105/">PR #27105</a>: Use Axes instead of axes core library code</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27575/">PR #27575</a>: Add quotes round .[dev] in editable install command</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27104/">PR #27104</a>: Use Axes instead of axes in galleries</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27373/">PR #27373</a>: Transpose grid_finder tick representation.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27363/">PR #27363</a>: ci: Improve coverage for compiled code</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27200/">PR #27200</a>: DOC: Add role for custom informal types like color</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27548/">PR #27548</a>: DOC: typo fix in contribute doc</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27458/">PR #27458</a>: Check if the mappable is in a different Figure than the one fig.color…</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27546/">PR #27546</a>: MNT: Clean up some style exceptions</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27514/">PR #27514</a>: Improve check for bbox</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27265/">PR #27265</a>: DOC: reorganizing contributing docs to clean up toc, better separate topics</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27517/">PR #27517</a>: Best-legend-location microoptimization</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27540/">PR #27540</a>: Bump github/codeql-action from 2 to 3</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27520/">PR #27520</a>: [Doc] Minor consistency changes and correction of Marker docs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27505/">PR #27505</a>: Download Qhull source from Github, not Qhull servers, in meson build</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27518/">PR #27518</a>: Micro-optimizations related to list handling</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27495/">PR #27495</a>: Bump actions/stale from 8 to 9</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27523/">PR #27523</a>: Changes for stale GHA v9</p></li>