-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathgithub_stats.html
More file actions
2027 lines (1825 loc) · 231 KB
/
github_stats.html
File metadata and controls
2027 lines (1825 loc) · 231 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.11.0 (May 12, 2026) — Matplotlib 3.11.0rc2 documentation</title>
<script data-cfasync="false">
document.documentElement.dataset.mode = localStorage.getItem("mode") || "";
document.documentElement.dataset.theme = localStorage.getItem("theme") || "";
</script>
<!--
this give us a css class that will be invisible only if js is disabled
-->
<noscript>
<style>
.pst-js-only { display: none !important; }
</style>
</noscript>
<!-- Loaded before other Sphinx assets -->
<link href="../_static/styles/theme.css?digest=8878045cc6db502f8baf" rel="stylesheet" />
<link href="../_static/styles/pydata-sphinx-theme.css?digest=8878045cc6db502f8baf" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=03e43079" />
<link rel="stylesheet" type="text/css" href="../_static/css/style.css?v=522e7f4d" />
<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=fd6457a4" />
<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=5a7e13c8" />
<!-- So that users can add custom icons -->
<script src="../_static/scripts/fontawesome.js?digest=8878045cc6db502f8baf"></script>
<!-- Pre-loaded scripts that we'll load fully later -->
<link rel="preload" as="script" href="../_static/scripts/bootstrap.js?digest=8878045cc6db502f8baf" />
<link rel="preload" as="script" href="../_static/scripts/pydata-sphinx-theme.js?digest=8878045cc6db502f8baf" />
<script src="../_static/documentation_options.js?v=5e7fea70"></script>
<script src="../_static/doctools.js?v=fd6eb6e6"></script>
<script src="../_static/sphinx_highlight.js?v=6ffebe34"></script>
<script src="../_static/sg-tags.js?v=d80f6fa4"></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>DOCUMENTATION_OPTIONS.pagename = 'release/github_stats';</script>
<script>
DOCUMENTATION_OPTIONS.theme_version = '0.16.1';
DOCUMENTATION_OPTIONS.theme_switcher_json_url = 'https://matplotlib.org/devdocs/_static/switcher.json?v3.11.0rc2-1-g7c4bea5491';
DOCUMENTATION_OPTIONS.theme_switcher_version_match = 'dev';
DOCUMENTATION_OPTIONS.show_version_warning_banner =
true;
</script>
<link rel="canonical" href="https://matplotlib.org/stable/release/github_stats.html" />
<link rel="search" type="application/opensearchdescription+xml"
title="Search within Matplotlib 3.11.0rc2 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="Glyph indices now typed distinctly from character codes" href="../api/next_api_changes/development/30143-ES.html" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="docsearch:language" content="en"/>
<meta name="docsearch:version" content="3.11.0rc2" />
<meta name="docbuild:last-update" content="May 12, 2026"/>
</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>
<dialog id="pst-search-dialog">
<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"
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>
</dialog>
<div class="bd-header-announcement container-fluid" id="unreleased-message">
<div class="bd-header-announcement__content">
You are reading documentation for the unreleased version of Matplotlib.
<a href="https://matplotlib.org/search.html?q=GitHub%20statistics%20for%203.11.0%20%28May%2012%2C%202026%29&check_keywords=yes&area=default">
Try searching for the released version of this page instead?
</a>
</div>
</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.11.0rc2 documentation - Home"/>
<img src="../_static/logo_dark.svg" class="logo__image only-dark pst-js-only" alt="Matplotlib 3.11.0rc2 documentation - Home"/>
</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="../users/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="../users/release_notes.html">Releases</a>
</li>
</ul></div>
</div>
<div class="navbar-header-items__end">
<div class="navbar-item navbar-persistent--container">
<button class="btn btn-sm pst-navbar-icon search-button search-button__button pst-js-only" title="Search" aria-label="Search" data-bs-placement="bottom" data-bs-toggle="tooltip">
<i class="fa-solid fa-magnifying-glass fa-lg"></i>
</button>
</div>
<div class="navbar-item">
<button class="btn btn-sm nav-link pst-navbar-icon theme-switch-button pst-js-only" aria-label="Color mode" data-bs-title="Color mode" data-bs-placement="bottom" data-bs-toggle="tooltip">
<i class="theme-switch fa-solid fa-sun fa-lg" data-mode="light" title="Light"></i>
<i class="theme-switch fa-solid fa-moon fa-lg" data-mode="dark" title="Dark"></i>
<i class="theme-switch fa-solid fa-circle-half-stroke fa-lg" data-mode="auto" title="System Settings"></i>
</button></div>
<div class="navbar-item">
<div class="version-switcher__container dropdown pst-js-only">
<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></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>
</ul></div>
</div>
</div>
<div class="navbar-persistent--mobile">
<button class="btn btn-sm pst-navbar-icon search-button search-button__button pst-js-only" title="Search" aria-label="Search" data-bs-placement="bottom" data-bs-toggle="tooltip">
<i class="fa-solid fa-magnifying-glass fa-lg"></i>
</button>
</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">
<dialog id="pst-primary-sidebar-modal"></dialog>
<div id="pst-primary-sidebar" 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="../users/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="../users/release_notes.html">Releases</a>
</li>
</ul></div>
</div>
<div class="sidebar-header-items__end">
<div class="navbar-item">
<button class="btn btn-sm nav-link pst-navbar-icon theme-switch-button pst-js-only" aria-label="Color mode" data-bs-title="Color mode" data-bs-placement="bottom" data-bs-toggle="tooltip">
<i class="theme-switch fa-solid fa-sun fa-lg" data-mode="light" title="Light"></i>
<i class="theme-switch fa-solid fa-moon fa-lg" data-mode="dark" title="Dark"></i>
<i class="theme-switch fa-solid fa-circle-half-stroke fa-lg" data-mode="auto" title="System Settings"></i>
</button></div>
<div class="navbar-item">
<div class="version-switcher__container dropdown pst-js-only">
<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></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>
</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.10.9.html">GitHub statistics for 3.10.9 (Apr 23, 2026)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.10.8.html">GitHub statistics for 3.10.8 (Nov 12, 2025)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.10.7.html">GitHub statistics for 3.10.7 (Oct 08, 2025)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.10.6.html">GitHub statistics for 3.10.6 (Aug 29, 2025)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.10.5.html">GitHub statistics for 3.10.5 (Jul 31, 2025)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.10.3.html">GitHub statistics for 3.10.3 (May 08, 2025)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.10.1.html">GitHub statistics for 3.10.1 (Feb 27, 2025)</a></li>
<li class="toctree-l1"><a class="reference internal" href="prev_whats_new/github_stats_3.10.0.html">GitHub statistics for 3.10.0 (Dec 13, 2024)</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 class="sidebar-primary-item">
<div id="ethical-ad-placement"
class="flat"
data-ea-publisher="readthedocs"
data-ea-type="readthedocs-sidebar"
data-ea-manual="true">
</div></div>
</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"><span class="ellipsis">GitHub statistics for 3.11.0 (May 12, 2026)</span></li>
</ul>
</nav>
</div>
</div>
</div>
</div>
<div id="searchbox"></div>
<article class="bd-article">
<section id="github-statistics-for-3-11-0-may-12-2026">
<span id="github-stats"></span><h1>GitHub statistics for 3.11.0 (May 12, 2026)<a class="headerlink" href="#github-statistics-for-3-11-0-may-12-2026" title="Link to this heading">#</a></h1>
<p>GitHub statistics for 2024/12/14 (tag: v3.10.0) - 2026/05/12</p>
<p>These lists are automatically generated, and may be incomplete or contain duplicates.</p>
<p>We closed 257 issues and merged 812 pull requests.
The full list can be seen <a class="reference external" href="https://github.com/matplotlib/matplotlib/milestone/96?closed=1">on GitHub</a></p>
<p>The following 266 authors contributed 4674 commits.</p>
<ul class="simple">
<li><p>34j</p></li>
<li><p>Aaratrika-Shelly</p></li>
<li><p>Aaron Meurer</p></li>
<li><p>Aasma Gupta</p></li>
<li><p>Abhiroop Batabyal</p></li>
<li><p>Abitamim Bharmal</p></li>
<li><p>Adam Ormondroyd</p></li>
<li><p>AdamOrmondroyd</p></li>
<li><p>Aditya Singh</p></li>
<li><p>aditya-singh597</p></li>
<li><p>AdrashDec</p></li>
<li><p>Aishling Cooke</p></li>
<li><p>Alan Burlot</p></li>
<li><p>Albert Y. Shih</p></li>
<li><p>ALBIN BABU VARGHESE</p></li>
<li><p>albus-droid</p></li>
<li><p>Alexandra Khoo</p></li>
<li><p>Allison</p></li>
<li><p>alphanoobie</p></li>
<li><p>AMAN KUSHWAHA</p></li>
<li><p>Aman Kushwaha</p></li>
<li><p>Aman Nijjar</p></li>
<li><p>Aman Parganiha</p></li>
<li><p>Aman Srivastava</p></li>
<li><p>Amisha Mehta</p></li>
<li><p>amishamehta99</p></li>
<li><p>Amitesh Singh</p></li>
<li><p>Anabelle VanDenburgh</p></li>
<li><p>Andrea Alberti</p></li>
<li><p>Andres Gutierrrez</p></li>
<li><p>Andrew Landau</p></li>
<li><p>Andrés Gutierrez</p></li>
<li><p>Anselm Hahn</p></li>
<li><p>anTon</p></li>
<li><p>Anton</p></li>
<li><p>Antony Lee</p></li>
<li><p>Archil Jain</p></li>
<li><p>Arnaud Patard</p></li>
<li><p>Barbier--Darnal Joseph</p></li>
<li><p>beelauuu</p></li>
<li><p>Ben Greiner</p></li>
<li><p>Ben Root</p></li>
<li><p>Bodhi Silberling</p></li>
<li><p>Brian Christian</p></li>
<li><p>Brian Lau</p></li>
<li><p>BriAnna Foreman</p></li>
<li><p>brk</p></li>
<li><p>Carlos Ramos Carreño</p></li>
<li><p>Cemonix</p></li>
<li><p>Chaoyi Hu</p></li>
<li><p>Charlie Thornton</p></li>
<li><p>Chirag Sharma</p></li>
<li><p>Chirag3841</p></li>
<li><p>chrisjbillington</p></li>
<li><p>Christine P. Chai</p></li>
<li><p>clairefio</p></li>
<li><p>Clemens Brunner</p></li>
<li><p>Clément Robert</p></li>
<li><p>cmp0xff</p></li>
<li><p>Colton Lathrop</p></li>
<li><p>Constantinos Menelaou</p></li>
<li><p>Corenthin ZOZOR</p></li>
<li><p>cvanelteren</p></li>
<li><p>Daniel Weiss</p></li>
<li><p>Danny</p></li>
<li><p>David Lowry-Duda</p></li>
<li><p>David Stansby</p></li>
<li><p>dependabot[bot]</p></li>
<li><p>DerWeh</p></li>
<li><p>Diksha</p></li>
<li><p>Dominik Stiller</p></li>
<li><p>Doron Behar</p></li>
<li><p>Duncan Macleod</p></li>
<li><p>DWesl</p></li>
<li><p>Edge-Seven</p></li>
<li><p>ee25b003</p></li>
<li><p>ellie</p></li>
<li><p>Elliott Sales de Andrade</p></li>
<li><p>Emmanuel Ferdman</p></li>
<li><p>EncryptedDoom</p></li>
<li><p>Eric Firing</p></li>
<li><p>Eric Larson</p></li>
<li><p>Evgenii Radchenko</p></li>
<li><p>Eytan Adler</p></li>
<li><p>Fazeel Usmani</p></li>
<li><p>founta</p></li>
<li><p>francisayyad03</p></li>
<li><p>Francisco Cardozo</p></li>
<li><p>G Karthik Koundinya</p></li>
<li><p>G. D. McBain</p></li>
<li><p>G26Karthik</p></li>
<li><p>ganglike</p></li>
<li><p>Geoffrey Thomas</p></li>
<li><p>Gguidini</p></li>
<li><p>Greg Lucas</p></li>
<li><p>guillermodotn</p></li>
<li><p>hannah</p></li>
<li><p>Hannan7812</p></li>
<li><p>Hasan Rashid</p></li>
<li><p>Hassan Kibirige</p></li>
<li><p>heinrich5991</p></li>
<li><p>hu-xiaonan</p></li>
<li><p>Husain Gadiwala</p></li>
<li><p>Ian Hunt-Isaak</p></li>
<li><p>Ian Thomas</p></li>
<li><p>ianlv</p></li>
<li><p>IdiotCoffee</p></li>
<li><p>ilakk manoharan</p></li>
<li><p>Ilakkuvaselvi Manoharan</p></li>
<li><p>intelliking</p></li>
<li><p>Inês Cachola</p></li>
<li><p>ishan372or</p></li>
<li><p>James Addison</p></li>
<li><p>Javier Pérez Robles</p></li>
<li><p>jaya prajapati</p></li>
<li><p>jayaprajapatii</p></li>
<li><p>Jaylon</p></li>
<li><p>Jimmy Shah</p></li>
<li><p>jocelynvj</p></li>
<li><p>JOD</p></li>
<li><p>joddeepesh-cloud</p></li>
<li><p>Jody Klymak</p></li>
<li><p>Johannes Kopton</p></li>
<li><p>Jonas Drotleff</p></li>
<li><p>Jonathan Reimer</p></li>
<li><p>Jouni K. Seppänen</p></li>
<li><p>Julian Chen</p></li>
<li><p>Kaustbh</p></li>
<li><p>Kaustubh</p></li>
<li><p>kdpenner</p></li>
<li><p>Khushi_29</p></li>
<li><p>Khushikela29</p></li>
<li><p>KIU Shueng Chuan</p></li>
<li><p>konmenel</p></li>
<li><p>Kris Rubiano</p></li>
<li><p>kusch lionel</p></li>
<li><p>Kyle Martin</p></li>
<li><p>Kyle Sunden</p></li>
<li><p>Kyra Cho</p></li>
<li><p>landoskape</p></li>
<li><p>LangQi99</p></li>
<li><p>Larry Bradley</p></li>
<li><p>leakyH</p></li>
<li><p>Leo Singer</p></li>
<li><p>Leon Merten Lohse</p></li>
<li><p>lilfer</p></li>
<li><p>litchi</p></li>
<li><p>Logan Pageler</p></li>
<li><p>Logan-Pageler</p></li>
<li><p>Lucas Gruwez</p></li>
<li><p>Lucx33</p></li>
<li><p>Luka Aladashvili</p></li>
<li><p>Lukas Hergt</p></li>
<li><p>lukashergt</p></li>
<li><p>Lumberbot (aka Jack)</p></li>
<li><p>Lívia Lutz</p></li>
<li><p>m-sahare</p></li>
<li><p>Mafalda Botelho</p></li>
<li><p>Manit Roy</p></li>
<li><p>manit2004</p></li>
<li><p>Manthan Nagvekar</p></li>
<li><p>marbled-toast</p></li>
<li><p>Marco Barbosa</p></li>
<li><p>Marco Gorelli</p></li>
<li><p>Marie</p></li>
<li><p>Marten H. van Kerkwijk</p></li>
<li><p>Marten Henric van Kerkwijk</p></li>
<li><p>martincornejo</p></li>
<li><p>masih.khatibzdeh</p></li>
<li><p>Mateusz Sokół</p></li>
<li><p>Matthew Feickert</p></li>
<li><p>Melissa Weber Mendonça</p></li>
<li><p>Melwyn Francis Carlo</p></li>
<li><p>MengAiDev</p></li>
<li><p>Milan Gittler</p></li>
<li><p>MiniX16</p></li>
<li><p>Miriam</p></li>
<li><p>Miriam Simone</p></li>
<li><p>miriamsimone</p></li>
<li><p>MKhatibzadeh</p></li>
<li><p>Mohit Pal</p></li>
<li><p>Moniza Kidwai</p></li>
<li><p>MQY</p></li>
<li><p>mromanie</p></li>
<li><p>Muhammad Hannan Akram</p></li>
<li><p>musvaage</p></li>
<li><p>N R Navaneet</p></li>
<li><p>NabeelShar</p></li>
<li><p>nakano</p></li>
<li><p>Nathan G. Wiseman</p></li>
<li><p>Nathan Goldbaum</p></li>
<li><p>Nathan Hansen</p></li>
<li><p>Nathan McDougall</p></li>
<li><p>Nick Coish</p></li>
<li><p>Nicolai Weitkemper</p></li>
<li><p>Niklas Mertsch</p></li>
<li><p>null-dreams</p></li>
<li><p>Obliman</p></li>
<li><p>Oscar Gustafsson</p></li>
<li><p>Owl</p></li>
<li><p>Parsa Homayouni</p></li>
<li><p>Patrick Seitz</p></li>
<li><p>Pedro Marques</p></li>
<li><p>pedrom2002</p></li>
<li><p>Pieter Eendebak</p></li>
<li><p>Pirzada Ahmad Faraz</p></li>
<li><p>pirzada-ahmadfaraz</p></li>
<li><p>Praful Gulani</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>q33566</p></li>
<li><p>Qian Zhang</p></li>
<li><p>r3kste</p></li>
<li><p>Rafael Katri</p></li>
<li><p>Rahul</p></li>
<li><p>Rahul Monani</p></li>
<li><p>Raphael Erik Hviding</p></li>
<li><p>Raphael Quast</p></li>
<li><p>RETHICK CB</p></li>
<li><p>Ricardo Peres</p></li>
<li><p>RogueRebel33</p></li>
<li><p>Roman</p></li>
<li><p>Roman A</p></li>
<li><p>Ruth Comer</p></li>
<li><p>ruvilonix</p></li>
<li><p>Ryan May</p></li>
<li><p>Saakshi Gupta</p></li>
<li><p>Sai Chaitanya, Sanivada</p></li>
<li><p>saikarna913</p></li>
<li><p>Sanchit Rishi</p></li>
<li><p>Saumya</p></li>
<li><p>Scott Shambaugh</p></li>
<li><p>Sebastien Wieckowski</p></li>
<li><p>Siddharth_Savani</p></li>
<li><p>Sonu Singh</p></li>
<li><p>star1327p</p></li>
<li><p>statxc</p></li>
<li><p>Stefan van der Walt</p></li>
<li><p>Stefan Vujadinovic</p></li>
<li><p>Steve Berardi</p></li>
<li><p>Steve Nicholson</p></li>
<li><p>tfpf</p></li>
<li><p>Thomas A Caswell</p></li>
<li><p>thomashopkins32</p></li>
<li><p>Tiago Marques</p></li>
<li><p>Tim Heap</p></li>
<li><p>Tim Hoffmann</p></li>
<li><p>Timon Erhart</p></li>
<li><p>Tine Zivic</p></li>
<li><p>Tingwei Zhu</p></li>
<li><p>Trygve Magnus Ræder</p></li>
<li><p>Ubuntu</p></li>
<li><p>Vagner Messias</p></li>
<li><p>Vedant Madane</p></li>
<li><p>Victor Liu</p></li>
<li><p>Vidya</p></li>
<li><p>Vikash Kumar</p></li>
<li><p>Vishal Pankaj Chandratreya</p></li>
<li><p>Vraj Rajpura</p></li>
<li><p>Weh Andreas</p></li>
<li><p>Wiliam</p></li>
<li><p>Yuepeng Gu</p></li>
<li><p>Zhongqi LUO</p></li>
<li><p>ZPyrolink</p></li>
</ul>
<p>GitHub issues and pull requests:</p>
<p>Pull Requests (812):</p>
<ul class="simple">
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31662/">PR #31662</a>: Backport PR #31659 on branch v3.11.x (ci: Re-arrange AppVeyor pipeline)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31659/">PR #31659</a>: ci: Re-arrange AppVeyor pipeline</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31658/">PR #31658</a>: Backport PR #31578 on branch v3.11.x (FIX: URL links in SVG should have target='_blank')</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31578/">PR #31578</a>: FIX: URL links in SVG should have target='_blank'</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31654/">PR #31654</a>: Backport PR #30108 on branch v3.11.x (Fix constrained layout applying pad multiple times)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/30108/">PR #30108</a>: Fix constrained layout applying pad multiple times</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31651/">PR #31651</a>: Backport PR #31649 on branch v3.11.x (DOC: Prevent ticks from being cut off in tick rotation example)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31650/">PR #31650</a>: Backport PR #31647 on branch v3.11.x (FIX: Pin rstcheck to prevent CI failure)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31649/">PR #31649</a>: DOC: Prevent ticks from being cut off in tick rotation example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31647/">PR #31647</a>: FIX: Pin rstcheck to prevent CI failure</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31646/">PR #31646</a>: Backport PR #31632 on branch v3.11.x (FIX: Prohibit special TeX chars in pgf metadata)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31632/">PR #31632</a>: FIX: Prohibit special TeX chars in pgf metadata</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31643/">PR #31643</a>: Backport PR #31609 on branch v3.11.x (DOC: Improve autoscaling and margin docs)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31644/">PR #31644</a>: Backport PR #31579 on branch v3.11.x (DOC: Document that bar() errorbars do not support individual coloring)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31579/">PR #31579</a>: DOC: Document that bar() errorbars do not support individual coloring</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31609/">PR #31609</a>: DOC: Improve autoscaling and margin docs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31640/">PR #31640</a>: Backport PR #31638 on branch v3.11.x (Bump the actions group with 2 updates)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31639/">PR #31639</a>: Backport PR #31628 on branch v3.11.x (FIX: use axis lines tight bbox within axis artist tight bbox)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31638/">PR #31638</a>: Bump the actions group with 2 updates</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31637/">PR #31637</a>: Backport PR #31634 on branch v3.11.x (Fix some font-related issues)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31628/">PR #31628</a>: FIX: use axis lines tight bbox within axis artist tight bbox</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31634/">PR #31634</a>: Fix some font-related issues</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31636/">PR #31636</a>: Backport PR #31630 on branch v3.11.x (Restore PolarTransform(apply_theta_transforms) parameter)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31630/">PR #31630</a>: Restore PolarTransform(apply_theta_transforms) parameter</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31631/">PR #31631</a>: Backport PR #31557 on branch v3.11.x (FIX: Added ft2font null checks added)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31629/">PR #31629</a>: Backport PR #31621 on branch v3.11.x (Make Scale axis parameter handling more flexible)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31557/">PR #31557</a>: FIX: Added ft2font null checks added</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31621/">PR #31621</a>: Make Scale axis parameter handling more flexible</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31627/">PR #31627</a>: Backport PR #31625 on branch v3.11.x (DOC: Inline ScalarMappable reStructuredText entries)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31626/">PR #31626</a>: Backport PR #25478 on branch v3.11.x ([BUG] Fix alpha bug on 3D PathCollection plots.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31625/">PR #31625</a>: DOC: Inline ScalarMappable reStructuredText entries</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/25478/">PR #25478</a>: [BUG] Fix alpha bug on 3D PathCollection plots.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31611/">PR #31611</a>: Backport PR #31608 on branch v3.11.x (Remove outdated comment re: implementation of hinting_factor.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31608/">PR #31608</a>: Remove outdated comment re: implementation of hinting_factor.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31602/">PR #31602</a>: Backport PR #31599 on branch v3.11.x (Bump the actions group with 2 updates)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31603/">PR #31603</a>: Backport PR #31594 on branch v3.11.x (DOC: Explain how to selectively restore ticks that are removed by sharex)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31594/">PR #31594</a>: DOC: Explain how to selectively restore ticks that are removed by sharex</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31601/">PR #31601</a>: Backport PR #31600 on branch v3.11.x (Bump <a class="github reference external" href="https://github.com/astral-sh/ruff-pre-commit">astral-sh/ruff-pre-commit</a> from v0.15.11 to 0.15.12)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31599/">PR #31599</a>: Bump the actions group with 2 updates</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31600/">PR #31600</a>: Bump <a class="github reference external" href="https://github.com/astral-sh/ruff-pre-commit">astral-sh/ruff-pre-commit</a> from v0.15.11 to 0.15.12</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31592/">PR #31592</a>: Backport PR #31588 on branch v3.11.x (Expire some missed deprecations from 3.9)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31588/">PR #31588</a>: Expire some missed deprecations from 3.9</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31583/">PR #31583</a>: Backport PR #31577 on branch v3.11.x (FIX: Polar Radial Tick Warnings Labels Bug)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31577/">PR #31577</a>: FIX: Polar Radial Tick Warnings Labels Bug</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31582/">PR #31582</a>: Backport PR #31580 on branch v3.11.x (DOC: added unregister to colormap guide)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31580/">PR #31580</a>: DOC: added unregister to colormap guide</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31564/">PR #31564</a>: Backport PR #31563 on branch v3.11.x (LIC: remove carlogo license)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31563/">PR #31563</a>: LIC: remove carlogo license</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31561/">PR #31561</a>: Fixed bug with an uninitialized colormap in parallel threads</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31555/">PR #31555</a>: FIX: removing colorbar's axes also removes colorbar</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31560/">PR #31560</a>: merge up v3.10.9</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31416/">PR #31416</a>: MNT: Privatize Formatter attributes</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/23616/">PR #23616</a>: feat(mathtext): support underline</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31554/">PR #31554</a>: BUG: avoid a deprecation warning from numpy 2.5 (calling <code class="docutils literal notranslate"><span class="pre">datetime64('NaT')</span></code> without a unit is deprecated)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31535/">PR #31535</a>: DOC: fix broken link to wxPython Widget Inspection Tool</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31551/">PR #31551</a>: Bump <a class="github reference external" href="https://github.com/pre-commit/mirrors-mypy">pre-commit/mirrors-mypy</a> from v1.20.1 to 1.20.2</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31552/">PR #31552</a>: Bump scientific-python/upload-nightly-action from 0.6.3 to 0.6.4 in the actions group</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31478/">PR #31478</a>: Fix errorbar autoscaling inconsistency on log axes</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31522/">PR #31522</a>: MNT: Update all pre-commit hooks</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31365/">PR #31365</a>: Add thumbnail for embedding in user interfaces examples</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31530/">PR #31530</a>: BUG: Fix relim() to support Collection artists (scatter, etc.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31514/">PR #31514</a>: Add suggestions to more lookup errors</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31465/">PR #31465</a>: lib/matplotlib/tests/test_inset.py: Fix tolerance on aarch64</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31521/">PR #31521</a>: Drop support for font hinting factor</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31492/">PR #31492</a>: MNT: Ensure all types from matplotlib.typing are documented</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31524/">PR #31524</a>: FIX: Disallow twinx/twiny on Axes3D</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31540/">PR #31540</a>: DOC: replace dolphin license RDF block with prose attribution</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31426/">PR #31426</a>: Fix: Optimize Cursor clearing on mouse exit to prevent lag</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31512/">PR #31512</a>: Document that <code class="docutils literal notranslate"><span class="pre">TimedAnimation</span></code> should not be used</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31518/">PR #31518</a>: DOC: add tags to tick locator and formatter examples</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31519/">PR #31519</a>: Bump the actions group with 3 updates</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31517/">PR #31517</a>: [DOC] make headers in pie example consistent</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31515/">PR #31515</a>: Remove unnecessary ruff lint exceptions</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31516/">PR #31516</a>: TST: account for flakiness with Numpy v1 (part 3)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31489/">PR #31489</a>: Fixed: specified exception type in cbook.py</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31314/">PR #31314</a>: DOC: setting active axes position is ineffective</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31148/">PR #31148</a>: TST: Use explicit style in all image_comparison calls</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31486/">PR #31486</a>: ENH: Add an environment variable to ignore system fonts</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31507/">PR #31507</a>: PR template: always ask for AI declaration</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31503/">PR #31503</a>: TST: Harden handling of Popen subprocesses</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31490/">PR #31490</a>: DOC: Minor style improvement of radio buttons examples</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31181/">PR #31181</a>: ENH: Give control whether twinx() or twiny() overlays the main axis</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31485/">PR #31485</a>: MNT: Update bundled font libraries</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31484/">PR #31484</a>: MNT: Use new defaults in set_font_settings_for_testing</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31483/">PR #31483</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/31476/">PR #31476</a>: DOC: Improve Radio Buttons example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31275/">PR #31275</a>: DOC: use minigallery for tutorial thumbnails</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29763/">PR #29763</a>: Shorten Agg template usage with class template argument deduction.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31353/">PR #31353</a>: Fix #21409: Make twin axes inherit parent position</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31431/">PR #31431</a>: FIX: Guard against already-removed labels in ContourSet.remove()</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31428/">PR #31428</a>: Relax type hints for xy and xytext in annotate</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31468/">PR #31468</a>: DOC: Replace <code class="docutils literal notranslate"><span class="pre">skip_deprecated</span></code> extension by standard Sphinx metadata</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/30161/">PR #30161</a>: Font and text overhaul</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31461/">PR #31461</a>: Support font features/language in default RendererBase.draw_text</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31303/">PR #31303</a>: TST: Reset tolerances on tests changed by text overhaul</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31471/">PR #31471</a>: DOC: Use FuncAnimation in 3D animations</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31477/">PR #31477</a>: DOC: Improve Radio Buttons Grid example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31470/">PR #31470</a>: MNT: Deprecate matplotlib.image.thumbnail</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31475/">PR #31475</a>: Purge gitter links</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31466/">PR #31466</a>: DOC: make simple animation example easier to find</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31469/">PR #31469</a>: Change if condition to allow handles to be passed as a ndarray and not only Python list or tuple, etc.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31459/">PR #31459</a>: DOC: Improve AI policy</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31444/">PR #31444</a>: Bump the actions group with 3 updates</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31456/">PR #31456</a>: Clarify fonttype switch in backend_pdf.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31300/">PR #31300</a>: TST: Set tests touched by text overhaul to mpl20 style</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31449/">PR #31449</a>: Fix: improve log-scale error message wording</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/30385/">PR #30385</a>: Add type stubs for functions in matplotlib.dates</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31442/">PR #31442</a>: TST: account for flakiness with Numpy v1 (part 2)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31440/">PR #31440</a>: Fix FreeType runtime version check</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31295/">PR #31295</a>: TST: Cleanup back-compat code in tests touched by text overhaul</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31408/">PR #31408</a>: Merge branch 'main' into text-overhaul</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31407/">PR #31407</a>: BLD: Update bundled FreeType to 2.14.3</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31439/">PR #31439</a>: Clarify SecondaryAxes limit behavior via documentation</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31432/">PR #31432</a>: DOC: More concise page title: Development setup</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31423/">PR #31423</a>: DOC: Remove pyplot vs. OO interface discussion from lifecycle example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31413/">PR #31413</a>: ENH: Support partial figsize with None (#31400)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31368/">PR #31368</a>: Fix: Prevent Cursor blitting from erasing overlapping axes (#25670)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31409/">PR #31409</a>: Bump the actions group with 2 updates</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31417/">PR #31417</a>: DOC: Explain return value of secondary_x/yaxis</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31412/">PR #31412</a>: MNT: Minor cleanup of label formatting in PathCollection.legend_elements</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31422/">PR #31422</a>: Improve legend loc and bbox_to_anchor documentation (#26620)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31414/">PR #31414</a>: DOC: Improve Formatter documentation</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31419/">PR #31419</a>: Add a short example to StrMethodFormatter docstring</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31405/">PR #31405</a>: Tweak secondary_{x,y}axis docs.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31372/">PR #31372</a>: BLD: Update bundled libraqm to 0.10.4</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31198/">PR #31198</a>: Allow tuning the shape of {L,R,D}Arrow tips.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31183/">PR #31183</a>: ENH: Allow fonts to be addressed by any of their SFNT family names</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31371/">PR #31371</a>: ps/pdf: Override font height metrics to support AFM files</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31343/">PR #31343</a>: TST: Restore some tolerances for some arch/platform-specific failures</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31248/">PR #31248</a>: SEC: Remove eval() from validate_cycler</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31395/">PR #31395</a>: doc: mention <code class="docutils literal notranslate"><span class="pre">bar_label</span></code> in <code class="docutils literal notranslate"><span class="pre">bar</span></code> and <code class="docutils literal notranslate"><span class="pre">barh</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31385/">PR #31385</a>: Make font search case insensitive in logo example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31399/">PR #31399</a>: DOC: Rename gallery README.txt files to GALLERY_HEADER.rst</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29998/">PR #29998</a>: Implement head resizing (and reversal) for larrow/rarrow/darrow</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/24744/">PR #24744</a>: Addresses issue #24618 "Road sign" boxstyle/annotation, alternative to #24697</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31392/">PR #31392</a>: Tweak Formatter method docstrings.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31200/">PR #31200</a>: DOC: moderation and enforcement</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/30513/">PR #30513</a>: TST: Remove redundant font tests</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31363/">PR #31363</a>: Update black requirement from <26 to <27</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31355/">PR #31355</a>: Bump the actions group across 1 directory with 8 updates</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31370/">PR #31370</a>: Update dead link for Ware 1988 in colormap docs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31357/">PR #31357</a>: ci: Configure dependabot to skip minver requirements</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31358/">PR #31358</a>: TST: Replace pywin32 with ctypes wrapper</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29281/">PR #29281</a>: Port requirements to PEP735</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31347/">PR #31347</a>: FIX: Deprecate using clabel() with filled contours</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31349/">PR #31349</a>: DOC: Correct a few typos in documentation</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31244/">PR #31244</a>: PERF: Sticky edges speedup</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31306/">PR #31306</a>: [MNT]: Implement <code class="docutils literal notranslate"><span class="pre">Scale.val_in_range</span></code> and refactor <code class="docutils literal notranslate"><span class="pre">_point_in_data_domain</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31291/">PR #31291</a>: text: Use font metrics to determine line heights</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/30900/">PR #30900</a>: Added Turbo License doc</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31307/">PR #31307</a>: FIX: avoid applying dashed patterns to zero-width lines and patches</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31338/">PR #31338</a>: MAINT: Fix formatting on autoclose bot message</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31313/">PR #31313</a>: Fixed lingering bugs with image rendering related to exact half display pixels</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31329/">PR #31329</a>: DOC: Add note about opening multiple PRs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29093/">PR #29093</a>: Add wasm CI</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31283/">PR #31283</a>: MNT: Add autoclose bot inspired by scikit-learn</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31322/">PR #31322</a>: DOC: fix pcolormesh doc</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31308/">PR #31308</a>: DOC: Add thumbnail for multipage_pdf gallery example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31315/">PR #31315</a>: [BUG] Warn when legend() receives mismatched handles and labels in 2-argument positional form</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31251/">PR #31251</a>: Emit xlim_changed / ylim_changed when limits expand via set_xticks / set_yticks</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31316/">PR #31316</a>: DOC: clarify explanation of axline in infinite lines example</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31309/">PR #31309</a>: DOC: update pandas intersphinx mapping</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31281/">PR #31281</a>: Drop axis_artist tickdir image compat, due to text-overhaul merge.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31294/">PR #31294</a>: MNT: Restrict webagg toolbar actions to valid actions</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31282/">PR #31282</a>: SEC: Block shell escapes in latex and ps commands</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31252/">PR #31252</a>: DOC: Fix rendering of quiver documentation</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31285/">PR #31285</a>: ENH: Ignore empty text for tightbbox</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31230/">PR #31230</a>: API: Raise ValueError in subplots if num refers to existing figure</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31133/">PR #31133</a>: fix: resolve FigureCanvasTkAgg clipping on Windows HiDPI</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/30908/">PR #30908</a>: mathtext support for phantom, llap, rlap for faking text metrics.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31261/">PR #31261</a>: Bump the actions group with 2 updates</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/30369/">PR #30369</a>: Support standard tickdir control (in/out/inout) in axisartist.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/27987/">PR #27987</a>: qhull: Fix inconsistent formatting function arguments</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31061/">PR #31061</a>: BUG: Fix text appearing far outside valid axis scale range</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31117/">PR #31117</a>: Clarify introductory description in scatter_star_poly example.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31203/">PR #31203</a>: Fix Axes.hist crash for numpy timedelta64 inputs</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31262/">PR #31262</a>: DOC: Correct <code class="docutils literal notranslate"><span class="pre">byweekday</span></code> description in <code class="docutils literal notranslate"><span class="pre">WeekdayLocator</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31260/">PR #31260</a>: MNT: Raise NotImplementedError for 3D semilog plots</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31143/">PR #31143</a>: Deprecate public access to XMLWriter; simplify some attribute settings</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31258/">PR #31258</a>: DOC: Document that set_aspect applies the aspect lazily</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31005/">PR #31005</a>: PERF: Bezier root finding speedup</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/30980/">PR #30980</a>: Fix 3D axes to properly support non-linear scales (log, symlog, etc.)</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/30844/">PR #30844</a>: allow passing a function to <code class="docutils literal notranslate"><span class="pre">CallbackRegistry.disconnect_func</span></code></p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/30995/">PR #30995</a>: PERF: Speed up ticks processing when not visible or using a NullLocator</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31128/">PR #31128</a>: Fix relim() ignoring scatter PathCollection offsets</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31166/">PR #31166</a>: Add private Artist-level autoscale participation flag</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31238/">PR #31238</a>: CI: Explicitly define CI workflow permissions</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31228/">PR #31228</a>: Bump the actions group with 3 updates</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/29469/">PR #29469</a>: MNT: Separate property cycle handling from _process_plot_var_args</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31121/">PR #31121</a>: mathtext: add mathnormal and distinguish between normal and italic family</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31170/">PR #31170</a>: Cleanup QuiverKey init and deprecate some attributes.</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31004/">PR #31004</a>: PERF: More speedups</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31226/">PR #31226</a>: ft2font: Read more entries from OS/2 font table</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31191/">PR #31191</a>: TST: Switch mathtext tests to mpl20</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31231/">PR #31231</a>: DOC: make nightly download command one line so it works on Windows</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/30754/">PR #30754</a>: MNT: Improve Grouper</p></li>
<li><p><a class="reference external" href="https://github.com/matplotlib/matplotlib/pull/31236/">PR #31236</a>: DOC: Remove gitter links and direct folks to Discourse chat</p></li>