-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathgithub_stats.txt
More file actions
1569 lines (1558 loc) · 86.3 KB
/
Copy pathgithub_stats.txt
File metadata and controls
1569 lines (1558 loc) · 86.3 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
.. _github-stats:
Github Stats
============
GitHub stats for 2014/08/26 - 2015/10/29 (tag: v1.4.0)
These lists are automatically generated, and may be incomplete or contain duplicates.
We closed 585 issues and merged 731 pull requests.
The following 232 authors contributed 4890 commits.
* Acanthostega
* Alan Du
* alex
* Alexander Taylor
* Alexei Colin
* Ali Mehdi
* Alistair Muldal
* Allan Haldane
* AmyTeegarden
* Andy Zhu
* Antony Lee
* Arie
* Ariel Hernán Curiale
* Arnaud Gardelein
* Arpad Horvath
* basharovV
* Behram Mistree
* Ben Root
* Benjamin Reedlunn
* Brett Cannon
* Brian McLaughlin
* Bruno Beltran
* cammil
* Casey Webster
* Casper van der Wel
* caspervdw
* chadawagner
* chebee7i
* Christian Brueffer
* Christoph Gohlke
* Cimarron Mittelsteadt
* CJ Carey
* curiale
* Damon McDougall
* Danhickstein
* David
* David Haberthür
* David Kua
* domspad
* Dora Fraeman
* Duncan Macleod
* e-q
* Elena Glassman
* Elias Pipping
* Elliott Sales de Andrade
* elpres
* Emil Mikulic
* endolith
* Endolith
* Eric Dill
* Eric Firing
* Eric Ma
* Eric O. LEBIGOT (EOL)
* Erik Bray
* Eugen Beck
* Eugene Yurtsev
* Fabien Maussion
* Fabio Zanini
* Federico Ariza
* ffteja
* Florian Rhiem
* Francesco Montesano
* Francis Colas
* François Magimel
* frenchwr
* fvgoto
* gcallah
* Giovanni
* gluap
* Gregory Ashton
* Gregory R. Lee
* Hans Dembinski
* Hans Moritz Günther
* Hassan Kibirige
* Holger Peters
* hugadams
* Ian Thomas
* insertroar
* Ioannis Filippidis
* Ismo Toijala
* itziakos
* Jaime Fernandez
* jaimefrio
* Jake VanderPlas
* James Pallister
* James R. Evans
* Jan Schulz
* Jan-willem De Bleser
* Jascha Ulrich
* Jason King
* Jason Liw Yan Chong
* Jason Miller
* JayP16
* jbbrokaw
* Jeff Lutgen
* Jens Hedegaard Nielsen
* Jeremy Fix
* Jessica B. Hamrick
* JGoutin
* jlutgen
* Jody Klymak
* Joe Kington
* Joel B. Mohler
* Jorrit Wronski
* Josef Heinen
* Joseph Jon Booker
* Jouni K. Seppänen
* Jouni Seppänen
* jowr
* Julian Mehne
* Julien Lhermitte
* Julien-Charles Lévesque
* Katy Huff
* kikocorreoso
* Kimmo Palin
* Konrad Förstner
* Konstantin Tretyakov
* Leeonadoh
* leeonadoh
* Lennart Fricke
* Leo Singer
* Levi Kilcher
* lichri12
* Lori J
* Loïc Estève
* Majid alDosari
* Marcos Duarte
* Marek Rudnicki
* Marin Gilles
* Markus Rothe
* Martin Fitzpatrick
* Martin Thoma
* masamson
* Masud Rahman
* Mathieu Duponchelle
* Matt Giuca
* Matt Li
* Matt Shen
* Matthew Brett
* Matthias Bussonnier
* Maximilian Albert
* mbyt
* mdehoon
* mdipierro
* Mellissa Cross
* Michael Droettboom
* Michael Sarahan
* Michiel de Hoon
* Min RK
* Minty Zhang
* MirandaXM
* mrkrd
* Muhammad Mehdi
* Neil Crighton
* Nelle Varoquaux
* Niall Robinson
* Nicholas Devenish
* nickystringer
* Nico Schlömer
* Nicolas P. Rougier
* Nikita Kniazev
* Niklas Koep
* Nils Werner
* nwin
* Ocean Wolf
* OceanWolf
* ocefpaf
* Oleg Selivanov
* Olga Botvinnik
* Parfenov Sergey
* patchen
* Patrick Chen
* Paul G
* Paul Ganssle
* Paul Hobson
* Pete Bachant
* Peter St. John
* Peter Würtz
* Phil Elson
* productivememberofsociety666
* pupssman
* Ramiro Gómez
* Randy Olson
* rasbt
* Remi Rampin
* Robin Dunn
* rsnape
* Ryan May
* Ryan Morshead
* Ryan Nelson
* ryanbelt
* s9w
* Scott Lawrence
* sdementen
* Skelpdar
* Slav
* sohero
* Spencer McIntyre
* Stanley, Simon
* Stefan Lehmann
* Stefan van der Walt
* Stephen Horst
* Sterling Smith
* Steven Silvester
* Stuart Mumford
* switham
* Tamas Gal
* Thomas A Caswell
* Thomas Hisch
* Thomas Lake
* Thomas Robitaille
* Thomas Spura
* Till Stensitzki
* Tobias Megies
* Tomas Kazmar
* ugurthemaster
* Ulrich Dobramysl
* Umair Idris
* Vadim Markovtsev
* Víctor Zabalza
* Wen Li
* Wendell Smith
* Werner F Bruhin
* wernerfb
* William Manley
* Xiaowen Tang
* xuanyuansen
* Yu Feng
* Yunfei Yang
* Yuri D'Elia
* Yuval Langer
* Zair Mubashar
GitHub issues and pull requests:
Pull Requests (731):
* :ghpull:`5301`: BUG: Dot should not be spaced when used as a decimal separator
* :ghpull:`5103`: Add option to package DLL files
* :ghpull:`5348`: windows dlls packaging
* :ghpull:`5346`: Make sure that pyparsing 2.0.4 is not installed.
* :ghpull:`5340`: Improve compatibility for h264 ffmpeg-encoded videos.
* :ghpull:`5295`: Reduce number of font file handles opened
* :ghpull:`5330`: Reduce dupe between tests.py and matplotlib.test
* :ghpull:`5324`: Fix #5302: Proper alpha-blending for jpeg
* :ghpull:`5339`: PEP8 on Python 3.5
* :ghpull:`5215`: TST: drop py2.6 & py3.3 testing
* :ghpull:`5313`: Fix the minortick-fix
* :ghpull:`5333`: Patch 2
* :ghpull:`5276`: Use lock directory to prevent race conditions
* :ghpull:`5322`: Fix #5316: Remove hardcoded parameter from barh doc
* :ghpull:`5300`: Fixed compiler warnings in _macosx.m
* :ghpull:`5304`: Prelimiary fix for Mac OSX backend threading issues
* :ghpull:`5297`: BUG: recent numpy fails on non-int shape
* :ghpull:`5283`: Make new colormaps full-fledged citizens
* :ghpull:`5296`: Fix STIX virtual font entry for M script character
* :ghpull:`5285`: Fix some compiler warnings
* :ghpull:`5288`: Doc build fixes
* :ghpull:`5289`: Fix IndexError in cursor_demo.py.
* :ghpull:`5290`: implemeted get_ticks_direction()
* :ghpull:`4965`: WIP: Add new Colormaps to docs
* :ghpull:`5284`: New Colormaps to docs
* :ghpull:`4329`: Write status message in single line in Qt toolbar.
* :ghpull:`3838`: Fix units examples under python3
* :ghpull:`5279`: On Windows, use absolute paths to figures in Sphinx documents if necessary
* :ghpull:`5274`: Check dimensions of arrays passed to C++, handle 0 dimensions
* :ghpull:`5273`: Provide message if test data is not installed
* :ghpull:`5268`: Document and generalise $MATPLOTLIBRC
* :ghpull:`4898`: HostAxesBase now adds appropriate _remove_method to its parasite axes.
* :ghpull:`5244`: Matlab Style Label Warns In Test
* :ghpull:`5236`: DOC: tweak README formatting
* :ghpull:`5228`: Remove mentions of SourceForge
* :ghpull:`5231`: include links to the mailing list in the README
* :ghpull:`5235`: Add link to "mastering matplotlib" book
* :ghpull:`5233`: Skip over broken TTF font when creating cache
* :ghpull:`5230`: Fix casting bug in streamplot
* :ghpull:`5177`: MAINT: dviread refactoring
* :ghpull:`5223`: Update dateutil URL.
* :ghpull:`5186`: DOC: Fix docstrings for multiple parameters
* :ghpull:`5217`: Fix PathEffect rendering on some backends
* :ghpull:`5216`: Enable testing without internet access.
* :ghpull:`5183`: TST: fix ``AttributeError: 'module' object has no attribute 'nl_langinfo'`` on Windows
* :ghpull:`5203`: Fix mathtext_wx example not redrawing plots
* :ghpull:`5039`: sphinxext pot_directive: more robust backend switching
* :ghpull:`4915`: TransformWrapper pickling fixes
* :ghpull:`5170`: [MAINT] Add symlog locator to __all__ and to the docs
* :ghpull:`5207`: V1.5.x
* :ghpull:`5021`: Use json for the font cache instead of pickle
* :ghpull:`5184`: TST: fix test_mlab.test_griddata_nn failures on Windows
* :ghpull:`5182`: Fix ``ValueError: invalid PNG header`` on Windows
* :ghpull:`5189`: DOC: Fix encoding for LaTeX
* :ghpull:`5178`: DOC: Fix description of draw_markers in api_changes.rst
* :ghpull:`5147`: Cleaned up text in pyplot_tutorial.rst
* :ghpull:`5171`: Fix exception with Pillow 3
* :ghpull:`5153`: MNT: more minor tweaks to qt_compat.py
* :ghpull:`5167`: [BUG] symlog support for ax.minorticks_on()
* :ghpull:`5168`: Fix a bounds check
* :ghpull:`5108`: added None option to _get_view, also fixed a typo
* :ghpull:`5106`: FIX: array_view construction for empty arrays
* :ghpull:`5157`: Update MEP12.rst
* :ghpull:`5127`: mep12 on cursor_demo.py
* :ghpull:`5154`: TST: use patched nose for py3.6 compat
* :ghpull:`5150`: FIX: set internal flags first in FigureCanvasBase
* :ghpull:`5134`: qt imports fix
* :ghpull:`5080`: Try to make backend_gdk compatible with numpy 1.6
* :ghpull:`5148`: FIX: scatter accepts 2-D x, y, c; closes #5141
* :ghpull:`5138`: MAINT: use travis wheel repository for 3.5 build
* :ghpull:`5129`: FIX: be more careful about import gobject
* :ghpull:`5130`: DOC: add API notes for jquery upgrade
* :ghpull:`5133`: DOC: Update polar examples to use projection kwarg
* :ghpull:`5091`: Upgrade jquery and jquery-ui
* :ghpull:`5110`: Travis: Update Python to 3.5 final
* :ghpull:`5126`: mep12 on customize_rc.py
* :ghpull:`5124`: mep12 on ellipse_rotated.py
* :ghpull:`5125`: mep12 on ellipse_demo.py
* :ghpull:`5123`: mep12 on errorbar_limits.py
* :ghpull:`5117`: mep12 on fill_spiral.py
* :ghpull:`5118`: mep12 on figure_title.py
* :ghpull:`5116`: Mep12 fonts table ttf.py
* :ghpull:`5115`: mep12 on fonts_demo.py
* :ghpull:`5114`: BLD: setup.py magic to get versioneer to work
* :ghpull:`5109`: Fix for bug in set_cmap in NonUniformImage
* :ghpull:`5100`: The Visual C++ Redistributable for Visual Studio 2015 is required for Python 3.5
* :ghpull:`5099`: Fix corrupted stix_fonts_demo example
* :ghpull:`5084`: Fix segfault in ft2font
* :ghpull:`5092`: Generate reversed ListedColormaps
* :ghpull:`5085`: corrected doc string
* :ghpull:`5081`: Add WinPython and Cycler to installation instructions for Windows
* :ghpull:`5079`: Improve whats new
* :ghpull:`5063`: added tick labels from values demo
* :ghpull:`5075`: mep12 on fonts_demo_kw.py
* :ghpull:`5073`: DOC: updated documented dependencies
* :ghpull:`5014`: Add Travis job with 3.6 nightly
* :ghpull:`5071`: Fix URLError: <urlopen error unknown url type: c> on Windows
* :ghpull:`5070`: Bugfix for TriAnalyzer mismatched indices, part 2
* :ghpull:`5072`: Fix backend_driver.py fails on non-existent files
* :ghpull:`5069`: Typos in api_changes and whats_new
* :ghpull:`5068`: Fix format string for Python 2.6
* :ghpull:`5066`: Doc merge whatsnew apichanges
* :ghpull:`5062`: Fix for issue4977 mac osx
* :ghpull:`5064`: Use versioneer for version
* :ghpull:`5065`: Bugfix for TriAnalyzer mismatched indexes
* :ghpull:`5060`: FIX: add check if the renderer exists
* :ghpull:`4803`: Fix unit support with ``plot`` and ``pint``
* :ghpull:`4909`: figure option dialog does not properly handle units
* :ghpull:`5053`: Unpack labeled data alternative
* :ghpull:`4829`: ENH: plotting methods can unpack labeled data
* :ghpull:`5044`: Added PDF version of navigation icons
* :ghpull:`5048`: Test with 3.5rc4
* :ghpull:`5043`: resize_event not working with MacOSX backend
* :ghpull:`5041`: mep12 on ganged_plots.py
* :ghpull:`5040`: mep12 on ginput_demo.py
* :ghpull:`5038`: PRF: only try IPython if it is already imported
* :ghpull:`5020`: mathtext: Add ``-`` to spaced symbols, and do not space symbols at start of string
* :ghpull:`5036`: Update what's new for RectangeSelector
* :ghpull:`3937`: Rectangle Selector Upgrade
* :ghpull:`5031`: support subslicing when x is masked or has nans; closes #5016
* :ghpull:`5025`: [MRG] ENH Better error message when providing wrong fontsizes
* :ghpull:`5032`: ENH: More useful warning about locale errors
* :ghpull:`5019`: locale.getdefaultlocale() fails on OS X
* :ghpull:`5030`: mep12 on geo_demo.py
* :ghpull:`5024`: FIX
* :ghpull:`5023`: Fix Agg clipping
* :ghpull:`5017`: MEP22 warnings
* :ghpull:`4887`: FIX: mathtext accents
* :ghpull:`4995`: animation fixes
* :ghpull:`4972`: Qt5: Move agg draw to main thread and fix rubberband
* :ghpull:`5015`: Fix the fontdict parameter in set_xticklabels/set_yticklabels
* :ghpull:`5009`: TST: bump python 3.5 version to rc2
* :ghpull:`5008`: fix #5007
* :ghpull:`4807`: setupext.py: let the user set a different pkg-config
* :ghpull:`5010`: DOC: Add information on new views for custom Axes.
* :ghpull:`4994`: Fix syntax error
* :ghpull:`4686`: [WIP] Property Cycling
* :ghpull:`5006`: fix bug
* :ghpull:`4795`: ENH: Add API to manage view state in custom Axes.
* :ghpull:`4924`: MNT: changed close button color and text
* :ghpull:`4992`: showpage at the end of .eps files
* :ghpull:`4991`: FIX: double z-axis draw in mplot3D
* :ghpull:`4988`: BUG: in ScalarFormatter, handle two identical locations; closes #4761
* :ghpull:`4873`: mathtext: Finetuning sup/super block to match TeX reference
* :ghpull:`4985`: Fix for #4984
* :ghpull:`4982`: Mep12 hist2d log demo.py
* :ghpull:`4981`: Mep12 image demo2.py
* :ghpull:`4980`: Mep12 image interp.py
* :ghpull:`4983`: MEP12 on hist2d_demo.py
* :ghpull:`4942`: text update properties does not handle bbox properly
* :ghpull:`4904`: position of text annotations looses unit information
* :ghpull:`4979`: PY2K : in python2 lists don't have copy method
* :ghpull:`4689`: Update to score_family in font_manager.py
* :ghpull:`4944`: qt backend draw_idle doesn't work
* :ghpull:`4943`: qt backend has more draws than necessary
* :ghpull:`4969`: FIX: account for None in Line2D.axes setter
* :ghpull:`4964`: Clarify what "axes" means
* :ghpull:`4961`: Bounds checking for get_cursor_data(). Closes #4957
* :ghpull:`4963`: Grammar fix for pyplot tutorial
* :ghpull:`4958`: BUG: allow facecolors to be overridden in LineCollection
* :ghpull:`4959`: Fix link in documentation. Closes #4391.
* :ghpull:`4956`: MEP12 on image masked.py
* :ghpull:`4950`: Mep12 image origin.py
* :ghpull:`4953`: Make sure that data is a number before formatting. Fix for #4806
* :ghpull:`4948`: Mep12 layer images.py
* :ghpull:`4949`: Mep12 invert axes.py
* :ghpull:`4951`: FIX: argument order in RendereAgg.restore_region
* :ghpull:`4945`: qt backend default bbox not set when blitting
* :ghpull:`4456`: FIX : first pass at fixing nbagg close issue
* :ghpull:`4939`: NBAgg: fix Jupyter shim warning
* :ghpull:`4932`: MEP12 on load_converter.py
* :ghpull:`4935`: Add api change note about lena removal
* :ghpull:`4878`: PRF: only check some artists on mousemove
* :ghpull:`4934`: Colormep12rebase
* :ghpull:`4933`: MEP12 on line_collection2.py
* :ghpull:`4931`: MEP12 on loadrec.py
* :ghpull:`4929`: Correct numpy doc format in cbook api docs
* :ghpull:`4928`: remove lena images
* :ghpull:`4926`: Mep12 log test.py
* :ghpull:`4925`: Make sure _edgecolors is a string before comparison to string.
* :ghpull:`4923`: modifying sourceforge links
* :ghpull:`4738`: MNT: overhaul stale handling
* :ghpull:`4922`: DOC: update qt related prose
* :ghpull:`4669`: Creation of the 'classic' matplotlib style
* :ghpull:`4913`: Agg restore_region is broken
* :ghpull:`4911`: Super short lines with arrows do not act well
* :ghpull:`4919`: Issue08
* :ghpull:`4906`: broken_barh does not properly support units
* :ghpull:`4895`: Add latex preamble to texmanager _fontconfig
* :ghpull:`4816`: FIX: violinplot crashed if input variance was zero
* :ghpull:`4890`: Reduce redudant code in axes_grid{,1}.colorbar
* :ghpull:`4892`: Fix single-shot timers in nbagg backend
* :ghpull:`4875`: FIX: add explict draw_if_interactive in figure()
* :ghpull:`4885`: changed a pylab reference
* :ghpull:`4884`: mep12 on manual_axis.py
* :ghpull:`4899`: Replace kwdocd in docs with docstring.interpd/dedent_interpd
* :ghpull:`4894`: Qt5: Eliminate slow path when showing messages
* :ghpull:`4824`: Two bugs in colors.BoundaryNorm
* :ghpull:`4876`: Create a temporary bitmap context if needed
* :ghpull:`4881`: mep12 on matplotlib_icon.py
* :ghpull:`4882`: mep12 on masked_demo.py
* :ghpull:`4844`: Avoid possible exception when toggling full-screen
* :ghpull:`4843`: Rev coord wrapping
* :ghpull:`4542`: Fix cairo graphics context
* :ghpull:`4743`: BUG: Fix alternate toolbar import on Python 3.
* :ghpull:`4870`: mep12 on matshow.py
* :ghpull:`4871`: mep12 on mri_demo.py
* :ghpull:`4846`: mep12 on plotfile_demo.py
* :ghpull:`4868`: mep12 on multiline.py
* :ghpull:`4861`: mep12 on multiple_figs_demo.py
* :ghpull:`4845`: mep12 on print_stdout.py
* :ghpull:`4860`: Document get_cachedir() in troubleshooting
* :ghpull:`4833`: mep12 on quiver_demo.py
* :ghpull:`4848`: Mep12 newscalarformatter demo.py
* :ghpull:`4852`: Null strides wireframe
* :ghpull:`4588`: FIX: re-order symbol and acent in mathtext
* :ghpull:`4800`: Fixes to funcanimation
* :ghpull:`4838`: scale descent back
* :ghpull:`4840`: Improve error when trying to edit empty figure.
* :ghpull:`4836`: mep12 on psd_demo.py
* :ghpull:`4835`: Calculate text size and descent correctly
* :ghpull:`4831`: mep12 changes to axes_props.py
* :ghpull:`4834`: Test on Python 3.5 beta4
* :ghpull:`4832`: mep12: changed pylab to pyplot
* :ghpull:`4813`: Prf mouse move hitlist
* :ghpull:`4830`: mep12 on axes_demo.py
* :ghpull:`4819`: mep12 on pstest.py
* :ghpull:`4817`: mep12 on log_bar.py
* :ghpull:`4820`: mep12 on arctest.py
* :ghpull:`4826`: mep12 on image_demo2.py
* :ghpull:`4825`: Remove trailing zeroes in path string output
* :ghpull:`4818`: Mep12 logo.py
* :ghpull:`4804`: BUG: Fix ordering in radar chart example.
* :ghpull:`4801`: Travis switch from nightly to 3.5 beta
* :ghpull:`4811`: nan_test.py mep12
* :ghpull:`4771`: NF - New legend example with line collection
* :ghpull:`4798`: Fix msvc14 compile errors
* :ghpull:`4805`: Axes3d doc typo
* :ghpull:`4797`: remove empty constuctor
* :ghpull:`4785`: Animation conversion to HTML5 video
* :ghpull:`4793`: Added code information to Poly3DCollection
* :ghpull:`4790`: Test Cleanup Closes #4772
* :ghpull:`4778`: FIX: remove equality check in line2D.set_color
* :ghpull:`4777`: mep12 on pythonic_matplotlib.py
* :ghpull:`4776`: mep12 on scatter_masked.py
* :ghpull:`4707`: ENH: Add newly proposed colormaps
* :ghpull:`4768`: ENH: add remove call back to axes
* :ghpull:`4766`: FIX: fix python2 unicode compatibility
* :ghpull:`4763`: Return from draw_idle as soon as possible
* :ghpull:`4718`: Expose interpolation short names at module level.
* :ghpull:`4757`: Use BytesIO from io.
* :ghpull:`4752`: FIX: cast input to Rectangle to float
* :ghpull:`4605`: ENH: Use png predictors when compressing images in pdf files
* :ghpull:`4178`: Annotation: always use FancyBboxPatch instead of bbox_artist
* :ghpull:`3947`: Date fixes
* :ghpull:`4433`: ENH : stepfill between
* :ghpull:`4733`: Backport #4335 to master
* :ghpull:`4612`: Only use asynchronous redraw methods when handling GUI events in Qt5Agg (fix #4604)
* :ghpull:`4719`: ENH: add inverse function to _deprecated_map
* :ghpull:`4727`: FIX: fix afm + py3k + logscale
* :ghpull:`4747`: Added mplstereonet blurb to mpl_toolkits listing
* :ghpull:`4646`: MEP12 on tex_unicode_demo.py
* :ghpull:`4631`: Standardized imports
* :ghpull:`4734`: mep12 on scatter_profile.py
* :ghpull:`4664`: MEP12 on axis_equal_demo.py
* :ghpull:`4660`: MEP12-on-arrow_demo.py
* :ghpull:`4657`: MEP12-on-anscombe.py
* :ghpull:`4663`: MEP12 on axes_props.py
* :ghpull:`4654`: MEP12 on annotation_demo.py
* :ghpull:`4726`: DOC: whats_new for axes.labelpad
* :ghpull:`4739`: MNT: Remove unused code in pdf backend
* :ghpull:`4724`: DOC: slightly update demo
* :ghpull:`4731`: Implement draw_idle
* :ghpull:`3648`: dates.YearLocator doesn't handle inverted axes
* :ghpull:`4722`: STY: pep8 that slipped by the tests
* :ghpull:`4723`: Travis: Revert to using tests.py. Temp fix for #4720
* :ghpull:`4721`: CLN: remove unused code path
* :ghpull:`4717`: BUG: when autoscaling, handle tiny but non-zero values; closes #4318
* :ghpull:`4506`: Enh python repl rd2
* :ghpull:`4714`: Add an option to streamplot to manually specify the seed points.
* :ghpull:`4709`: FIX: update scale on shared axes
* :ghpull:`4713`: API/CLN: remove threading classes from cbook
* :ghpull:`4473`: ENH: property if DrawingArea clips children
* :ghpull:`4710`: FIX: gracefully deal with empty size lists
* :ghpull:`4593`: FIX: Correct output of mlab._spectral_helper when scale_by_freq=False
* :ghpull:`4708`: Travis: Set exit to true in nose.main
* :ghpull:`4701`: minor typo in docstring
* :ghpull:`4677`: Set figure width and height with set_size_inches
* :ghpull:`4684`: MEP12 on set_and_get.py
* :ghpull:`4683`: MEP12 on stix_fonts_demo.py
* :ghpull:`4668`: Remove test dependencies from install_requires
* :ghpull:`4687`: Travis: Upgrade pip and setuptools
* :ghpull:`4685`: MEP12-on-barchart_demo2.py
* :ghpull:`4682`: Mods to documentation.
* :ghpull:`4218`: Addition of RC parameters
* :ghpull:`4659`: Mep12 shared to spectrum
* :ghpull:`4670`: Mep12 usetex
* :ghpull:`4647`: Be more correct when validating bbox rc params
* :ghpull:`4639`: MEP12 on transoffset.py
* :ghpull:`4648`: MEP12 on system_monitor.py
* :ghpull:`4655`: Mep12 step demo.py
* :ghpull:`4656`: Mep12 spine to stem
* :ghpull:`4653`: MEP12 on alignment_test.py
* :ghpull:`4652`: Mep12 stock demo.py
* :ghpull:`4651`: Mep12 subplot toolbar.py
* :ghpull:`4649`: MEP12 changes on symlog_demo.py
* :ghpull:`4645`: MEP12 on text_handles.py
* :ghpull:`4611`: Add % bachelors degrees plot example
* :ghpull:`4667`: Install latest version of mock on python 2.7
* :ghpull:`4644`: MEP12 on text_rotation.py
* :ghpull:`4650`: MEP12 on subplots_adjust.py
* :ghpull:`4640`: MEP12 on toggle_images.py
* :ghpull:`4643`: MEP12 on text_rotation_relative_to_line.py
* :ghpull:`4641`: MEP12 on to_numeric.py
* :ghpull:`4630`: MEP12 pylab changes on zorder_demo.py
* :ghpull:`4635`: MEP12 on tricontour_vs_griddata.py
* :ghpull:`4665`: PEP8 fix usetex_fonteffects
* :ghpull:`4662`: usetex_fonteffects.py: Import matplotlib here as needed
* :ghpull:`4637`: MEP12 on tricontour_smooth_user.py
* :ghpull:`4583`: Mnt mailmap
* :ghpull:`4642`: Fixed and classified equal_aspect_ratio.py
* :ghpull:`4632`: Changed pylab to plt.
* :ghpull:`4629`: translated pylab import to plts
* :ghpull:`4634`: MEP12 changes to use_tex_baseline_test.py
* :ghpull:`4627`: Reclassify contourf log.py
* :ghpull:`4626`: In coutourf_log.py, changed ``P.`` to ``plt.``
* :ghpull:`4623`: Provide std::isfinite for msvc
* :ghpull:`4624`: Fix segfault on Windows
* :ghpull:`4617`: Fix for issue 4609
* :ghpull:`4608`: Axes.hist: use bottom for minimum if log and histtype='step...'
* :ghpull:`4618`: swap standard deviations so that men's means are shown with men's std…
* :ghpull:`4616`: Explicitly install Mock at version 1.0.1
* :ghpull:`4610`: MNT: Replace outdated comment with self-explaining code (hatching in pdf backend)
* :ghpull:`4603`: MNT: Minor cleanups in the pdf backend and related files
* :ghpull:`4601`: FIX: handle empty legend in qt figureoption
* :ghpull:`4589`: Add separate drawstyles options to Qt figureoptions dialog
* :ghpull:`4547`: FIX: accept non-ascii in dvipng --version output
* :ghpull:`4595`: Fix alpha channels in PDF images
* :ghpull:`4591`: _create_tmp_config_dir() "mkdirs" the returned dir
* :ghpull:`4596`: Add remaining seaborn style sheets
* :ghpull:`4594`: Revert "WX Monkey patch ClientDC for name changes"
* :ghpull:`4586`: BUG: respect alpha in RGBA markeredgecolor; closes #4580
* :ghpull:`4570`: Add Seaborn style sheets; addresses #4566
* :ghpull:`4587`: DOC: clairify auto-level behavior
* :ghpull:`4544`: MNT: Deprecate idle_event and remove it from all but wx backends
* :ghpull:`4522`: type1font.py fixes and test case
* :ghpull:`4578`: Fixed typo in docstring #4562
* :ghpull:`4564`: DOC/MNT: Throwing some docstrings at axes_rgb.py
* :ghpull:`4565`: DOC: clean up rst in whats_new folder
* :ghpull:`4572`: FIX: remove unicode in wx_compat
* :ghpull:`4571`: Don't ignore the ``fig`` arg in demo code
* :ghpull:`4569`: FIX: sign is not defined
* :ghpull:`4503`: Fix draw on show
* :ghpull:`4551`: %s -> %r else if invalid char unable to print error
* :ghpull:`4554`: A few WX phoenix related changes
* :ghpull:`4555`: Avoid making nose a dependency for matplotlib.testing.compare
* :ghpull:`4553`: BUG fix: prevent 2D axis from showing up after calling Axes3D.cla()
* :ghpull:`3602`: Add rcParams support for markers' fillstyle prop
* :ghpull:`4499`: Jklymak colormap norm examp
* :ghpull:`3518`: Left ventricle bull eye
* :ghpull:`4550`: Doc AHA bullseye
* :ghpull:`4527`: Use C++ stdlib for isfinite etc.
* :ghpull:`2783`: Use metric identifiers to parse an AFM character metric line
* :ghpull:`4548`: qt_compat: supply more helpful message when no pyqt or pyside is found
* :ghpull:`4541`: Directly link matplotlib.org and not sourceforge.net
* :ghpull:`4530`: Get rid of annoying border for Tk Canvases
* :ghpull:`3242`: DateFormatter shows microseconds instead of %f for years <= 1900
* :ghpull:`4153`: bytes2pdatenum
* :ghpull:`4535`: FIX: move non-finite position check in text.draw
* :ghpull:`4208`: Fix compression of grayscale rasterized images when using (e)ps distilled with xpdf.
* :ghpull:`4533`: Revert "made idle_event() in backend_bases.py return True"
* :ghpull:`4163`: Fix #4154: Return a writable buffer from conv_color
* :ghpull:`4310`: Square plots
* :ghpull:`4449`: capsize with default in matplotlibrc
* :ghpull:`4474`: Possible fix for hatching problems inside legends (PDF backend)
* :ghpull:`4524`: CLN: explicitly cast (void \*) -> (char \*)
* :ghpull:`4519`: Removing intel preprocessors from qhull_a.h
* :ghpull:`4521`: Raise more useful error when tfm file is missing
* :ghpull:`4477`: OffsetBoxes now considered by tight_layout
* :ghpull:`4426`: FIX : hide ref counting violence unless needed
* :ghpull:`4408`: Fix path length limit
* :ghpull:`4510`: Try expanding user for _open_file_or_url.
* :ghpull:`4256`: Allow URL strings to be passed to imread
* :ghpull:`4508`: DOC: "Customizing matplotlib" should mention style sheets
* :ghpull:`4481`: Rasterize colorbar when it has many colors; closes #4480
* :ghpull:`4505`: Added reference to the Matplotlib-Venn package
* :ghpull:`4497`: Add link to new book
* :ghpull:`4494`: Returning the Poly3DCollection when calling bar3d
* :ghpull:`4452`: Fix for issue4372
* :ghpull:`4483`: BUG: Do not correct orientation of triangles returned by Qhull (master)
* :ghpull:`4479`: Problems with mpl.pyplot
* :ghpull:`4466`: Clipping for OffsetBoxes
* :ghpull:`4091`: ENH : add function to add displayhook
* :ghpull:`4471`: Minor improvements to the docstring of ``step``.
* :ghpull:`4393`: Fix Line2D function set_markersize so it doesn't fail if given a string ...
* :ghpull:`3989`: Allow Artists to show pixel data in cursor display
* :ghpull:`4459`: Downscale iterm2 backend example image in matplotlib toolkit docs.
* :ghpull:`4458`: Raise missing ValueError in transform_angles
* :ghpull:`3421`: make wx backends compatible with wxPython-Phoenix
* :ghpull:`4455`: Fix csv2rec for passing in both names and comments.
* :ghpull:`4342`: Implementation of Issue #3418 - Auto-wrapping text
* :ghpull:`4435`: MRG: use travis wheels for dependencies
* :ghpull:`4441`: Mentioned iTerm2 external backend in mpl_toolkit docs.
* :ghpull:`4439`: Import cbook.restrict_dict into backend_gdk
* :ghpull:`4436`: Travis, remove quite and verbose from nosetest flags
* :ghpull:`3834`: Remove lod
* :ghpull:`4014`: Fix Axes ``get_children`` order to match ``draw`` order
* :ghpull:`4427`: DOC : revert some documentation changes from #3772
* :ghpull:`3772`: Allow both linestyle definition "accents" and dash-patterns as linestyle
* :ghpull:`4411`: improvements to qt edit widget
* :ghpull:`4422`: FIX : turn path snapping off on 'o' marker path
* :ghpull:`4423`: TST : suppress all of the success messages
* :ghpull:`4401`: Fix #4333: Whitespace after sub/super cluster
* :ghpull:`4350`: Sets additional default values for axes and grid.
* :ghpull:`4377`: Memory leak for Cursor useblit=True on PySide/Python3
* :ghpull:`4399`: Enable travis tests on nightly python version (3.5 alpha)
* :ghpull:`4398`: Remove unnecessary pyplot import from axes_grid1
* :ghpull:`4395`: Travis docs fixes
* :ghpull:`4355`: TST : first pass updating to use travis containers
* :ghpull:`4358`: cbook.is_sequence_of_strings knows string objects
* :ghpull:`4388`: BUG : fix svg corner case
* :ghpull:`4381`: Legend rcparams doc tests
* :ghpull:`4370`: DOC: cp missing ``manage_xticks`` from ``bxp`` to ``boxplot`` docstring [backport]
* :ghpull:`4356`: STY: update example with preferred plt.subplots()
* :ghpull:`4361`: STY: update with use of plt.subplots(), other readability edits
* :ghpull:`4362`: fix rcParams legend.facecolor and edgecolor never being used
* :ghpull:`4357`: Change documentation of legend to reflect default upper-right
* :ghpull:`4193`: BUG/API : fix color validation
* :ghpull:`4345`: DOC : document exact freetype versions for tests
* :ghpull:`4259`: Implementation of Issue #4044. Added ScientificTable and ScientificCell subclasses.
* :ghpull:`4228`: BUG : fix non-uniform grids in pcolorfast
* :ghpull:`4352`: API/FIX : don't accept None for x or y in plot
* :ghpull:`4311`: BUG : bbox with any nan points can not overlap
* :ghpull:`4265`: DOC/API : StrMethodFormatter
* :ghpull:`4343`: decode the execution path string based file system encoding
* :ghpull:`4351`: STY: update example with preferred plt.subplots
* :ghpull:`4348`: Reorder the code in the draw() method of Line2D to fix issue 4338
* :ghpull:`4347`: DOC: delete the repetitive word 'the' in docstrings and comments
* :ghpull:`4298`: Prevent 'color' argument to eventplot from overriding 'colors' kwarg (fixes #4297)
* :ghpull:`4330`: Add tick_values method to the date Locators
* :ghpull:`4327`: Fix lw float cast
* :ghpull:`4266`: Add functionality to plot bar and barh with string labels (Implement #2516)
* :ghpull:`4225`: Provide way to disable Multi Cursor (Implement #2663)
* :ghpull:`4274`: Fix Angstrom issues
* :ghpull:`4286`: Added native dpi option for print_figure
* :ghpull:`4312`: Some fixes to qt 4 and 5 examples
* :ghpull:`4315`: added resize parameter to plot 2d-arrays using figimage
* :ghpull:`4317`: DOC: Note about pixel placement in imshow
* :ghpull:`3652`: MEP22: Navigation by events
* :ghpull:`4196`: DOC/TST : document and test negative width to bar
* :ghpull:`4291`: Add note about nbagg middle click button
* :ghpull:`4304`: Labels do not becomes color anymore in figure options panel for qt toolb...
* :ghpull:`4308`: fixes #2885, #3935, #3693, for hatched fill
* :ghpull:`4305`: Improve error message when freetype headers are not found using python3
* :ghpull:`4300`: Fix #4299: Add support for \left\Vert etc.
* :ghpull:`4293`: Massive MEP move
* :ghpull:`4119`: Fix ValueError being raised when plotting hist and hexbin on empty dataset (Fix #3886)
* :ghpull:`4249`: DOC : start to move MEP to docs
* :ghpull:`4278`: Replace use of str() with six.text_type() for Py2&3 compatibility [backport to color_overhaul]
* :ghpull:`4264`: Fix for unpickling polar plot issue #4068
* :ghpull:`4267`: correct rst syntax for code blocks
* :ghpull:`4263`: Py26 format
* :ghpull:`3060`: converted assert into exception
* :ghpull:`4261`: STY: update example with preferred plt.subplots
* :ghpull:`4250`: BUG: Quiver must copy U, V, C args so they can't change before draw()
* :ghpull:`4254`: Minor typo fix.
* :ghpull:`4248`: backend_pgf: don't clip filled paths (fixes #2885, #3935, #3693)
* :ghpull:`4236`: multiple canvas support for Windows
* :ghpull:`4244`: Fix #4239: Don't include scientific notation in path strings
* :ghpull:`4234`: Added mock, coverage and pep8 dep. Added pep8 options
* :ghpull:`4233`: Fix small option for docs build with sphinx 1.3
* :ghpull:`4221`: Suggest non-existing default filename (Implement #3608)
* :ghpull:`4231`: Fix #4230: Don't overflow buffer with sketch path.
* :ghpull:`4224`: DOC : update testing docs
* :ghpull:`4229`: Bug in ParseTuple for PyQuadContourGenerator_init
* :ghpull:`4226`: Refactoring: fewer variables, slightly faster code
* :ghpull:`4220`: Add rcParams to enable/disable minor ticks on axes separately issue #3024
* :ghpull:`4219`: Implemented new feature for Issue #2880
* :ghpull:`4197`: Generate path strings in C++ for PDF and PS
* :ghpull:`4113`: forcing weight to int
* :ghpull:`3985`: Widget and animation improvements
* :ghpull:`4203`: DOC: Colormap synonyms in examples, fix errors caused by removing duplicates
* :ghpull:`4118`: CallbackRegistry fix
* :ghpull:`4134`: Axis Labels with offset Spines
* :ghpull:`4173`: Fix for issue #3930:ConnectionPatch with fancy arrow of length zero produces no plot
* :ghpull:`4182`: colorbar: edit tick locations based on vmin and vmax; closes #4181
* :ghpull:`4213`: Fix test docs build on Travis with Sphinx 1.3.0 Edit (Lock travis on 1.2.3 for now)
* :ghpull:`4075`: backend_cairo: Clip drawn paths to context.clip_extents()
* :ghpull:`4209`: More updates on dead URLs
* :ghpull:`4206`: Fix C++ warnings from latest clang-analyzer
* :ghpull:`4204`: Updated links in INSTALL
* :ghpull:`4201`: Bug in text draw method when path_effects are set
* :ghpull:`4191`: Adding 'api_changes' and 'whats_new' docs for PR #4172
* :ghpull:`4198`: Plot: convert 'c' to 'color' immediately; closes #4162, #4157 [backport to color_overhaul]
* :ghpull:`4061`: Allow users to decide whether a vector graphics backend combines multiple images into a single image
* :ghpull:`4186`: Close clipped paths
* :ghpull:`4172`: axes.locator_params fails with LogLocator (and most Locator subclasses) #3658
* :ghpull:`3753`: Logit scale
* :ghpull:`4171`: set ``fig.waiting = false`` when image data is received [backport to color_overhaul]
* :ghpull:`4165`: Make _is_writable_dir more flexible to obscure failure modes
* :ghpull:`4177`: MNT : fix typo in no-lint flag
* :ghpull:`4149`: Clean up matplotlib.colors
* :ghpull:`4155`: Various pep8 fixes - specifically targeting files which are failing travis pep8 tests
* :ghpull:`4159`: ENH better error message for wrong fontsize
* :ghpull:`4176`: Fix Travis building of docs with IPython 3
* :ghpull:`3787`: Refactors axis3d.py to address issue #3610
* :ghpull:`4174`: ENH: speed-up mlab.contiguous_regions using numpy
* :ghpull:`4166`: Ensure the gc module is available during interpreter exit
* :ghpull:`4170`: Travis: Commit docs on top of first_commit
* :ghpull:`4164`: Fix Gtk3 Backend Source ID was not found
* :ghpull:`4158`: Ensure that MPL_REPO_DIR is set on Travis
* :ghpull:`4150`: Travis syntax
* :ghpull:`4151`: BUG: fix bad edits to travis.yml file
* :ghpull:`4148`: Fix mathtext image bounding box
* :ghpull:`4138`: TST: trigger travis OSX tests if Linux tests pass
* :ghpull:`3874`: New C++ contour code with corner_mask kwarg
* :ghpull:`4144`: Fix for issue 4142: Let show() exit the run loop after all windows are closed in a non-interactive session
* :ghpull:`4141`: Modify set_ticklabels() to fix counterintuitive behavior of set_ticklabels(get_ticklabels)#2246
* :ghpull:`3949`: PEP8: adjust some long lines
* :ghpull:`4130`: Qt event fix
* :ghpull:`3957`: Corrected cax attributes of ImageGrid axes
* :ghpull:`4129`: MNT : fix text-based text with new advance-width
* :ghpull:`4084`: Updated some broken and outdated links in testing docs [backport 1.4.2-doc]
* :ghpull:`4093`: Gtk.main_iteration takes no arguments
* :ghpull:`4031`: Font advance width
* :ghpull:`4079`: scatter: fix marker kwarg bug. Closes #4073, #3895.
* :ghpull:`4123`: Link fix in external ressources + 1 addition
* :ghpull:`4121`: added guiEvent to PickEvent
* :ghpull:`4116`: DOC: Correct docstring typo in subplot2grid
* :ghpull:`4100`: Add guiEvent handling for web backends
* :ghpull:`4104`: Pep8 fixes
* :ghpull:`4097`: Fix scale factor label issue #4043
* :ghpull:`4101`: Add guiEvent data to Qt backend
* :ghpull:`4096`: Fix minor typo in artist tutorial
* :ghpull:`4089`: Fix #4074: Bug introduced in 91725d8
* :ghpull:`4087`: Fix #4076. Change how result is stored in point_in_path/point_on_path.
* :ghpull:`4006`: Allow interrupts to be delivered once Python is fixed.
* :ghpull:`3994`: Add per-page pdf notes in PdfFile and PdfPages.
* :ghpull:`4080`: test_axes: remove extraneous "show()"
* :ghpull:`4081`: Pep8 version fixes
* :ghpull:`3992`: Code removal
* :ghpull:`4039`: added some fixes in order to use the result obtained from ``mpl._get_configdir()`` [backport to 1.4.2-doc]
* :ghpull:`4050`: Fix masked array handling
* :ghpull:`4051`: Correct FA 4 name of Download icon
* :ghpull:`4041`: Prevent Windows from opening command prompt (#4021) [backport to 1.4.x]
* :ghpull:`4032`: Disable context menu in webagg
* :ghpull:`4029`: Fix key modifier handling in Web backends [backport 1.4.x]
* :ghpull:`4035`: FIX: resizing a figure in webagg
* :ghpull:`4034`: quiver: always recalculate in draw(); improve docstring; closes #3709, #3817 [backport to 1.4.x]
* :ghpull:`4022`: More helpful error message for pgf backend
* :ghpull:`3997`: Change documented "Optional" ScaleBase method to "Required"
* :ghpull:`4009`: Fix name of variable in doc string
* :ghpull:`4005`: Try to fix mencoder tests. [backport to 1.4.x]
* :ghpull:`4004`: Provide arguments to mencoder in a more proper way
* :ghpull:`4002`: fix find_output_cell for IPython >= 3.0 [backport to 1.4.x]
* :ghpull:`3995`: Fix wx._core.PyAssertionError ... wxGetStockLabel(): invalid stock item ID
* :ghpull:`3974`: Add Save Tool to NbAgg Figure [backport to 1.4.x]
* :ghpull:`3676`: Fix #3647 [backport to 1.4.x]
* :ghpull:`3968`: Add Support for ``scroll_event`` in WebAgg and NbAgg [backport to 1.4.x]
* :ghpull:`3965`: Js fixes for key events + ipython notebooks
* :ghpull:`3993`: Fix stupid typo
* :ghpull:`3939`: Deploy development documentation from Travis [not ready to merge]
* :ghpull:`3988`: MNT : deprecate FigureCanvasBase.onHilite
* :ghpull:`3982`: pgf can not write to ``BytesIO`` [back port to 1.4.x]
* :ghpull:`3971`: Added "val" attribute to widgets.RadioButtons
* :ghpull:`3981`: Fixes for File Saving in Webagg
* :ghpull:`3978`: Fix clipping/zooming of inverted images
* :ghpull:`3970`: Add Figure Enter/Leave Events to Webagg
* :ghpull:`3969`: Connect the Resize Event for WebAgg
* :ghpull:`3967`: FIX: Webagg ``save_figure`` - Raise a Warning Instead of an Error
* :ghpull:`3916`: RF: always close old figure windows
* :ghpull:`3958`: Suppress some warnings in examples
* :ghpull:`3831`: Fix python3 issues in some examples
* :ghpull:`3612`: Minor tick fix [backport to 1.4.x]
* :ghpull:`3943`: Legend deprecate removal + cleanup
* :ghpull:`3955`: API : tighten validation on pivot in Quiver
* :ghpull:`3950`: Ensure that fonts are present on travis when building docs.
* :ghpull:`3883`: BUG/API : relax validation in hist
* :ghpull:`3954`: Simplify set_boxstyle Accepts section of FancyBboxPatch
* :ghpull:`3942`: MNT : slight refactor of Axis.set_ticklabels
* :ghpull:`3924`: Fix PEP8 coding style violations
* :ghpull:`3941`: Change name of dev version
* :ghpull:`3925`: Text.{get,set}_usetex: manually enable/disable TeX
* :ghpull:`3933`: Fix minor typo in docs: s/right/left/
* :ghpull:`3923`: Fixed PEP8 coding style violations
* :ghpull:`3835`: Single axes artist
* :ghpull:`3868`: Ensure that font family is unicode
* :ghpull:`3893`: Don't close GzipFile before it is used
* :ghpull:`3850`: FIX str.decode in python2.6 does not take keyword arguments [backport to 1.4.x]
* :ghpull:`3863`: Fix log transforms (fixes #3809) [back port to 1.4.x]
* :ghpull:`3888`: Update collections.py
* :ghpull:`3885`: Fix indentation
* :ghpull:`3866`: Regression in transforms: raises exception when applied to single point
* :ghpull:`3196`: Issue with iterability of axes arguments [backport to 1.4.x]
* :ghpull:`3853`: typeFace as bytestring in Py3
* :ghpull:`3861`: Added missing implementation of get_window_extent for AxisImage and test (fixes #2980).
* :ghpull:`3845`: BUG: non integer overlap might lead to corrupt memory access in as_strided [backport 1.4.x]
* :ghpull:`3846`: wrong method name
* :ghpull:`3795`: RcParams instances for matplotlib.style.use
* :ghpull:`3839`: backend_wx: delete remaining lines for removal of printer support
* :ghpull:`3832`: Remove deprecated nonorm and normalize
* :ghpull:`3402`: Image tutorial notebook edit
* :ghpull:`3830`: Merge of #3402
* :ghpull:`3824`: Path.contains_points() returns a uint8 array instead of a bool array
* :ghpull:`2743`: Updated the macosx backed figure manager show function to bring the
* :ghpull:`3812`: insert deprecation warning for set_graylevel
* :ghpull:`3813`: Make array_view::operator= non-const
* :ghpull:`3814`: [examples] use np.radians/np.degrees where appropriate
* :ghpull:`3710`: allow selecting the backend by setting the environment variable MPLBACKEND
* :ghpull:`3811`: copy all array_view members in copy constructor
* :ghpull:`3806`: OSX backend. 2D histograms are flipped vertically
* :ghpull:`3810`: extend #if to include both CLONGDOUBLE related definitions
* :ghpull:`3808`: BUG : fix #3805
* :ghpull:`3807`: A couple of simple to fix warnings in the examples
* :ghpull:`3801`: Fonts demos improvments
* :ghpull:`3774`: [examples] final pep8 fixes
* :ghpull:`3799`: Update to doc/conf.py to allow for building docs without qt installed
* :ghpull:`3797`: Fix for #3789, segfault in _tri
* :ghpull:`3698`: fixed axvline description of ymin/ymax args. Little edit in axhline doc
* :ghpull:`3083`: New rcParams to set pyplot.suptitle() defaults
* :ghpull:`3788`: Fix Sphinx warning in widgets
* :ghpull:`3683`: remove _orig_color which is duplicate of _rgb
* :ghpull:`3502`: Improved selection widget
* :ghpull:`3786`: Fix 'version version not identified' message.
* :ghpull:`3784`: Fix warning in docs causing Travis error
* :ghpull:`3736`: Boxplot examples
* :ghpull:`3762`: WebAgg: flush stdout after printing, redirect "stopped" message to stder... [backport to 1.4.x]
* :ghpull:`3770`: Treat Sphinx warnings as errors when building docs on Travis
* :ghpull:`3777`: Upgrade agg to SVN version
* :ghpull:`3781`: Fix compiler warning
* :ghpull:`3780`: backend_pgf: \pgftext now requires \color inside argument (fix #3779) [backport to 1.4.x]
* :ghpull:`3778`: Reduce coupling between _tkagg and _backend_agg modules
* :ghpull:`3737`: Rgb2lab minimal
* :ghpull:`3771`: [examples] fix pep8 error classes e225, e227 and e228
* :ghpull:`3769`: made idle_event() in backend_bases.py return True
* :ghpull:`3768`: Mock backens when building doc
* :ghpull:`3714`: [examples] fix pep8 error classes e231 and e241
* :ghpull:`3764`: MNT : removed \*args from CallbackRegistry init
* :ghpull:`3767`: RST fixes for the docs
* :ghpull:`3765`: MNT : delete unused Image
* :ghpull:`3763`: WebAgg: _png.write_png raises TypeError
* :ghpull:`3760`: ENH: use fewer points for 3d quiver plot
* :ghpull:`3499`: Legend marker label placement
* :ghpull:`3735`: ENH: add pivot kwarg to 3d quiver plot
* :ghpull:`3755`: Reenable shading tests for numpy 1.9.1 and later
* :ghpull:`3744`: Final decxx corrections to PR #3723
* :ghpull:`3752`: Make sure that initial state gets reset if anything goes wrong in ````rc_context```` [backport to 1.4.x]
* :ghpull:`3743`: remove mention to %pylab [backport to 1.4.2-doc]
* :ghpull:`3691`: Minor C++ improvements
* :ghpull:`3729`: handling of color=None by eventplot(), fixes #3728
* :ghpull:`3546`: Example of embedding a figure into an existing Tk canvas
* :ghpull:`3717`: Github status upgrade
* :ghpull:`3687`: Errorbar markers not drawn in png output
* :ghpull:`3724`: Remove duplicate import_array() call
* :ghpull:`3725`: Fix invalid symbol if numpy 1.6
* :ghpull:`3723`: Complete removal of PyCXX
* :ghpull:`3721`: Subplots deprecation
* :ghpull:`3719`: Turn rcparams warning into error and remove knowfail
* :ghpull:`3718`: Use is to compare with None in backend_pdf
* :ghpull:`3716`: Ignore doc generated files
* :ghpull:`3702`: Remove the check on path length over 18980 in Cairo backend
* :ghpull:`3684`: Build failure on Launchpad
* :ghpull:`3668`: [examples] pep8 fix E26\*
* :ghpull:`3303`: Adding legend handler to PolyCollection and labels to stackplot
* :ghpull:`3675`: Additional Warnings in docs build on travis after merge of decxx
* :ghpull:`3630`: refactor ftface_props example
* :ghpull:`3671`: fix for #3669 Font issue without PyCXX
* :ghpull:`3681`: use _fast_from_codes_and_verts in transform code
* :ghpull:`3678`: DOC/PEP8 : details related to PR #3433
* :ghpull:`3677`: Rotation angle between 0 and 360.
* :ghpull:`3674`: Silince UnicodeWarnings in tests
* :ghpull:`3298`: Wedge not honouring specified angular range
* :ghpull:`3351`: Update demo_floating_axes.py
* :ghpull:`3448`: Fix scaling of custom markers [backport to 1.4.x]
* :ghpull:`3485`: Reduce the use of XObjects in pdf backend [backport to 1.4.x]
* :ghpull:`3672`: Python3 pep8 fixes
* :ghpull:`3558`: Adds multiple histograms side-by-side example
* :ghpull:`3665`: Remove usage of raw strides member in _backend_gdk.c
* :ghpull:`3309`: Explicitly close read and write of Popen process (latex)
* :ghpull:`3662`: Make all classes new-style.
* :ghpull:`3646`: Remove PyCXX dependency for core extension modules
* :ghpull:`3664`: [examples] pep8 fix e251 e27\*
* :ghpull:`3294`: fix typo in figlegend_demo.py
* :ghpull:`3666`: remove print from test
* :ghpull:`3638`: MNT : slight refactoring of Gcf
* :ghpull:`3387`: include PySide in qt4agg backend check
* :ghpull:`3597`: BUG/TST : skip example pep8 if don't know source path
* :ghpull:`3661`: Numpy 1.6 fixes
* :ghpull:`3635`: fix pep8 error classes e20[12] and e22[12] in examples
* :ghpull:`3547`: Don't use deprecated numpy APIs
* :ghpull:`3628`: Document auto-init behavior of colors.Normalize and cm.ScalarMappable.
* :ghpull:`3640`: figure.max_num_figures was renamed to figure.max_open_warning.
* :ghpull:`3650`: Typo fixes. [backport to doc branch]
* :ghpull:`3642`: TST : know-fail shadding tests
* :ghpull:`3619`: PatchCollection: pass other kwargs for match_original=True
* :ghpull:`3629`: examples: fix pep8 error class E211
* :ghpull:`3515`: examples: fix pep8 error classes E111 and E113
* :ghpull:`3625`: animate_decay.py example code is less complicated
* :ghpull:`3613`: Fix problem with legend if data has NaN's [backport to 1.4.x]
* :ghpull:`3611`: Fix spelling error
* :ghpull:`3600`: BUG: now only set 'marker' and 'color' attribute of fliers in boxplots
* :ghpull:`3594`: Unicode decode error [backport to 1.4.x]
* :ghpull:`3595`: Some small doc fixes only relevant on the master branch
* :ghpull:`3291`: Lightsource enhancements
* :ghpull:`3578`: Fixes test to assert instead of print
* :ghpull:`3575`: Supports locale-specified encoding for rcfile.
* :ghpull:`3556`: copy/paste corrections in test_backend_qt5
* :ghpull:`3545`: Provide an informative error message if something goes wrong in setfont [backport to 1.4.x]
* :ghpull:`3369`: Added legend.framealpha to rcParams, as mentioned in axes.legend docstring
* :ghpull:`3510`: Fix setupext [backport to 1.4.x]
* :ghpull:`3513`: examples: fully automated fixing of E30 pep8 errors
* :ghpull:`3507`: general pep8 fixes
* :ghpull:`3506`: Named colors example, figure size correction [backport to 1.4.0-doc]
* :ghpull:`3501`: Bugfix for text.xytext property
* :ghpull:`3376`: Move widget.{get,set}_active to AxisWidget.
* :ghpull:`3419`: Better repr for Bboxes.
* :ghpull:`3474`: call set cursor on zoom/pan toggle [backpont to 1.4.x]
* :ghpull:`3425`: Pep8ify examples
* :ghpull:`3477`: Better check for required dependency libpng
* :ghpull:`2900`: Remove no-longer-necessary KnownFail for python 3.2.
* :ghpull:`3467`: Bugfix in mlab for strided views of np.arrays [backport to 1.4.x]
* :ghpull:`3469`: Fix handling of getSaveFileName to be consistent [backport to 1.4.x]
* :ghpull:`3384`: Test marker styles
* :ghpull:`3457`: Add Qt5Agg to backends in matplotlibrc.template.
* :ghpull:`3438`: Get rid of unused pre python 2.6 code in doc make.py
* :ghpull:`3432`: Update whats_new.rst
* :ghpull:`3282`: Catch warning thrown in Mollweide projection.
* :ghpull:`2635`: Crash on saving figure if text.usetex is True
* :ghpull:`3241`: Cast to integer to get rid of numpy warning
* :ghpull:`3244`: Filter warnings in rcparams test (and others)
* :ghpull:`3378`: BUG: Fixes custom path marker sizing for issue #1980
Issues (585):
* :ghissue:`5259`: 1.5.0~rc2: unittest failures/errors on (debian) i386
* :ghissue:`3315`: "Too many open files" in test runs on Python 3.3
* :ghissue:`5328`: Reduce duplication between ``tests.py`` and ``matplotlib.__init__:test()``
* :ghissue:`5302`: Pixelated fonts when plot saved as jpeg
* :ghissue:`5226`: Font cache thread safety
* :ghissue:`5310`: Regression in axes.color_cycle assignment on 1.5rc2
* :ghissue:`5316`: Axes.bar: wrong default parameter in documentation
* :ghissue:`5317`: Make nbagg recognise the requested facecolor of a figure
* :ghissue:`5312`: error in set_linestyle
* :ghissue:`5277`: implement ``get_ticks_direction()``
* :ghissue:`5303`: strange issues trying to play wit Matplotlib1.5rc3 (win32, cgohlke)
* :ghissue:`5280`: Separate test data from matplotlib package
* :ghissue:`5202`: New colormaps are not included in the plt.cm.datad dictionary.
* :ghissue:`4783`: Adapt http://matplotlib.org/devdocs/users/colormaps.html to include new colormaps
* :ghissue:`5291`: ERROR: matplotlib.tests.test_patheffects.test_PathEffect_get_proxy
* :ghissue:`5286`: unit_scatter.py example crashes on Python 3.4