-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathgithub_stats.html
More file actions
1284 lines (1062 loc) · 115 KB
/
github_stats.html
File metadata and controls
1284 lines (1062 loc) · 115 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.10.0 (Dec 13, 2024) — Matplotlib 3.10.0 documentation</title>
<script data-cfasync="false">
document.documentElement.dataset.mode = localStorage.getItem("mode") || "";
document.documentElement.dataset.theme = localStorage.getItem("theme") || "";
</script>
<!-- Loaded before other Sphinx assets -->
<link href="../_static/styles/theme.css?digest=dfe6caa3a7d634c4db9b" rel="stylesheet" />
<link href="../_static/styles/bootstrap.css?digest=dfe6caa3a7d634c4db9b" rel="stylesheet" />
<link href="../_static/styles/pydata-sphinx-theme.css?digest=dfe6caa3a7d634c4db9b" rel="stylesheet" />
<link href="../_static/vendor/fontawesome/6.5.2/css/all.min.css?digest=dfe6caa3a7d634c4db9b" rel="stylesheet" />
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.5.2/webfonts/fa-solid-900.woff2" />
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.5.2/webfonts/fa-brands-400.woff2" />
<link rel="preload" as="font" type="font/woff2" crossorigin href="../_static/vendor/fontawesome/6.5.2/webfonts/fa-regular-400.woff2" />
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=03e43079" />
<link rel="stylesheet" type="text/css" href="../_static/css/style.css?v=86e00652" />
<link rel="stylesheet" type="text/css" href="../_static/graphviz.css?v=4ae1632d" />
<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=d2d258e8" />
<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/sphinx-design.min.css?v=95c83b7e" />
<link rel="stylesheet" type="text/css" href="../_static/mpl.css?v=5448041c" />
<!-- Pre-loaded scripts that we'll load fully later -->
<link rel="preload" as="script" href="../_static/scripts/bootstrap.js?digest=dfe6caa3a7d634c4db9b" />
<link rel="preload" as="script" href="../_static/scripts/pydata-sphinx-theme.js?digest=dfe6caa3a7d634c4db9b" />
<script src="../_static/vendor/fontawesome/6.5.2/js/all.min.js?digest=dfe6caa3a7d634c4db9b"></script>
<script src="../_static/documentation_options.js?v=f8d09eac"></script>
<script src="../_static/doctools.js?v=9bcbadda"></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=f930bc37"></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.4';
DOCUMENTATION_OPTIONS.theme_switcher_json_url = 'https://matplotlib.org/devdocs/_static/switcher.json?v3.10.0-24-g1b80cd3c0b';
DOCUMENTATION_OPTIONS.theme_switcher_version_match = '3.10.0';
DOCUMENTATION_OPTIONS.show_version_warning_banner = true;
</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.10.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.9.4 (Dec 13, 2024)" href="prev_whats_new/github_stats_3.9.4.html" />
<link rel="prev" title="Development change template" href="../api/next_api_changes/development/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="Jan 24, 2025"/>
</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="">
<div id="pst-skip-link" class="skip-link d-print-none"><a href="#main-content">Skip to main content</a></div>
<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"
id="pst-primary-sidebar-checkbox"/>
<label class="overlay overlay-primary" for="pst-primary-sidebar-checkbox"></label>
<input type="checkbox"
class="sidebar-toggle"
id="pst-secondary-sidebar-checkbox"/>
<label class="overlay overlay-secondary" for="pst-secondary-sidebar-checkbox"></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>
<div class="pst-async-banner-revealer d-none">
<aside id="bd-header-version-warning" class="d-none d-print-none" aria-label="Version warning"></aside>
</div>
<header class="bd-header navbar navbar-expand-lg bd-navbar d-print-none">
<div class="bd-header__inner bd-page-width">
<button class="pst-navbar-icon sidebar-toggle primary-toggle" aria-label="Site navigation">
<span class="fa-solid fa-bars"></span>
</button>
<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.10.0 documentation - Home"/>
<script>document.write(`<img src="../_static/logo_dark.svg" class="logo__image only-dark" alt="Matplotlib 3.10.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 pst-navbar-icon 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 nav-link pst-navbar-icon theme-switch-button" title="light/dark" aria-label="light/dark" data-bs-placement="bottom" data-bs-toggle="tooltip">
<i class="theme-switch fa-solid fa-sun fa-lg" data-mode="light"></i>
<i class="theme-switch fa-solid fa-moon fa-lg" data-mode="dark"></i>
<i class="theme-switch fa-solid fa-circle-half-stroke fa-lg" data-mode="auto"></i>
</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 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"
aria-label="Icon Links">
<li class="nav-item">
<a href="https://gitter.im/matplotlib/matplotlib" title="Gitter" class="nav-link pst-navbar-icon" rel="noopener" target="_blank" data-bs-toggle="tooltip" data-bs-placement="bottom"><i class="fa-brands fa-gitter fa-lg" aria-hidden="true"></i>
<span class="sr-only">Gitter</span></a>
</li>
<li class="nav-item">
<a href="https://discourse.matplotlib.org" title="Discourse" class="nav-link pst-navbar-icon" rel="noopener" target="_blank" data-bs-toggle="tooltip" data-bs-placement="bottom"><i class="fa-brands fa-discourse fa-lg" aria-hidden="true"></i>
<span class="sr-only">Discourse</span></a>
</li>
<li class="nav-item">
<a href="https://github.com/matplotlib/matplotlib" title="GitHub" class="nav-link pst-navbar-icon" rel="noopener" target="_blank" data-bs-toggle="tooltip" data-bs-placement="bottom"><i class="fa-brands fa-github fa-lg" aria-hidden="true"></i>
<span class="sr-only">GitHub</span></a>
</li>
<li class="nav-item">
<a href="https://twitter.com/matplotlib/" title="Twitter" class="nav-link pst-navbar-icon" rel="noopener" target="_blank" data-bs-toggle="tooltip" data-bs-placement="bottom"><i class="fa-brands fa-twitter fa-lg" aria-hidden="true"></i>
<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 pst-navbar-icon 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>
<button class="pst-navbar-icon sidebar-toggle secondary-toggle" aria-label="On this page">
<span class="fa-solid fa-outdent"></span>
</button>
</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 nav-link pst-navbar-icon theme-switch-button" title="light/dark" aria-label="light/dark" data-bs-placement="bottom" data-bs-toggle="tooltip">
<i class="theme-switch fa-solid fa-sun fa-lg" data-mode="light"></i>
<i class="theme-switch fa-solid fa-moon fa-lg" data-mode="dark"></i>
<i class="theme-switch fa-solid fa-circle-half-stroke fa-lg" data-mode="auto"></i>
</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 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"
aria-label="Icon Links">
<li class="nav-item">
<a href="https://gitter.im/matplotlib/matplotlib" title="Gitter" class="nav-link pst-navbar-icon" rel="noopener" target="_blank" data-bs-toggle="tooltip" data-bs-placement="bottom"><i class="fa-brands fa-gitter fa-lg" aria-hidden="true"></i>
<span class="sr-only">Gitter</span></a>
</li>
<li class="nav-item">
<a href="https://discourse.matplotlib.org" title="Discourse" class="nav-link pst-navbar-icon" rel="noopener" target="_blank" data-bs-toggle="tooltip" data-bs-placement="bottom"><i class="fa-brands fa-discourse fa-lg" aria-hidden="true"></i>
<span class="sr-only">Discourse</span></a>
</li>
<li class="nav-item">
<a href="https://github.com/matplotlib/matplotlib" title="GitHub" class="nav-link pst-navbar-icon" rel="noopener" target="_blank" data-bs-toggle="tooltip" data-bs-placement="bottom"><i class="fa-brands fa-github fa-lg" aria-hidden="true"></i>
<span class="sr-only">GitHub</span></a>
</li>
<li class="nav-item">
<a href="https://twitter.com/matplotlib/" title="Twitter" class="nav-link pst-navbar-icon" rel="noopener" target="_blank" data-bs-toggle="tooltip" data-bs-placement="bottom"><i class="fa-brands fa-twitter fa-lg" aria-hidden="true"></i>
<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.9.4.html">GitHub statistics for 3.9.4 (Dec 13, 2024)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.9.3.html">GitHub statistics for 3.9.3 (Nov 30, 2024)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.9.2.html">GitHub statistics for 3.9.2 (Aug 12, 2024)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.9.1.html">GitHub statistics for 3.9.1 (Jul 04, 2024)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.9.0.html">GitHub statistics for 3.9.0 (May 15, 2024)</a></li>
<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" role="main">
<div class="bd-content">
<div class="bd-article-container">
<div class="bd-header-article d-print-none">
<div class="header-article-items header-article__inner">
<div class="header-article-items__start">
<div class="header-article-item">
<nav aria-label="Breadcrumb" class="d-print-none">
<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-10-0-dec-13-2024">
<span id="github-stats"></span><h1>GitHub statistics for 3.10.0 (Dec 13, 2024)<a class="headerlink" href="#github-statistics-for-3-10-0-dec-13-2024" title="Link to this heading">#</a></h1>
<p>GitHub statistics for 2024/05/15 (tag: v3.9.0) - 2024/12/13</p>
<p>These lists are automatically generated, and may be incomplete or contain duplicates.</p>
<p>We closed 100 issues and merged 337 pull requests.
The full list can be seen <a class="reference external" href="https://github.com/matplotlib/matplotlib/milestone/84?closed=1">on GitHub</a></p>
<p>The following 128 authors contributed 1932 commits.</p>
<ul class="simple">
<li><p>abhi-jha</p></li>
<li><p>Adam J. Stewart</p></li>
<li><p>Aditi Gautam</p></li>
<li><p>Aditya Vidyadhar Kamath</p></li>
<li><p>Aishling Cooke</p></li>
<li><p>Alan</p></li>
<li><p>Alan Sosa</p></li>
<li><p>Alice</p></li>
<li><p>Aman Nijjar</p></li>
<li><p>Ammar Qazi</p></li>
<li><p>Ancheng</p></li>
<li><p>anpaulan</p></li>
<li><p>Anson0028</p></li>
<li><p>Anthony Lee</p></li>
<li><p>anTon</p></li>
<li><p>Antony Lee</p></li>
<li><p>Ayoub Gouasmi</p></li>
<li><p>Brigitta Sipőcz</p></li>
<li><p>Caitlin Hathaway</p></li>
<li><p>cesar</p></li>
<li><p>Charlie LeWarne</p></li>
<li><p>Christian Mattsson</p></li>
<li><p>ClarkeAC</p></li>
<li><p>Clemens Brunner</p></li>
<li><p>Clement Gilli</p></li>
<li><p>cmp0xff</p></li>
<li><p>Costa Paraskevopoulos</p></li>
<li><p>dale</p></li>
<li><p>Dani Pinyol</p></li>
<li><p>Daniel Weiss</p></li>
<li><p>Danny</p></li>
<li><p>David Bakaj</p></li>
<li><p>David Lowry-Duda</p></li>
<li><p>David Meyer</p></li>
<li><p>David Stansby</p></li>
<li><p>dbakaj</p></li>
<li><p>dependabot[bot]</p></li>
<li><p>Diogo Cardoso</p></li>
<li><p>Doron Behar</p></li>
<li><p>Edgar Andrés Margffoy Tuay</p></li>
<li><p>Elliott Sales de Andrade</p></li>
<li><p>Eytan Adler</p></li>
<li><p>farquh</p></li>
<li><p>Felipe Cybis Pereira</p></li>
<li><p>Filippo Balzaretti</p></li>
<li><p>FMasson</p></li>
<li><p>Francisco Cardozo</p></li>
<li><p>Gavin S</p></li>
<li><p>Greg Lucas</p></li>
<li><p>haaris</p></li>
<li><p>hannah</p></li>
<li><p>Ian Thomas</p></li>
<li><p>Illviljan</p></li>
<li><p>James Addison</p></li>
<li><p>James Spencer</p></li>
<li><p>Jody Klymak</p></li>
<li><p>john</p></li>
<li><p>Jonas Eschle</p></li>
<li><p>Jouni K. Seppänen</p></li>
<li><p>juanis2112</p></li>
<li><p>Juanita Gomez</p></li>
<li><p>Justin Hendrick</p></li>
<li><p>K900</p></li>
<li><p>Kaustbh</p></li>
<li><p>Kaustubh</p></li>
<li><p>Kherim Willems</p></li>
<li><p>Kyle Sunden</p></li>
<li><p>Kyra Cho</p></li>
<li><p>Larry Bradley</p></li>
<li><p>litchi</p></li>
<li><p>Lorenzo</p></li>
<li><p>Lucx33</p></li>
<li><p>Lumberbot (aka Jack)</p></li>
<li><p>MadPhysicist</p></li>
<li><p>malhar2460</p></li>
<li><p>Martino Sorbaro</p></li>
<li><p>Mathias Hauser</p></li>
<li><p>Matthew Feickert</p></li>
<li><p>Matthew Petroff</p></li>
<li><p>Melissa Weber Mendonça</p></li>
<li><p>Michael</p></li>
<li><p>Michael Droettboom</p></li>
<li><p>Michael Hinton</p></li>
<li><p>MischaMegens2</p></li>
<li><p>Moritz Wolter</p></li>
<li><p>muchojp</p></li>
<li><p>Nabil</p></li>
<li><p>nakamura yuki</p></li>
<li><p>odile</p></li>
<li><p>OdileVidrine</p></li>
<li><p>Oscar Gustafsson</p></li>
<li><p>Panicks28</p></li>
<li><p>Paul An</p></li>
<li><p>Pedro Barão</p></li>
<li><p>PedroBittarBarao</p></li>
<li><p>Peter Talley</p></li>
<li><p>Pierre-antoine Comby</p></li>
<li><p>Pranav</p></li>
<li><p>Pranav Raghu</p></li>
<li><p>pre-commit-ci[bot]</p></li>
<li><p>proximalf</p></li>
<li><p>r3kste</p></li>
<li><p>Randolf Scholz</p></li>
<li><p>Refael Ackermann</p></li>
<li><p>RickyP24</p></li>
<li><p>rnhmjoj</p></li>
<li><p>Ruth Comer</p></li>
<li><p>Ryan May</p></li>
<li><p>Sai Chaitanya, Sanivada</p></li>
<li><p>saranti</p></li>
<li><p>scaccol</p></li>
<li><p>Scott Shambaugh</p></li>
<li><p>Sean Smith</p></li>
<li><p>Simon May</p></li>
<li><p>simond07</p></li>
<li><p>smcgrawDotNet</p></li>
<li><p>Takumasa N</p></li>
<li><p>Takumasa N.</p></li>
<li><p>Takumasa Nakamura</p></li>
<li><p>thiagoluisbecker</p></li>
<li><p>Thomas A Caswell</p></li>
<li><p>Tiago Lubiana</p></li>
<li><p>Tim Hoffmann</p></li>
<li><p>trananso</p></li>
<li><p>Trygve Magnus Ræder</p></li>
<li><p>Victor Liu</p></li>
<li><p>vittoboa</p></li>
<li><p>Xeniya Shoiko</p></li>
</ul>
<p>GitHub issues and pull requests:</p>
<p>Pull Requests (337):</p>
<ul class="simple">
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29299/">PR #29299</a>: Merge v3.9.x into v3.10.x</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29296/">PR #29296</a>: Backport PR #29295 on branch v3.10.x (BLD: Pin meson-python to <0.17.0)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29290/">PR #29290</a>: Backport PR #29254 on branch v3.10.x (DOC: Add note to align_labels())</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29289/">PR #29289</a>: Backport PR #29260 on branch v3.10.x (DOC: Better explanation of rcParams "patch.edgecolor" and "patch.force_edgecolor")</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29288/">PR #29288</a>: Backport PR #29285 on branch v3.10.x (Retarget PR#29175 to main)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29254/">PR #29254</a>: DOC: Add note to align_labels()</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29260/">PR #29260</a>: DOC: Better explanation of rcParams "patch.edgecolor" and "patch.force_edgecolor"</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29285/">PR #29285</a>: Retarget PR#29175 to main</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29286/">PR #29286</a>: Backport PR #29274 on branch v3.10.x (Bump the actions group across 1 directory with 2 updates)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29274/">PR #29274</a>: Bump the actions group across 1 directory with 2 updates</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29283/">PR #29283</a>: Backport PR #29272 on branch v3.10.x (DOC: Add section on translating between Axes and pyplot interface)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29272/">PR #29272</a>: DOC: Add section on translating between Axes and pyplot interface</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29279/">PR #29279</a>: Backport PR #29265 on branch v3.10.x (DOC: Slightly improve the LineCollection docstring)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29276/">PR #29276</a>: Backport PR #29247 on branch v3.10.x (Fix building freetype 2.6.1 on macOS clang 18)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29244/">PR #29244</a>: Switch to a 3d rotation trackball implementation with path independence</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29265/">PR #29265</a>: DOC: Slightly improve the LineCollection docstring</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29247/">PR #29247</a>: Fix building freetype 2.6.1 on macOS clang 18</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29268/">PR #29268</a>: Bump the actions group with 2 updates</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29266/">PR #29266</a>: Backport PR #29251 on branch v3.10.x (Zizmor audit)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29269/">PR #29269</a>: Backport PR #29267 on branch v3.10.x (Exclude pylab from mypy checks)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29267/">PR #29267</a>: Exclude pylab from mypy checks</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29251/">PR #29251</a>: Zizmor audit</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29255/">PR #29255</a>: Backport PR #29249 on branch v3.10.x ([Bug Fix] Fix reverse mapping for _translate_tick_params)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29249/">PR #29249</a>: [Bug Fix] Fix reverse mapping for _translate_tick_params</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29250/">PR #29250</a>: Backport PR #29243 on branch v3.10.x (Add quotes around [dev] in environment.yml)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29243/">PR #29243</a>: Add quotes around [dev] in environment.yml</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29246/">PR #29246</a>: Backport PR #29240 on branch v3.10.x (DOC: Add plt.show() to introductory pyplot example)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29240/">PR #29240</a>: DOC: Add plt.show() to introductory pyplot example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29239/">PR #29239</a>: Backport PR #29236 on branch v3.10.x (ANI: Reduce Pillow frames to RGB when opaque)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29238/">PR #29238</a>: Backport PR #29167 on branch v3.10.x (BUGFIX: use axes unit information in ConnectionPatch )</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29236/">PR #29236</a>: ANI: Reduce Pillow frames to RGB when opaque</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29167/">PR #29167</a>: BUGFIX: use axes unit information in ConnectionPatch</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29232/">PR #29232</a>: Merge branch v3.9.x into v3.10.x</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29230/">PR #29230</a>: Backport PR #29188 on branch v3.10.x (Bump pypa/cibuildwheel from 2.21.3 to 2.22.0 in the actions group)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29188/">PR #29188</a>: Bump pypa/cibuildwheel from 2.21.3 to 2.22.0 in the actions group</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29225/">PR #29225</a>: Backport PR #29213 on branch v3.10.x (avoid-unnecessary-warning-in-_pcolorargs-function)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29211/">PR #29211</a>: Backport PR #29133 on branch v3.10.x (Creating_parse_bar_color_args to unify color handling in plt.bar with precedence and sequence support for facecolor and edgecolor)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29177/">PR #29177</a>: Backport PR #29148 on branch v3.10.x (Don't fail on equal-but-differently-named cmaps in qt figureoptions.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29226/">PR #29226</a>: Backport PR #29206 on branch v3.10.x (Skip more tests on pure-Wayland systems)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29206/">PR #29206</a>: Skip more tests on pure-Wayland systems</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29213/">PR #29213</a>: avoid-unnecessary-warning-in-_pcolorargs-function</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29210/">PR #29210</a>: Backport PR #29209 on branch v3.10.x (FIX: pcolormesh with no x y args and nearest interp)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29133/">PR #29133</a>: Creating_parse_bar_color_args to unify color handling in plt.bar with precedence and sequence support for facecolor and edgecolor</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29209/">PR #29209</a>: FIX: pcolormesh with no x y args and nearest interp</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29200/">PR #29200</a>: Backport PR #29182 on branch v3.10.x (Update backend_qt.py: parent not passed to __init__ on subplottool)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29207/">PR #29207</a>: Backport PR #29169 on branch v3.10.x (Minor fixes to text intro explainer)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29169/">PR #29169</a>: Minor fixes to text intro explainer</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29159/">PR #29159</a>: Pending warning for deprecated parameter 'vert' of box and violin on 3.10</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29196/">PR #29196</a>: Backport PR #29191 on branch v3.10.x (ci: Simplify 3.13t test setup)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29182/">PR #29182</a>: Update backend_qt.py: parent not passed to __init__ on subplottool</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29189/">PR #29189</a>: Backport PR #28934 on branch v3.10.x (ci: Unpin micromamba again)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29186/">PR #29186</a>: Backport PR #28335 on branch v3.10.x (DOC: do not posting LLM output as your own work)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28934/">PR #28934</a>: ci: Unpin micromamba again</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28335/">PR #28335</a>: DOC: do not posting LLM output as your own work</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29178/">PR #29178</a>: Backport PR #29163 on branch v3.9.x (ci: Remove outdated pkg-config package on macOS)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29170/">PR #29170</a>: Backport PR #29154 on branch v3.10.x (Relax conditions for warning on updating converters)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29154/">PR #29154</a>: Relax conditions for warning on updating converters</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29166/">PR #29166</a>: Backport PR #29153 on branch v3.10.x (Bump codecov/codecov-action from 4 to 5 in the actions group)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29164/">PR #29164</a>: Backport PR #29163 on branch v3.10.x (ci: Remove outdated pkg-config package on macOS)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29168/">PR #29168</a>: Backport PR #29073 on branch v3.10.x (Update secondary_axis tutorial)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29073/">PR #29073</a>: Update secondary_axis tutorial</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29163/">PR #29163</a>: ci: Remove outdated pkg-config package on macOS</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29145/">PR #29145</a>: Backport PR #29144 on branch v3.10.x (Use both TCL_SETVAR and TCL_SETVAR2 for tcl 9 support)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29144/">PR #29144</a>: Use both TCL_SETVAR and TCL_SETVAR2 for tcl 9 support</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29140/">PR #29140</a>: Backport PR #29080 on branch v3.10.x (Updates the <code class="docutils literal notranslate"><span class="pre">galleries/tutorials/artists.py</span></code> file in response to issue #28920)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29080/">PR #29080</a>: Updates the <code class="docutils literal notranslate"><span class="pre">galleries/tutorials/artists.py</span></code> file in response to issue #28920</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29138/">PR #29138</a>: Backport PR #29134 on branch v3.10.x (MNT: Temporarily skip failing test to unbreak CI)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29134/">PR #29134</a>: MNT: Temporarily skip failing test to unbreak CI</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29132/">PR #29132</a>: Backport PR #29128 on branch v3.10.x (Tweak AutoMinorLocator docstring.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29128/">PR #29128</a>: Tweak AutoMinorLocator docstring.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29123/">PR #29123</a>: Bump the actions group with 2 updates</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29122/">PR #29122</a>: Backport PR #29120 on branch v3.10.x (DOC: Switch nested pie example from cmaps to color_sequences)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29100/">PR #29100</a>: Backport PR #29099 on branch v3.10.x (MNT: remove _ttconv.pyi)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29099/">PR #29099</a>: MNT: remove _ttconv.pyi</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29098/">PR #29098</a>: Backport PR #29097 on branch v3.10.x (ENH: add back/forward buttons to osx backend move)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29097/">PR #29097</a>: ENH: add back/forward buttons to osx backend move</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29095/">PR #29095</a>: Backport PR #29071 on branch v3.10.x (Bump pypa/gh-action-pypi-publish from 1.10.3 to 1.11.0 in the actions group)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29096/">PR #29096</a>: Backport PR #29094 on branch v3.10.x (DOC: fix link in See Also section of axes.violin)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29092/">PR #29092</a>: Backport PR #29088 on branch v3.10.x (DOC: Format aliases in kwargs tables)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29094/">PR #29094</a>: DOC: fix link in See Also section of axes.violin</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29091/">PR #29091</a>: Backport PR #29085 on branch v3.10.x (FIX: Update GTK3Agg backend export name for consistency)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29088/">PR #29088</a>: DOC: Format aliases in kwargs tables</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29089/">PR #29089</a>: Backport PR #29065 on branch v3.10.x (DOC: Update docstring of triplot())</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29085/">PR #29085</a>: FIX: Update GTK3Agg backend export name for consistency</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29084/">PR #29084</a>: Backport PR #29081 on branch v3.10.x (Document "none" as color value)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29065/">PR #29065</a>: DOC: Update docstring of triplot()</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29081/">PR #29081</a>: Document "none" as color value</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29061/">PR #29061</a>: Backport PR #29024 on branch v3.10.x (Fix saving animations to transparent formats)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29069/">PR #29069</a>: Backport PR #29068 on branch v3.10.x ([DOC] Fix indentation in sync_cmaps example)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29070/">PR #29070</a>: Backport PR #29048 on branch v3.10.x (DOC: integrated pr workflow from contributing guide into install and workflow)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29048/">PR #29048</a>: DOC: integrated pr workflow from contributing guide into install and workflow</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29068/">PR #29068</a>: [DOC] Fix indentation in sync_cmaps example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29024/">PR #29024</a>: Fix saving animations to transparent formats</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29059/">PR #29059</a>: Cleanup converter docs and StrCategoryConverter behavior</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29058/">PR #29058</a>: [DOC] Update missing-references.json</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29057/">PR #29057</a>: DOC/TST: lock numpy<2.1 in environment.yml</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29053/">PR #29053</a>: Factor out common formats strings in LogFormatter, LogFormatterExponent.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28970/">PR #28970</a>: Add explicit converter setting to Axis</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28048/">PR #28048</a>: Enables setting hatch linewidth in Patches and Collections, also fixes setting hatch linewidth by rcParams</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29017/">PR #29017</a>: DOC: Document preferred figure size for examples</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28871/">PR #28871</a>: updated contribution doc #28476</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28453/">PR #28453</a>: Stop relying on dead-reckoning mouse buttons for motion_notify_event.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28495/">PR #28495</a>: ticker.EngFormatter: allow offset</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29039/">PR #29039</a>: MNT: Add provisional get_backend(resolve=False) flag</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28946/">PR #28946</a>: MNT: Deprecate plt.polar() with an existing non-polar Axes</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29013/">PR #29013</a>: FIX: auto_fmtxdate for constrained layout</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29022/">PR #29022</a>: Fixes AIX internal CI build break.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28830/">PR #28830</a>: Feature: Support passing DataFrames to table.table</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27766/">PR #27766</a>: Return filename from save_figure</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27167/">PR #27167</a>: ENH: add long_axis property to colorbar</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29021/">PR #29021</a>: Update minimum pybind11 to 2.13.2</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28863/">PR #28863</a>: Improved documentation for quiver</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29019/">PR #29019</a>: Update requirements to add PyStemmer to doc-requirements and environment</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28653/">PR #28653</a>: Mnt/generalize plot varargs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28967/">PR #28967</a>: Fix MSVC cast warnings</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29016/">PR #29016</a>: DOC: Better explain suptitle / supxlabel / supylabel naming</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28842/">PR #28842</a>: FT2Font extension improvements</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28658/">PR #28658</a>: New data → color pipeline</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29012/">PR #29012</a>: Bump required pybind11 to 2.13</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29007/">PR #29007</a>: MNT: Deprecate changing Figure.number</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28861/">PR #28861</a>: Break Artist._remove_method reference cycle</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28478/">PR #28478</a>: bugfix for <code class="docutils literal notranslate"><span class="pre">PathSimplifier</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28992/">PR #28992</a>: DOC: Refresh transform tree example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28890/">PR #28890</a>: MNT: Add missing dependency to environment.yml</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28354/">PR #28354</a>: Add Quiverkey zorder option</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28966/">PR #28966</a>: Fix polar error bar cap orientation</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28819/">PR #28819</a>: Mark all extensions as free-threading safe</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28986/">PR #28986</a>: DOC: Add tags for 3D fill_between examples</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28984/">PR #28984</a>: DOC / BUG: Better example for 3D axlim_clip argument</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/20866/">PR #20866</a>: Remove ttconv and implement Type-42 embedding using fontTools</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28975/">PR #28975</a>: Set guiEvent where applicable for gtk4.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28568/">PR #28568</a>: added tags to mplot3d examples</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28976/">PR #28976</a>: Bump pypa/cibuildwheel from 2.21.2 to 2.21.3 in the actions group</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28978/">PR #28978</a>: CI: Resolve mypy stubtest build errors</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28823/">PR #28823</a>: Fix 3D rotation precession</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28841/">PR #28841</a>: Make mplot3d mouse rotation style adjustable</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28971/">PR #28971</a>: DOC: correct linestyle example and reference rcParams</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28702/">PR #28702</a>: [MNT]: #28701 separate the generation of polygon vertices in fill_between to enable resampling</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28965/">PR #28965</a>: Suggest imageio_ffmpeg to provide ffmpeg as animation writer.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28964/">PR #28964</a>: FIX macos: Use the agg buffer_rgba rather than private attribute</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28963/">PR #28963</a>: Remove refs to outdated writers in animation.py.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28948/">PR #28948</a>: Raise ValueError for RGB values outside the [0, 1] range in rgb_to_hsv function</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28857/">PR #28857</a>: Pybind11 cleanup</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28949/">PR #28949</a>: [pre-commit.ci] pre-commit autoupdate</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28950/">PR #28950</a>: Bump the actions group with 2 updates</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28904/">PR #28904</a>: Agg: Remove 16-bit limits</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28856/">PR #28856</a>: Convert remaining code to pybind11</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28874/">PR #28874</a>: Remove remaining 3.8 deprecations</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28943/">PR #28943</a>: DOC: Clarify the returned line of axhline()/axvline()</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28935/">PR #28935</a>: DOC: Fix invalid rcParam references</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28942/">PR #28942</a>: In colorbar docs, add ref from 'boundaries' doc to 'spacing' doc.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28933/">PR #28933</a>: Switch AxLine.set_xy{1,2} to take a single argument.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28869/">PR #28869</a>: ci: Bump build image on AppVeyor to MSVC 2019</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28906/">PR #28906</a>: Re-fix exception caching in dviread.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27349/">PR #27349</a>: [ENH] Implement dynamic clipping to axes limits for 3D plots</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28913/">PR #28913</a>: DOC: Fix Axis.set_label reference</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28911/">PR #28911</a>: MNT: Fix double evaluation of _LazyTickList</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28584/">PR #28584</a>: MNT: Prevent users from erroneously using legend label API on Axis</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28853/">PR #28853</a>: MNT: Check the input sizes of regular X,Y in pcolorfast</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28838/">PR #28838</a>: TST: Fix minor issues in interactive backend test</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28795/">PR #28795</a>: MNT: Cleanup docstring substitution mechanisms</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28897/">PR #28897</a>: Fix minor issues in stubtest wrapper</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28899/">PR #28899</a>: Don't cache exception with traceback reference loop in dviread.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28888/">PR #28888</a>: DOC: Better visualization for the default color cycle example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28896/">PR #28896</a>: doc: specify non-python dependencies in dev install docs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28843/">PR #28843</a>: MNT: Cleanup FontProperties __init__ API</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28683/">PR #28683</a>: MNT: Warn if fixed aspect overwrites explicitly set data limits</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25645/">PR #25645</a>: Fix issue with sketch not working on PathCollection in Agg</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28886/">PR #28886</a>: DOC: Cross-link Axes attributes</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28880/">PR #28880</a>: Remove 'in' from removal substitution for deprecation messages</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28875/">PR #28875</a>: DOC: Fix documentation of hist() kwarg lists</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28825/">PR #28825</a>: DOC: Fix non-working code object references</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28862/">PR #28862</a>: Improve pie chart error messages</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28844/">PR #28844</a>: DOC: Add illustration to Figure.subplots_adjust</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28588/">PR #28588</a>: Fix scaling in Tk on non-Windows systems</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28849/">PR #28849</a>: DOC: Mark subfigures as no longer provisional</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26000/">PR #26000</a>: making onselect a keyword argument on selectors</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26013/">PR #26013</a>: Support unhashable callbacks in CallbackRegistry</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27011/">PR #27011</a>: Convert Agg extension to pybind11</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28845/">PR #28845</a>: In examples, prefer named locations rather than location numbers.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27218/">PR #27218</a>: API: finish LocationEvent.lastevent removal</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/26870/">PR #26870</a>: Removed the deprecated code from axis.py</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27996/">PR #27996</a>: Create <code class="docutils literal notranslate"><span class="pre">InsetIndicator</span></code> artist</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28532/">PR #28532</a>: TYP: Fix xycoords and friends</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28785/">PR #28785</a>: Convert ft2font extension to pybind11</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28815/">PR #28815</a>: DOC: Document policy on colormaps and styles</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28826/">PR #28826</a>: MNT: Replace _docstring.dedent_interpd by its alias _docstring.interpd</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27567/">PR #27567</a>: DOC: batch of tags</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27302/">PR #27302</a>: Tags for simple_scatter.py demo</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28820/">PR #28820</a>: DOC: Fix missing cross-reference checks for sphinx-tags</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28786/">PR #28786</a>: Handle single color in ContourSet</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28808/">PR #28808</a>: DOC: Add a plot to margins() to visualize the effect</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27938/">PR #27938</a>: feat: add dunder method for math operations on Axes Size divider</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28569/">PR #28569</a>: Adding tags to many examples</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28183/">PR #28183</a>: Expire deprecations</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28801/">PR #28801</a>: DOC: Clarify AxLine.set_xy2 / AxLine.set_slope</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28788/">PR #28788</a>: TST: Skip webp tests if it isn't available</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28550/">PR #28550</a>: Remove internal use of <code class="docutils literal notranslate"><span class="pre">Artist.figure</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28767/">PR #28767</a>: MNT: expire <code class="docutils literal notranslate"><span class="pre">ContourSet</span></code> deprecations</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28755/">PR #28755</a>: TYP: Add typing for internal _tri extension</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28765/">PR #28765</a>: Add tests for most of FT2Font, and fix some bugs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28781/">PR #28781</a>: TST: Fix test_pickle_load_from_subprocess in a dirty tree</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28783/">PR #28783</a>: Fix places where "auto" was not listed as valid interpolation_stage.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28779/">PR #28779</a>: DOC/TST: lock numpy < 2.1</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28771/">PR #28771</a>: Ensure SketchParams is always fully initialized</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28375/">PR #28375</a>: FIX: Made AffineDeltaTransform pass-through properly</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28454/">PR #28454</a>: MultivarColormap and BivarColormap</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27891/">PR #27891</a>: Refactor some parts of ft2font extension</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28752/">PR #28752</a>: quick fix dev build by locking out numpy version that's breaking things</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28749/">PR #28749</a>: Add sphinxcontrib-video to environment.yml</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27851/">PR #27851</a>: Add ten-color accessible color cycle as style sheet</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28501/">PR #28501</a>: ConciseDateFormatter's offset string is correct on an inverted axis</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28734/">PR #28734</a>: Compressed layout moves suptitle</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28736/">PR #28736</a>: Simplify some code in dviread</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28347/">PR #28347</a>: Doc: added triage section to new contributor docs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28735/">PR #28735</a>: ci: Avoid setuptools 72.2.0 when installing kiwi on PyPy</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28728/">PR #28728</a>: MNT: Deprecate reimported functions in top-level namespace</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28730/">PR #28730</a>: MNT: Don't rely on RcParams being a dict subclass in internal code</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28714/">PR #28714</a>: Simplify _api.warn_external on Python 3.12+</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28727/">PR #28727</a>: MNT: Better workaround for format_cursor_data on ScalarMappables</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28725/">PR #28725</a>: Stop disabling FH4 Exception Handling on MSVC</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28711/">PR #28711</a>: Merge branch v3.9.x into main</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28713/">PR #28713</a>: DOC: Add a few more notes to release guide</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28720/">PR #28720</a>: DOC: Clarify axhline() uses axes coordinates</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28718/">PR #28718</a>: DOC: Update missing references for numpydoc 1.8.0</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28710/">PR #28710</a>: DOC: clarify alpha handling for indicate_inset[_zoom]</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28704/">PR #28704</a>: Fixed arrowstyle doc interpolation in FancyPatch.set_arrow() #28698.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28709/">PR #28709</a>: Bump actions/attest-build-provenance from 1.4.0 to 1.4.1 in the actions group</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28707/">PR #28707</a>: Avoid division-by-zero in Sketch::Sketch</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28610/">PR #28610</a>: CI: Add CI to test matplotlib against free-threaded Python</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28262/">PR #28262</a>: Fix PolygonSelector cursor to temporarily hide during active zoom/pan</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28670/">PR #28670</a>: API: deprecate unused helper in patch._Styles</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28589/">PR #28589</a>: Qt embedding example: Separate drawing and data retrieval timers</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28655/">PR #28655</a>: Inline annotation and PGF user demos</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28654/">PR #28654</a>: DOC: Remove long uninstructive examples</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28652/">PR #28652</a>: Fix docstring style inconsistencies in lines.py</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28641/">PR #28641</a>: DOC: Standardize example titles - part 2</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28642/">PR #28642</a>: DOC: Simplify heatmap example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28638/">PR #28638</a>: DOC: Remove hint on PRs from origin/main</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28587/">PR #28587</a>: Added dark-mode diverging colormaps</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28546/">PR #28546</a>: DOC: Clarify/simplify example of multiple images with one colorbar</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28613/">PR #28613</a>: Added documentation for parameters vmin and vmax inside specgram function.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28627/">PR #28627</a>: DOC: Bump minimum Sphinx to 5.1.0</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28628/">PR #28628</a>: DOC: Sub-structure next API changes overview</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28629/">PR #28629</a>: FIX: <code class="docutils literal notranslate"><span class="pre">Axis.set_in_layout</span></code> respected</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28575/">PR #28575</a>: Add branch tracking to development workflow instructions</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28616/">PR #28616</a>: CI: Build docs on latest Python</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28617/">PR #28617</a>: DOC: Enable parallel builds</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28544/">PR #28544</a>: DOC: Standardize example titles</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28615/">PR #28615</a>: DOC: hack to suppress sphinx-gallery 17.0 warning</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28293/">PR #28293</a>: BLD: Enable building Python 3.13 wheels for nightlies</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27385/">PR #27385</a>: Fix 3D lines being visible when behind camera</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28609/">PR #28609</a>: svg: Ensure marker-only lines get URLs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28599/">PR #28599</a>: Upgrade code to Python 3.10</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28593/">PR #28593</a>: Update ruff to 0.2.0</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28603/">PR #28603</a>: Simplify ttconv python<->C++ conversion using std::optional.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28557/">PR #28557</a>: DOC: apply toc styling to remove nesting</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28542/">PR #28542</a>: CI: adjust pins in mypy GHA job</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28504/">PR #28504</a>: Changes in SVG backend to improve compatibility with Affinity designer</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28122/">PR #28122</a>: Disable clipping in Agg resamplers.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28597/">PR #28597</a>: Pin PyQt6 back on Ubuntu 20.04</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28073/">PR #28073</a>: Add support for multiple hatches, edgecolors and linewidths in histograms</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28594/">PR #28594</a>: MNT: Raise on GeoAxes limits manipulation</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28312/">PR #28312</a>: Remove one indirection layer in ToolSetCursor.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28573/">PR #28573</a>: ENH: include property name in artist AttributeError</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28503/">PR #28503</a>: Bump minimum Python to 3.10</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28525/">PR #28525</a>: FIX: colorbar pad for <code class="docutils literal notranslate"><span class="pre">ImageGrid</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28558/">PR #28558</a>: DOC: Change _make_image signature to numpydoc</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28061/">PR #28061</a>: API: add antialiased to interpolation-stage in image</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28536/">PR #28536</a>: [svg] Add rcParam["svg.id"] to add a top-level id attribute to <svg></p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28540/">PR #28540</a>: Subfigures become stale when their artists are stale</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28177/">PR #28177</a>: Rationalise artist get_figure methods; make figure attribute a property</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28527/">PR #28527</a>: DOC: improve tagging guidelines page</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28530/">PR #28530</a>: DOC: Simplify axhspan example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28537/">PR #28537</a>: DOC: Update timeline example for newer releases</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27833/">PR #27833</a>: [SVG] Introduce sequential ID-generation scheme for clip-paths.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28512/">PR #28512</a>: DOC: Fix version switcher for stable docs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28492/">PR #28492</a>: MNT: Remove PolyQuadMesh deprecations</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28509/">PR #28509</a>: CI: Use micromamba on AppVeyor</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28510/">PR #28510</a>: Merge v3.9.1 release into main</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28494/">PR #28494</a>: [pre-commit.ci] pre-commit autoupdate</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28497/">PR #28497</a>: Add words to ignore for codespell</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28455/">PR #28455</a>: Expand ticklabels_rotation example to cover rotating default ticklabels.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28282/">PR #28282</a>: DOC: clarify no-build-isolation & mypy ignoring new functions</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28306/">PR #28306</a>: Fixed PolarAxes not using fmt_xdata and added simple test (#4568)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28400/">PR #28400</a>: DOC: Improve doc wording of data parameter</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28225/">PR #28225</a>: [ENH]: fill_between extended to 3D</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28371/">PR #28371</a>: Bump pypa/cibuildwheel from 2.18.1 to 2.19.0 in the actions group</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28390/">PR #28390</a>: Inline RendererBase._get_text_path_transform.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28381/">PR #28381</a>: Take hinting rcParam into account in MathTextParser cache.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28363/">PR #28363</a>: flip subfigures axes to match subplots</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28340/">PR #28340</a>: Fix missing font error when using MiKTeX</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28379/">PR #28379</a>: PathEffectsRenderer can plainly inherit RendererBase._draw_text_as_path.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28275/">PR #28275</a>: Revive sanitizing default filenames extracted from UI window titles</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28360/">PR #28360</a>: DOC: fixed code for testing check figures equal example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28370/">PR #28370</a>: Reorder Axes3D parameters semantically.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28350/">PR #28350</a>: Typo in communication guide: extensiblity -> extensibility</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/28290/">PR #28290</a>: Introduce natural 3D rotation with mouse</p></li>