-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathgithub_stats.txt
More file actions
2155 lines (2144 loc) · 126 KB
/
Copy pathgithub_stats.txt
File metadata and controls
2155 lines (2144 loc) · 126 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 2013/07/31 - 2014/10/18 (tag: v1.3.0)
These lists are automatically generated, and may be incomplete or contain duplicates.
The following 169 authors contributed 2105 commits.
* Adam Heck
* Adrian Price-Whelan
* Alex Loew
* Alistair Muldal
* Andrea Bedini
* Andreas Wallner
* Andrew Dawson
* Andrew Merrill
* Aseem Bansal
* Behram Mistree
* Ben Cohen
* Ben Gamari
* Ben Keller
* Ben Root
* Benjamin Reedlunn
* Brandon Liu
* CJ Carey
* Cameron Davidson-Pilon
* Carissa Brittain
* Carwyn Pelley
* Chris Beaumont
* Chris G
* Christoph Gohlke
* Christoph Hoffmann
* Cimarron Mittelsteadt
* Damon McDougall
* Daniel O'Connor
* Dara Adib
* David Anderson
* Dean Malmgren
* Dmitry Lupyan
* DonaldSeo
* Elliott Sales de Andrade
* Eric Firing
* Eugene Yurtsev
* Federico Ariza
* Felipe
* Filipe
* Francesco Montesano
* Francis Colas
* Geoffroy Billotey
* Gregory Ashton
* Guillaume Gay
* Gustavo Braganca
* Hans Meine
* Hans Moritz Günther
* Ian Thomas
* Jae-Joon Lee
* Jake Vanderplas
* JamesMakela
* Jan Schulz
* Jason Grout
* Jason Miller
* Jens Hedegaard Nielsen
* Joe Kington
* Joel B. Mohler
* Jorrit Wronski
* José Ricardo
* Jouni K. Seppänen
* Julian Taylor
* JulianCienfuegos
* Katy Huff
* Kevin Chan
* Kevin Keating
* Kristen M. Thyng
* Larry Bradley
* Lennart Fricke
* Leo Singer
* Loïc Séguin-C
* Magnus Nord
* Maksym P
* Manuel GOACOLOU
* Marianne Corvellec
* Markus Roth
* Martin Dengler
* Martin Fitzpatrick
* Martin Spacek
* Matt Klein
* Matt Terry
* Matthew Brett
* Matthias Bussonnier
* Matthieu Caneill
* Matěj Týč
* Michael
* Michael Droettboom
* Michiel de Hoon
* Michka Popoff
* Mikhail Korobov
* MinRK
* Nelle Varoquaux
* Nic Eggert
* Nicolas P. Rougier
* Oliver Willekens
* Patrick Marsh
* Paul
* Paul Hobson
* Paul Ivanov
* Per Parker
* Peter Iannucci
* Peter Würtz
* Phil Elson
* Pierre Haessig
* Puneeth Chaganti
* Remi Rampin
* Richard Hattersley
* Ricky
* Robert Johansson
* Rohan Walker
* Roland Wirth
* RutgerK
* Ryan Blomberg
* Ryan D'Souza
* Ryan May
* Scott Lasley
* Scott Lawrence
* Scott Stevenson
* Sergey Kholodilov
* Silviu Tantos
* Simon Gibbons
* Thomas A Caswell
* Thomas Hisch
* Thomas Robitaille
* Till Stensitzki
* Timo Vanwynsberghe
* Tobias Megies
* Todd Jennings
* Tony S Yu
* Tor Colvin
* Trevor Bekolay
* Vadim Markovtsev
* Valentin Haenel
* Viktor Kerkez
* Vlad Seghete
* Wieland Hoffmann
* William Manley
* Yaron de Leeuw
* anykraus
* arokem
* aszilagyi
* blackw1ng
* blah blah
* captainwhippet
* chebee7i
* danielballan
* davidovitch
* daydreamt
* donald
* endolith
* fardal
* grdlok
* jowr
* kcrisman
* kelsiegr
* khyox
* kramer65
* kshramt
* limtaesu
* marky
* profholzer
* rahiel
* rhoef
* sfroid
* spiessbuerger
* stahlous
* syngron
* ugurthemaster
* vagrant
* vbr
* xbtsw
We closed a total of 1964 issues, 622 pull requests and 1342 regular issues;
this is the full list (generated with the script
:file:`tools/github_stats.py`):
Pull Requests (622):
* :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:`3564`: Rcparam validation fix
* :ghpull:`3642`: TST : know-fail shadding tests
* :ghpull:`3632`: Fix for #3623
* :ghpull:`3619`: PatchCollection: pass other kwargs for match_original=True
* :ghpull:`3637`: typo: mp4 -> mpeg4. Closes #3636.
* :ghpull:`3629`: examples: fix pep8 error class E211
* :ghpull:`3622`: setup.py creates a zombie C extension called "freetype2"
* :ghpull:`3627`: Fixed Image and Renderer pickling
* :ghpull:`3515`: examples: fix pep8 error classes E111 and E113
* :ghpull:`3625`: animate_decay.py example code is less complicated
* :ghpull:`3621`: matplotlib.__version__ is now unicode as of 1.4.0
* :ghpull:`3620`: Revert interactive determination
* :ghpull:`3613`: Fix problem with legend if data has NaN's [backport to 1.4.x]
* :ghpull:`3313`: BUG: 3 fixes for widgets (MultiCrusor, SpanSelector, Slider)
* :ghpull:`3496`: BUG : fix str vs bytes issue in py3 in ps backend
* :ghpull:`3609`: Nbagg icons
* :ghpull:`3611`: Fix spelling error
* :ghpull:`3600`: BUG: now only set 'marker' and 'color' attribute of fliers in boxplots
* :ghpull:`3560`: Updated whats new for nbagg and legend/patheffects docs.
* :ghpull:`3594`: Unicode decode error [backport to 1.4.x]
* :ghpull:`3574`: `rotation` parameter has no effect on `RegularPolyCollection`
* :ghpull:`3409`: Win fixes
* :ghpull:`3595`: Some small doc fixes only relevant on the master branch
* :ghpull:`3291`: Lightsource enhancements
* :ghpull:`3592`: Fix crash in picking for zero-length path collection
* :ghpull:`3585`: merge V1.4.0-doc into v1.4.x
* :ghpull:`3566`: BUG : don't assume label in boxpplot_stat
* :ghpull:`3567`: Fixed the differencing of images for the webagg/nbagg backends.
* :ghpull:`3571`: BUG : deal with empty list passed to boxplot
* :ghpull:`3533`: BUG : fix handling of flierprop by boxplot
* :ghpull:`3514`: Ticks on top axis disappear if tick size is too large (when using bbox_inches='tight')
* :ghpull:`3578`: Fixes test to assert instead of print
* :ghpull:`3575`: Supports locale-specified encoding for rcfile.
* :ghpull:`3479`: Build dep updates
* :ghpull:`3552`: Nbagg enhancements
* :ghpull:`3559`: Install texlive and other dependencies when building docs.
* :ghpull:`3555`: Typo in comment documentation for example timers.py
* :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:`3548`: Silence some Sphinx warnings by rewriting docstrings.
* :ghpull:`3539`: DEP : update six minimum version
* :ghpull:`3543`: DOC : fix main-page tags
* :ghpull:`3524`: Bug in AutoDateLocator when dates are in reverse order
* :ghpull:`3464`: BUG : nbagg py3k compatibility
* :ghpull:`3534`: BUG : fixes whis over-writing in boxplot_stats
* :ghpull:`3535`: BUG/DOC : Correct default value listed in docstring
* :ghpull:`3369`: Added legend.framealpha to rcParams, as mentioned in axes.legend docstring
* :ghpull:`3510`: Fix setupext [backport to 1.4.x]
* :ghpull:`3530`: Only insert links to pdfs if we are actually generating these.
* :ghpull:`3487`: Can not import matplotlib when launching from non-ascii path
* :ghpull:`3526`: BUG : fix eps corruption when using clipping
* :ghpull:`3492`: Allow python 3 version of PyCXX
* :ghpull:`3521`: More doc fixes
* :ghpull:`3513`: examples: fully automated fixing of E30 pep8 errors
* :ghpull:`3461`: This fixes a bunch of Sphinx warnings
* :ghpull:`3507`: general pep8 fixes
* :ghpull:`3506`: Named colors example, figure size correction [backport to 1.4.0-doc]
* :ghpull:`3503`: Win fix simple
* :ghpull:`3495`: BUG : don't use super(self.__class__, self)
* :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:`3478`: BUG : restore back-compatibility of regisiter_backend
* :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:`3456`: DOC : add known-bug + fix for QT5 toolbar issue
* :ghpull:`3458`: DOC : minor import tweaks
* :ghpull:`3457`: Add Qt5Agg to backends in matplotlibrc.template.
* :ghpull:`3422`: Use mailmap in github stats
* :ghpull:`3429`: DOC : added pytz to optional dependencies docs
* :ghpull:`3453`: Bbox rebase 14
* :ghpull:`3427`: DOC : added DOI link to citing.html
* :ghpull:`3438`: Get rid of unused pre python 2.6 code in doc make.py
* :ghpull:`3414`: Fixes TypeError when installing without freetype
* :ghpull:`3428`: DOC : add caveat about freetype 2.3
* :ghpull:`3430`: DOC : fixed markup / boxplot text in whats_new
* :ghpull:`3426`: DOC : remove piwik code
* :ghpull:`3432`: Update whats_new.rst
* :ghpull:`3415`: DOC: fix markup and download link in the Windows install section
* :ghpull:`3408`: test_text Modify filter warning regex
* :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:`3335`: Fix and new test for #3327
* :ghpull:`3278`: Use libpng-config if available
* :ghpull:`3244`: Filter warnings in rcparams test (and others)
* :ghpull:`3378`: BUG: Fixes custom path marker sizing for issue #1980
* :ghpull:`3401`: enlarge on windows build instructions slightly
* :ghpull:`3399`: Cherrypick doc changes to v1.4.0
* :ghpull:`3397`: Install guide tweaks
* :ghpull:`3394`: DOC : add note about np.matrix and pandas objects
* :ghpull:`3390`: Move stylelib directory to mpl-data
* :ghpull:`3381`: BUG : make qApp global before using it
* :ghpull:`3380`: Remove residual mention of TODO file, which no longer exists.
* :ghpull:`3349`: DOC : added folders for api_changes and whats_new
* :ghpull:`3360`: BUG : modified logic on starting qApp
* :ghpull:`3372`: DOC: Fixed the wording of the deprecation warning
* :ghpull:`3363`: Identification of freetype when 'freetype-config --ftversion' fails.
* :ghpull:`3359`: PEP8 conformity; removed outcommented code
* :ghpull:`3357`: backend_qt5.py Don't use six.u
* :ghpull:`3287`: DOC: comprehensive rewrite for OSX binary install
* :ghpull:`3337`: BUG : don't assign color to flier props if None
* :ghpull:`3342`: AGG link changed. Also fix other doc warnings
* :ghpull:`3262`: 1.4.0 RC1: --ftversion vs --version freetype version
* :ghpull:`3322`: Fixed error with QSizePolicy
* :ghpull:`3339`: Fix mathmpl images not showing in HTML Help (CHM)
* :ghpull:`3331`: Restore compatibility with Python 3.2
* :ghpull:`3324`: Fix #3304.
* :ghpull:`3325`: ENH: add HTML Help builder option
* :ghpull:`3329`: Workaround for Sphinx not escaping ``_`` (underscore) for tex output
* :ghpull:`3323`: Replaced unicode() function by six.text_type
* :ghpull:`3301`: Colormap choice guidelines in documentation - based on talk at SciPy 2014
* :ghpull:`3320`: DOC: Fix Malformed table. Text in column margin
* :ghpull:`3317`: TST: Fix test_animation RuntimeErrors on Windows
* :ghpull:`3310`: Fix MatplotlibDeprecationWarning: The "loc" positional argument to legend is deprecated
* :ghpull:`3312`: BUG: fix test error when ghostscript not installed
* :ghpull:`3306`: BUG : restore allow_rasterization on PolyCollection
* :ghpull:`3302`: Check for GhostScript in this test which needs it
* :ghpull:`3194`: Annotate bbox darrow
* :ghpull:`3277`: MNT : better error handling on determining gs version
* :ghpull:`3300`: Quiver3d fixes
* :ghpull:`3284`: BUG : fix _reshape_2D bug with [(n, 1), ..] input
* :ghpull:`3296`: V1.4.x
* :ghpull:`3295`: Use the interpolation parameter in make_thumbnail
* :ghpull:`3235`: Silence some more warnings
* :ghpull:`3274`: BUG : fixes FontProperties memory leak
* :ghpull:`3275`: TST: Fix ImportError: No module named 'mpl_toolkits'
* :ghpull:`3250`: Fix WindowsError: [Error 32] The process cannot access the file
* :ghpull:`3247`: Usage faq
* :ghpull:`3270`: DOC : windows install docs from cgohlke
* :ghpull:`3257`: MRG: refactor and bugfixes for plot_directive
* :ghpull:`3238`: OSX install
* :ghpull:`3258`: Fix various memory leaks discovered through valgrind
* :ghpull:`3253`: Stop make.py removing generated documentation figs
* :ghpull:`3269`: Upload artifacts only on main repository.
* :ghpull:`3251`: Add animation.convert_path setting to matplotlibrc.template
* :ghpull:`3266`: remove obsolete TODO files
* :ghpull:`3261`: Get rid of warning about GTK3Agg with python3
* :ghpull:`3249`: TST: Fix test_backend_ps failures on Windows
* :ghpull:`3217`: Added some function arguments to the documentation for FuncAnimation
* :ghpull:`3243`: Fixed backend workflow.
* :ghpull:`3246`: Fix some hyperlinks in the documentation
* :ghpull:`3004`: FAQ and unit/ still refers to nxutils
* :ghpull:`3239`: Fix auto-closing in PolyCollection
* :ghpull:`3193`: Fix plot directive when used with multiple options.
* :ghpull:`3236`: Test PEP8 stuff in separate Travis build.
* :ghpull:`3188`: Np error patch
* :ghpull:`3154`: whitelist mpl_toolkits tests
* :ghpull:`3230`: DOC : added note about useoffset rcparam
* :ghpull:`3228`: DOC : top_level doc-string clean up
* :ghpull:`3190`: Adding two new styles to mplstyles
* :ghpull:`3215`: Close files in animation to silence some warning in the test suite on python3
* :ghpull:`3237`: Fix Collection3D. Fixes legend for scatter3d
* :ghpull:`3233`: Update numpy version in setup.py
* :ghpull:`3227`: Whats new cleaning
* :ghpull:`3224`: Fix lots of warnings in docs/Examples that crash
* :ghpull:`3229`: DEP : bump min numpy to 1.6
* :ghpull:`3222`: add reduce to the list of imports from six.moves
* :ghpull:`3126`: insertion of Annotation class docs into annotate docstring broken
* :ghpull:`3221`: Fixes #3219 by ignoring pep8 noncomplicant auto-generated file.
* :ghpull:`2227`: Refactor of top-level doc/README.rst
* :ghpull:`3211`: Mplot3d/depthshade
* :ghpull:`3184`: DOC : added warning to doc of get_window_extent
* :ghpull:`3165`: Bug restore boxplot defaults
* :ghpull:`3207`: Fix memory leak in tostring_rgba_minimize(). (#3197)
* :ghpull:`3210`: Fix PEP8 error.
* :ghpull:`3203`: Make type1font.py work better on Python 3.x
* :ghpull:`3155`: BUG : fix fetch of freetype version during build
* :ghpull:`3192`: TST : drop 3.2, add 3.4
* :ghpull:`3121`: Added 'PyQt4v2' to valid values for backend.qt4
* :ghpull:`3167`: BUG : raise exception in subplot if num out of range
* :ghpull:`3208`: Add missing import of unichr from six.
* :ghpull:`3156`: DOC : added whats_new entry for Qt5 backend
* :ghpull:`2843`: BUGFIX: This change fixes #2475, where contour labels added manually
* :ghpull:`3201`: Revert "[examples/api] autopep8 + use np.radians/np.degree where appropr...
* :ghpull:`3200`: Revert "pep8ify more examples in examples/ + use np.radians/np.degrees"
* :ghpull:`3174`: MNT : replace and deprecated qt4_compat
* :ghpull:`3112`: BUG : patches.Wedge.set_radius set wrong attribute
* :ghpull:`2952`: BUG : turned clipping off on pie chart components
* :ghpull:`2951`: BUG/API : tweaked how AnchoredSizeBar handles font properties
* :ghpull:`3157`: BLD : fix build on windows
* :ghpull:`3189`: BUG: use unittest.mock for Python 3.3+
* :ghpull:`3045`: Use less aggressive garbage collection
* :ghpull:`3185`: DOC : added details about r/cstride in plot3d
* :ghpull:`3182`: pep8ify more examples in examples/ + use np.radians/np.degrees
* :ghpull:`3181`: [examples/api] autopep8 + use np.radians/np.degree where appropriate
* :ghpull:`3163`: DOC : documented bottom kwarg of hist
* :ghpull:`3180`: DOC: Fix order of parameters in ax.text docstring.
* :ghpull:`3168`: DOC : add prominent doc about set_useOffset
* :ghpull:`3162`: BLD : made tornado an optional external package
* :ghpull:`3169`: Update pyplot_tutorial.rst
* :ghpull:`3084`: Improving plt.hist documentation
* :ghpull:`3160`: Glade tutorial branch fixed
* :ghpull:`3008`: Nbagg backend
* :ghpull:`3164`: fix bad pathing in whats_new.rst
* :ghpull:`3159`: BUG : fix qt4 backends
* :ghpull:`3158`: backend_pgf: Error message for missing latex executable (fix #3051)
* :ghpull:`3125`: DOC : added annotation example to arrow docstring
* :ghpull:`3149`: 3dquiver rebranch
* :ghpull:`3141`: BUG: Fix 'TypeError: expected bytes, str found' on Python 3
* :ghpull:`3072`: Implement backend for PyQt5 + modify Qt4 backends to use Qt5 module via shim
* :ghpull:`3153`: Avoid floating point sensitivity in trisurf3d test
* :ghpull:`3147`: Fix doc for sharey keyword in pyplot.subplots.
* :ghpull:`3133`: Doc cleanup
* :ghpull:`3110`: BUG: Add Figure.delcolorbar() to fully delete a colorbar
* :ghpull:`3131`: DOC : sixify unichr
* :ghpull:`3132`: DOC : added note about maintain ref to widgets
* :ghpull:`2927`: BUG : don't use mutable objects as dictionary keys
* :ghpull:`3122`: DOC: mention Anaconda; clean some old junk out of the FAQ
* :ghpull:`3130`: Scatter set sizes whats new
* :ghpull:`3127`: DOC : added inherited-members to Axes autodoc
* :ghpull:`3128`: Axes aspect doc
* :ghpull:`3103`: errorbar: fmt kwarg defaults to None; use 'none' to suppress plot call
* :ghpull:`3123`: DOC : add documentation to Polygon methods
* :ghpull:`3120`: typo fix
* :ghpull:`3099`: New animation example (Joy Division's Unchained Love cover)
* :ghpull:`3111`: bug fix: check the type of the 'key' of the two array 'r1' and 'r2'
* :ghpull:`3108`: DOC : clarified doc of add_artist
* :ghpull:`3107`: Bug-fix for issue 3106
* :ghpull:`3092`: Adds check that rgb sequence is of length 3
* :ghpull:`3100`: Use autolim kwarg in add_collection to prevent duplication of effort.
* :ghpull:`3104`: BUG: in Spine.set_position(), preserve most Axis info.
* :ghpull:`3101`: Streamplot: clean up handling of masks, eliminate warning in test.
* :ghpull:`3102`: Image: handle images with zero columns or rows.
* :ghpull:`2929`: clip_on documentation note/warning
* :ghpull:`3067`: Fix for bug #3029.
* :ghpull:`3078`: fix argument checks in axis/base.margins
* :ghpull:`3089`: Fix log hist y-axis minimum with weighted data
* :ghpull:`3087`: small error in comment
* :ghpull:`2996`: Violin Plots
* :ghpull:`3053`: symlog-scale: Remove asssert linscale >= 1.
* :ghpull:`3077`: Invalidate font manager when rcParam family lists change.
* :ghpull:`3081`: Points to pixels
* :ghpull:`3080`: Minor fix to commit 24bc071
* :ghpull:`3076`: Bug: backend_pdf: UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2
* :ghpull:`3074`: TST : force re-building of font-cache
* :ghpull:`2874`: Fix for issue #2541 (revised)
* :ghpull:`2662`: allow slice and fancy indexing to only show some markers
* :ghpull:`2855`: ENH Added the origin option to `spy`
* :ghpull:`3022`: Updating PyQt version checks for v4.10+
* :ghpull:`3015`: Date stem simplefix
* :ghpull:`3017`: Do not provide (wrong) mtext instances for pre-layouted text blocks (fixes #3000)
* :ghpull:`3009`: BUG: Showing a BboxImage can cause a segmentation fault
* :ghpull:`3061`: Add Axes.add_image() for consistency.
* :ghpull:`3063`: Change EPD links to Enthought Canopy
* :ghpull:`3050`: Animation example: rain drops
* :ghpull:`2898`: Fix animation errors
* :ghpull:`3031`: avoid np.nan values in colors array returned by axes3d._shade_colors
* :ghpull:`3038`: BUG : expand x/y range in hexbin if singular
* :ghpull:`3018`: Fix documentation of entropy function
* :ghpull:`3036`: Unicode fixes
* :ghpull:`2871`: Add a colorblind friendly heatmap.
* :ghpull:`2879`: BLD : adjust min six version to 1.3
* :ghpull:`3037`: DEP : removed levypdf from mlab
* :ghpull:`3025`: mpl issue: #2974 - documentation corrected
* :ghpull:`3030`: Fix minor typo in customisation docs
* :ghpull:`2947`: Re-Generate legend, through apply_callback/Apply
* :ghpull:`3014`: BUG : improved input clean up in Axes.{h|v}line
* :ghpull:`2771`: Fix font family lookup calculation
* :ghpull:`3007`: #3005 - Removed 'ipython -pylab' references
* :ghpull:`2946`: remove .rect member (clashes with QWidget)
* :ghpull:`2837`: EXP : turn of clipping in spine example
* :ghpull:`2772`: BUG : instantiate fall-back writer
* :ghpull:`2922`: ENH : add flag to box_plot and bxp to manage (or not) xticks
* :ghpull:`2950`: DOC : edits to optional dependencies
* :ghpull:`2995`: Added 'interpolation_none_vs_nearest' example, without .DS_store files
* :ghpull:`3002`: BUG/DOC : fix bad merge of INSTALL
* :ghpull:`2993`: Avoid a null-pointer dereference in _tri.cpp
* :ghpull:`2994`: Minor fixes in _macosx.m
* :ghpull:`2997`: Disable copying of C++ classes with nontrivial destructors
* :ghpull:`2992`: Remove a few dead assignments
* :ghpull:`2991`: Silence some compiler warnings related to ft2font
* :ghpull:`2989`: Don't call Py_DECREF on null in _ttconv.cpp
* :ghpull:`2984`: small error in install faq
* :ghpull:`2829`: (fix #2097) PGF: get fonts from fc-list, use builtin fonts for tests
* :ghpull:`2913`: Allow :context: directive to take 'reset' option. Fixes #2892.
* :ghpull:`2914`: Don't close figure if context and apply_rcparams are both set.
* :ghpull:`2983`: DOC/BUG : fixed sphinx markup
* :ghpull:`2981`: TST: __spec__ (an import-related variable for modules) was added in pyth...
* :ghpull:`2978`: BUG: EllipseCollection: fix transform error
* :ghpull:`2968`: BUG: Fix the triangular marker rendering error.
* :ghpull:`2966`: axvline doc typo fix
* :ghpull:`2962`: py3k fix
* :ghpull:`2739`: DOC : improved `extent` of `imshow` doc
* :ghpull:`2960`: PEP8 : making pep8 happy again
* :ghpull:`2836`: DOC/ENH : get/set_size_inches
* :ghpull:`2948`: DOC : added missing doc changes from #2844
* :ghpull:`1204`: Add power-law normalization
* :ghpull:`2452`: Fixed issues with errorbar limits
* :ghpull:`2955`: PEP8 : add missing line to un-break build
* :ghpull:`2926`: BUG: Removes iteration over locals (no-no) in mathtext
* :ghpull:`2915`: Consistency of the radius argument for Path.points_in_path
* :ghpull:`2939`: Fixes a bug in drawing bitmap images in the macosx backend for handling device scaling
* :ghpull:`2949`: CLN : removed version check that required numpy > 1.2
* :ghpull:`2848`: DOC : removed line about un-needed dependencies in Windows
* :ghpull:`2940`: Fix some documentation mistakes
* :ghpull:`2933`: #2897 Adding tests for pie ccw. Issue 2897
* :ghpull:`2923`: Issue 2899
* :ghpull:`2930`: Cranky pep8
* :ghpull:`2847`: DOC : add link to `plt.subplots` from `Figure.add_subplot`
* :ghpull:`2906`: Fix Cairo text on Python3 with pycairo
* :ghpull:`2920`: fix six check message
* :ghpull:`2912`: Fix paths in doc which are searched for matplotlibrc (XDG).
* :ghpull:`2735`: Fixes issue #966: When appending the new axes, there is a bug where it
* :ghpull:`2911`: text_axes missing cleanups
* :ghpull:`2834`: WebAgg: Fix IPython detection. Fix encoding error on Python 3
* :ghpull:`2853`: counterclock parameter for pie
* :ghpull:`1664`: Support for skewed transforms
* :ghpull:`2844`: BUG : Qt repaint workaround on windows
* :ghpull:`2895`: typos: s/coodinate/coordinate & s/contols/controls
* :ghpull:`2875`: Fix for issue #2872. Skip NaN's in draw_path_collection.
* :ghpull:`2887`: fix a bug introduced in c998561d6cc1236
* :ghpull:`2884`: Fixed the failing tests on master.
* :ghpull:`2851`: Fix positional/kwarg handling of the Z argument
* :ghpull:`2852`: AttributeError: 'module' object has no attribute 'next'
* :ghpull:`2860`: Fix subprocess.CalledProcessError on Google App Engine
* :ghpull:`2865`: WebAgg: raise WebAggApplication.started flag before blocking
* :ghpull:`2867`: GTK3 backend: implemented FigureCanvasBase.resize_event()
* :ghpull:`2858`: BUG: colorbar autoscaling now ensures a finite range of values
* :ghpull:`2849`: WebAgg issue - Uncaught SyntaxError: Unexpected token &
* :ghpull:`2854`: DOC hist is not cumulative by default
* :ghpull:`2825`: WebAgg: extracted figure_div style into css and changed layout
* :ghpull:`2444`: Fixed bad vector transforms.
* :ghpull:`2731`: 2d padding
* :ghpull:`2846`: Fix bug in horizontal step histograms (#2830)
* :ghpull:`2819`: DOC: clarified docstring for cbook.boxplot_stats
* :ghpull:`2835`: quiver: handle autoscaling with quiverkey when animated
* :ghpull:`2838`: TST : make 3.2 pass again
* :ghpull:`2826`: GTK3 backend: Replaced deprecated GObject calls with GLib
* :ghpull:`2805`: ENH: Updated inset locator axes to return a HostAxes by default
* :ghpull:`2807`: Python 3 METH_VARARGS with METH_KEYWORDS
* :ghpull:`2821`: DOC: point downloads at the matplotlib downloads
* :ghpull:`2813`: GTK3Agg backend: Only convert the cairo context to a cairocffi context o...
* :ghpull:`2801`: Named colors example
* :ghpull:`2784`: Scipy2013 Sprint: Cleaning F/C example
* :ghpull:`2798`: Added remove methods for legends in figure and axes objects
* :ghpull:`2799`: Xdg message repr
* :ghpull:`2781`: Triplot returns the artist it adds.
* :ghpull:`2774`: changed the text of INSTALL to be correct about what external
* :ghpull:`2788`: MEP12: Clean-up line and marker demos
* :ghpull:`2787`: Empty event loop
* :ghpull:`2779`: remove old animtion examples.
* :ghpull:`2794`: fix typo in documentation
* :ghpull:`2793`: missing mask for scroll event
* :ghpull:`2780`: ENH : improve error invalid error message for subplot
* :ghpull:`2782`: BUG: quiverkey must set the vector figure attribute
* :ghpull:`2389`: table.py: fix issue when specifying both column header text and color
* :ghpull:`2755`: Fixes legend.get_children() to actually return the real children of
* :ghpull:`2599`: Create interpolation_methods.py
* :ghpull:`2621`: Simplify and fix dpi handling in tight_bbox
* :ghpull:`2752`: Make standardization of input optional in mlab.PCA
* :ghpull:`2726`: Don't snap pcolor
* :ghpull:`2732`: AttributeError: 'Patch3DCollection' object has no attribute 'set_sizes'
* :ghpull:`2442`: Rewrite of the entire legend documentation, including tidy ups of code and style to all things "legend".
* :ghpull:`2746`: ENH : added warning on annotate
* :ghpull:`2675`: clip_on = False does not work for x-axis
* :ghpull:`1193`: Cairo backend ignores alpha in imshow.
* :ghpull:`2768`: DOC/BUG: Fix references to demo files
* :ghpull:`2744`: handle NaN case nicely in _is_sorted
* :ghpull:`2761`: Fix line color handling
* :ghpull:`2763`: double_pendulum_animated.py in 1.2.1 fails due to clear_temp kwarg
* :ghpull:`2756`: Removes artificial limit in artist picker traversal. There are quite a
* :ghpull:`2555`: Make it possible to add mpl.rcParams to itself or deepcopy
* :ghpull:`2558`: fixes issue #2556
* :ghpull:`2762`: BUG : makes Axes.margins work with just kwargs
* :ghpull:`2643`: ENH/REF: Overhauled boxplots
* :ghpull:`2734`: Fixed issue #1733 - AxesImage draw function now takes into account the
* :ghpull:`2757`: Added missing warnings import
* :ghpull:`2753`: BUG : fixes py3k import
* :ghpull:`1227`: Does the gtk3agg backend work on python3?
* :ghpull:`2751`: BUG : fix failing test on 3.2
* :ghpull:`2749`: Qt4 keys
* :ghpull:`2137`: PIL -> Pillow
* :ghpull:`2705`: Build fails on OS X with NumPy 1.9
* :ghpull:`2707`: Callable date formatter
* :ghpull:`1299`: Update Axes3D.tricontour for custom triangulations
* :ghpull:`2474`: MEP12: Example clean-up for reference
* :ghpull:`2727`: Typo in explanation of annotation_demo
* :ghpull:`2728`: fixed comment white space pep8
* :ghpull:`2720`: Look for user-specified styles in ~/.config/matplotlib/stylelib
* :ghpull:`2712`: Anchored sizebar fontprop
* :ghpull:`2713`: Compare pep
* :ghpull:`2207`: color of candlestick lines
* :ghpull:`2551`: Fix behavior of hist function when passed empty dataset
* :ghpull:`2595`: EHN: add a span_stays option to widget.SpanSelector
* :ghpull:`2647`: use GridSpec in plt.subplots
* :ghpull:`2725`: DOC : fixes small typos in matplotlib.dates docs
* :ghpull:`2714`: Deprecated matplotlib.testing.image_util.
* :ghpull:`2691`: Change LogFormatterExponent to consistently format negative exponents
* :ghpull:`2719`: Package initialization made possible when executed in environments with...
* :ghpull:`2718`: Added missing cleanup decorator import.
* :ghpull:`2248`: axes_grid1: ImageGrid respect the aspect ratio of axes.
* :ghpull:`2481`: datestr2num of year and month fails on 29th, 30th, and 31st of month
* :ghpull:`2423`: Off-axes markers unnecessarily saved to PDF
* :ghpull:`2239`: Update of mlab.pca - updated docstring, added saving the eigenvalues.
* :ghpull:`2711`: Fixes issue #2525
* :ghpull:`2704`: Bugfix for issue #1747. Allows removal of figure text artists.
* :ghpull:`2696`: Fix Tk keyboard modifier masks on Windows
* :ghpull:`2690`: Build failure on MacOS X 10.5.8 (PowerPC G5) with Python 3.3.3
* :ghpull:`2628`: improved get_ticklabels kwarg
* :ghpull:`2634`: address FuncAnimantion trying to take lengths of generators
* :ghpull:`2468`: Add "sage" colors to colors.py
* :ghpull:`2521`: Fix backend_svg.RendererSVG.draw_text to render urls
* :ghpull:`2703`: Updating regex used to split sphinx version string.
* :ghpull:`2701`: Fix FancyBboxPatch Typo
* :ghpull:`2700`: Consistent grid sizes in streamplot.
* :ghpull:`2689`: Disable offset box clipping by default.
* :ghpull:`2693`: Use mpl.checkdep_ghostscript function to find ghostscript
* :ghpull:`2679`: Make `test_save_animation_smoketest` actually run
* :ghpull:`2504`: Using qhull for Delaunay triangulation
* :ghpull:`2683`: Close a figure with a type long or uuid figure number
* :ghpull:`2677`: Make sure self._idle is set to `True` in all cases
* :ghpull:`2597`: BUG: Add subplot spec eq
* :ghpull:`2650`: Lightsource shade method parameters for color range definition
* :ghpull:`2665`: MacOSX backend supports 2x DPI images and MathTeX.
* :ghpull:`2680`: Deprecate toolbarqt4agg
* :ghpull:`2685`: Remove a redundant comparison that raises an exception in Python 3
* :ghpull:`2657`: different fix for comparing sys.argv and unicode literals
* :ghpull:`2646`: Fix Gtk3 crash when running inside of IPython
* :ghpull:`2661`: NF - see axes.get_label() when clicking on Edit curves lines and axes pa...
* :ghpull:`2676`: Fix typo in _axes.vlines doc-string
* :ghpull:`2569`: Explicitly cast the input array to float before doing anything to it
* :ghpull:`2671`: Deprecate IPython-related Sphinx extensions
* :ghpull:`2656`: Use IPython's copy of ipython_console_highlighting Sphinx ext, if available
* :ghpull:`2515`: overloaded `_make_twin_axes` on `LocateableAxesBase`
* :ghpull:`2659`: DOC: Remove redundant colormaps from examples
* :ghpull:`2636`: "\usepackage[russian]{babel}" does not work in matplotlib 1.3.1
* :ghpull:`2648`: Update backend_webagg.py
* :ghpull:`2641`: plot_date: Set the default fmt to 'o'
* :ghpull:`2645`: Add option to show/hide the source link in plot_directive
* :ghpull:`2644`: Small typo in the license.
* :ghpull:`2461`: New style format str
* :ghpull:`2503`: Fix interactive mode detection
* :ghpull:`2640`: Axes.plot: remove set_default_color_cycle from the docstring
* :ghpull:`2639`: BUGFIX: ensure that number of classes is always of type INT in Colormap
* :ghpull:`2629`: backend_qt4agg: remove redundant classes. Closes #1151.
* :ghpull:`2594`: New layout for qt4 subplottool + QMainWindow -> QDialog
* :ghpull:`2623`: setupext: put pkg-config -I, -L, -l locations at the head of the list
* :ghpull:`2610`: improve docstring and add test fot to_rgb(<float>)
* :ghpull:`2618`: Fix issue 1172
* :ghpull:`2619`: slight tweak to mpl_example
* :ghpull:`2626`: minor pep8 to fix failing master builds.
* :ghpull:`2606`: embedding_webagg example: Download button does not work
* :ghpull:`2588`: Refactor mechanism for saving files.
* :ghpull:`2615`: Fixes issue #2482 and adds note in matplotlibrc.template
* :ghpull:`2613`: BLD Fix build failure on Python 3.4b1 for Windows
* :ghpull:`2459`: pep8 for backend_pdf.py
* :ghpull:`2409`: Fix bugs related to bottom kwarg in step histograms
* :ghpull:`2549`: Add methods to control theta position of r-ticklabels on polar plots
* :ghpull:`2567`: more informative exceptions for empty/not-existing images in compare_images()
* :ghpull:`2603`: Correcting bad string comparsion in lin-log plot aspect verification
* :ghpull:`2561`: multi-colored text example
* :ghpull:`2236`: Add easy style sheet selection
* :ghpull:`2582`: fix initialization of AnnotationBbox
* :ghpull:`2574`: Add axes.titleweight as an rc param
* :ghpull:`2579`: MultiCursor: make events connected during __init__ accessible (for later removal)
* :ghpull:`2591`: Fix infinite recursion in units with ndarray subclasses.
* :ghpull:`2587`: Make backend_pgf more flexible when saving to file-handles or streams (fix #1625).
* :ghpull:`2554`: User Guide Structure
* :ghpull:`2571`: This fixes thee probllem brought up in the mailing list with the recent spectrum improvements
* :ghpull:`2544`: Fix 2542
* :ghpull:`2584`: Fix typo in legend documentation
* :ghpull:`2401`: adds rcParam `axes.formatter.useoffset`
* :ghpull:`2495`: fixed an enconding bug when checking for gs version
* :ghpull:`2581`: AffineBase.__eq__ should not raise an exception when the other does not ...
* :ghpull:`2462`: Path effects update
* :ghpull:`2562`: Just some small tweaks to the recipes
* :ghpull:`2550`: Using a single-shot timer with the Wx backend raises an AttributeError
* :ghpull:`2198`: Fix compilation on Solaris
* :ghpull:`2553`: removing items from the call to six.iteritems
* :ghpull:`2547`: fix removed api change regarding spectral functions
* :ghpull:`2514`: Mpl toolkit pep8
* :ghpull:`2522`: Add additional spectrum-related plots and improve underlying structure
* :ghpull:`2535`: Move external libraries to 'extern' directory - correction
* :ghpull:`2534`: cast argv to unicode before testing
* :ghpull:`2531`: Move external libraries to 'extern' directory
* :ghpull:`2526`: Minor doc fixes
* :ghpull:`2523`: Unicode issue in EPS output when using custom font
* :ghpull:`2479`: Rastized background color
* :ghpull:`2512`: Fix saving to in-memory file-like objects in Postscript backend
* :ghpull:`2472`: Plots using twinx draw on top of figure frame
* :ghpull:`2485`: ENH better error message when wrong cmap name.
* :ghpull:`2491`: Re-enabled PEP8 test, closing #2443.
* :ghpull:`2502`: Updated the docs of pyplot.gca.
* :ghpull:`2428`: BUG: Fixed object type missmatch in SymLogNorm
* :ghpull:`2496`: Adding a missing 'b' back into two 'bbox_' kwargs
* :ghpull:`2494`: Update scatter_demo.py
* :ghpull:`2486`: make pep8 test routine reusable for other projects
* :ghpull:`2480`: Use Pillow always on Travis
* :ghpull:`2406`: BUG: Fixed github stats retrieval
* :ghpull:`2441`: Catch stderr as well as stdout
* :ghpull:`2415`: Bug: alpha parameter was ignored when fill color is #000000
* :ghpull:`2300`: would crash if get_home() returns None
* :ghpull:`2420`: Refactor WebAgg so it can communicate over another web server
* :ghpull:`2447`: BUG: Fix boxplots with manual confidence intervals passed as a numpy array
* :ghpull:`2453`: PdfPages: add option to delete empty file when closed
* :ghpull:`2458`: pep8 clean up
* :ghpull:`2156`: [Sprint] scatter plots are (reportedly) too slow
* :ghpull:`2464`: Rename C++ variables to avoid use of reserved identifiers
* :ghpull:`2470`: ENH: use checkdep_ghostscript to determine ghostscript executable
* :ghpull:`2469`: BUG: gswin64c.exe not detected on Windows
* :ghpull:`2476`: Updated the position of a few of the text examples because they were overlapping and hard to read.
* :ghpull:`2379`: Make matplotlib.test() print meaninful messages when baseline images are not installed
* :ghpull:`2418`: AssertionError with quiver, quiverkey, and an additional patch.
* :ghpull:`2425`: DOC: `axis_off` wrongfuly appears as a parameter to Figure.add_subplot
* :ghpull:`2445`: Declare Numpy as a setup dependency
* :ghpull:`2336`: Added check in autoscale_None for completely masked pcolor plots.
* :ghpull:`2460`: minor pep8 fix on every file
* :ghpull:`2457`: Privatize Text.cached
* :ghpull:`2433`: Handle Unicode font filenames correctly/Fix crashing MacOSX backend
* :ghpull:`2455`: Gitignore update
* :ghpull:`2446`: Don't set use_2to3 unless we have to.
* :ghpull:`2449`: Qt4 clear before draw
* :ghpull:`2435`: Explicitly catch TypeError when doing pyparsing monkeypatch check
* :ghpull:`2440`: Pdfpages pagecount convenience getter method
* :ghpull:`2437`: Fix randomly failing tests
* :ghpull:`2099`: Updated coding standards test to raise an exception containing the PEP8 failiures.
* :ghpull:`2439`: Use six.string_types instead of basestring.
* :ghpull:`2436`: Catch explicit exceptions when setting locale
* :ghpull:`2430`: Document API change in hist
* :ghpull:`2416`: Multipage pdf with statement
* :ghpull:`2427`: DOC: Add axes_api to documentation after the refactoring
* :ghpull:`2271`: docs: add webagg-backend
* :ghpull:`2417`: Adding possibility to remove invisible lines and patches from relim
* :ghpull:`2242`: DOC:Use monospace for --
* :ghpull:`2426`: Remove dead rms computation
* :ghpull:`2421`: docstring fix
* :ghpull:`2382`: New stlye qt calls
* :ghpull:`2351`: Annotation refactor
* :ghpull:`2408`: backend_pgf: fix str/unicode comparison errors (v1.3.x)
* :ghpull:`2407`: backend_pgf: fix str/unicode comparison errors
* :ghpull:`2404`: Fix backend_ps.py
* :ghpull:`2399`: TypeError occurs when self.button=None in MouseEvents
* :ghpull:`2402`: support tight_bbox for pgf output, fixes #2342 (v1.3.x)
* :ghpull:`2391`: support tight_bbox for pgf output, fixes #2342
* :ghpull:`2396`: Try UNIXy and Windowsy ways of setting locale
* :ghpull:`2331`: Make optional backends respect setup.cfg
* :ghpull:`2393`: use six.move for cStringIO
* :ghpull:`2372`: Fix step histogram endline
* :ghpull:`2390`: Transparent rcparams
* :ghpull:`2383`: BUG: Fix IndexError: too many indices with numpy 1.8
* :ghpull:`2386`: locale breaks test suite
* :ghpull:`2229`: Matplotlib does not display hatching when rendering to pdf in fill_between
* :ghpull:`2371`: Corrections to cbook.warn_deprecated calls().
* :ghpull:`2381`: don't install python-dateutil==2.1 on python 3.3
* :ghpull:`2380`: check if pyparsing <<= is broken instead of checking the version
* :ghpull:`2374`: Doc fix typos
* :ghpull:`2368`: Set locale for tests
* :ghpull:`2226`: Stop relying on 2to3 and use `six.py` for compatibility instead
* :ghpull:`2335`: make sure we only perform absolute imports on loading a backend
* :ghpull:`2192`: Follow the PSF code of conduct
* :ghpull:`2367`: Fix a number of long-failing tests
* :ghpull:`2363`: [bug correction] trirefine is now independant of triangulation numbering
* :ghpull:`2357`: Better axis limits when using shared axes and empty subplots
* :ghpull:`2358`: Broken IPython notebook integration
* :ghpull:`2352`: changed colorbar outline from a Line2D object to a Polygon object
* :ghpull:`2054`: Ipython/Webagg integration
* :ghpull:`2301`: Upload test result images to Amazon S3
* :ghpull:`2319`: fix draw_idle reference in NavigationToolbar2
* :ghpull:`2345`: texmanager font selection crashes
* :ghpull:`2307`: font_manager.py UnicodeDecodeError when starting ipython --pylab
* :ghpull:`2306`: Mollweide latitude grid
* :ghpull:`2325`: BF: guard against broken PyQt import
* :ghpull:`2327`: Bar demo2 improve
* :ghpull:`2332`: Except AttributeError when checking for gtk3 backends
* :ghpull:`2340`: Fix #2339: render math text when using path effects
* :ghpull:`2338`: issues with pyparsing 1.5.7 and python 2.7
* :ghpull:`2334`: Remove disabled code.
* :ghpull:`2344`: Fixed the issue of pyplot tutorial missing the show() command
* :ghpull:`2308`: Make pyplot.bar color kwarg less ambiguous
* :ghpull:`2333`: Fix wrong syntax for assert
* :ghpull:`2326`: BUG FIX for Pull Request #2275: Fix incorrect function calls
* :ghpull:`2328`: Fix PySide compatibility
* :ghpull:`2316`: Replace the obsolete wx.PySimpleApp
* :ghpull:`2317`: fix the docstring for scale_docs
* :ghpull:`2110`: Fix rc grid parameter inconsistency
* :ghpull:`2278`: Can't find 64-bit GhostScript on win64
* :ghpull:`2266`: pyparsing version parsing error
* :ghpull:`2262`: View accepts FirstResponder (for key_press_events)
* :ghpull:`2147`: Make nonposy='clip' default for log scale y-axes
* :ghpull:`1920`: finance ochl->ohlc
* :ghpull:`2059`: Pep8 on many tests
* :ghpull:`2275`: Fix Qt4 figure editor color setting and getting
* :ghpull:`2279`: Pyparsing
* :ghpull:`2290`: Fix a recursion problem with masked arrays in get_converter
* :ghpull:`2285`: Handle prop=None case in AnchoredText.__init__()
* :ghpull:`2291`: ENH: use an artist's update() method instead of the setp() function
* :ghpull:`2245`: Adding a flush_events method to the MacOSX backend
* :ghpull:`2251`: Remove deprecated code marked for deletion in v1.3
* :ghpull:`2280`: PEP8 on tri module
* :ghpull:`2282`: Extend search path for PyCXX headers
* :ghpull:`2283`: Incorrect overriding of sys.stdout
* :ghpull:`2158`: Changes to anchored_artists.AnchoredSizeBar
* :ghpull:`1939`: GTK error, failed building on command line
* :ghpull:`2265`: WebAgg favicon serving error in Python 3
* :ghpull:`2267`: Mention `six` in what's new and install docs
* :ghpull:`2261`: WebAgg performance improvements
* :ghpull:`1547`: qt4_editor/formlayout.py TypeError: float() argument must be a string or a number
* :ghpull:`2260`: texmanager font family fix
Issues (1342):
* :ghissue:`3672`: Python3 pep8 fixes
* :ghissue:`3355`: Unneeded argument in get_linestyle
* :ghissue:`3558`: Adds multiple histograms side-by-side example
* :ghissue:`3665`: Remove usage of raw strides member in _backend_gdk.c
* :ghissue:`3309`: Explicitly close read and write of Popen process (latex)
* :ghissue:`3488`: pep8ify examples (part2)
* :ghissue:`3589`: ENH: add to_grayscale() method to color maps
* :ghissue:`3662`: Make all classes new-style.
* :ghissue:`3646`: Remove PyCXX dependency for core extension modules
* :ghissue:`3664`: [examples] pep8 fix e251 e27*
* :ghissue:`3294`: fix typo in figlegend_demo.py
* :ghissue:`3666`: remove print from test
* :ghissue:`3667`: A bug in mpl_toolkits.mplot3d.axes3d
* :ghissue:`3638`: MNT : slight refactoring of Gcf
* :ghissue:`3387`: include PySide in qt4agg backend check
* :ghissue:`3597`: BUG/TST : skip example pep8 if don't know source path
* :ghissue:`3596`: Pep8 tests fails when running python tests.py from base mpl dir.
* :ghissue:`3661`: Numpy 1.6 fixes
* :ghissue:`3660`: shading tests + numpy 1.6
* :ghissue:`3635`: fix pep8 error classes e20[12] and e22[12] in examples
* :ghissue:`3653`: Make ScalarMappable a new-style class.
* :ghissue:`3547`: Don't use deprecated numpy APIs
* :ghissue:`2092`: Move to new Numpy API
* :ghissue:`3601`: matplotlib.style.available not updated upon adding/deleting .mplstyle files
* :ghissue:`3616`: matplotlib.pyplot.imread silently fails on uint16 images.
* :ghissue:`3628`: Document auto-init behavior of colors.Normalize and cm.ScalarMappable.
* :ghissue:`3640`: figure.max_num_figures was renamed to figure.max_open_warning.
* :ghissue:`3650`: Typo fixes. [backport to doc branch]
* :ghissue:`3651`: Error when saving rasterized figure to PDF
* :ghissue:`3470`: MacOSX backend breaks for matplotlib 1.4 after importing seaborn
* :ghissue:`3564`: Rcparam validation fix
* :ghissue:`3642`: TST : know-fail shadding tests
* :ghissue:`3641`: Annotations with Latex code cause errors in 1.5 master
* :ghissue:`3623`: Qt5 backend doesn't work with Qt 5.3
* :ghissue:`3636`: mp4 is a container format, not a codec
* :ghissue:`3632`: Fix for #3623
* :ghissue:`3639`: Shading tests failing on master
* :ghissue:`3619`: PatchCollection: pass other kwargs for match_original=True
* :ghissue:`3617`: PatchCollection.__init__ ignores all kwargs if match_original=True
* :ghissue:`3637`: typo: mp4 -> mpeg4. Closes #3636.
* :ghissue:`3629`: examples: fix pep8 error class E211
* :ghissue:`2873`: Add violin plots
* :ghissue:`3622`: setup.py creates a zombie C extension called "freetype2"
* :ghissue:`3213`: add whats_new entry for nbagg
* :ghissue:`3392`: Cannot pickle `figure` or `axes` (TypeError: instancemethod)
* :ghissue:`3614`: Pickling imshow fails (?due to _imcache)
* :ghissue:`3606`: nbagg issues with ipython 3.0
* :ghissue:`3494`: corrupt eps output on python3
* :ghissue:`3627`: Fixed Image and Renderer pickling
* :ghissue:`3515`: examples: fix pep8 error classes E111 and E113
* :ghissue:`3625`: animate_decay.py example code is less complicated
* :ghissue:`3621`: matplotlib.__version__ is now unicode as of 1.4.0
* :ghissue:`3505`: Interactive mode not working in 1.4
* :ghissue:`3620`: Revert interactive determination
* :ghissue:`3311`: Ship conda package metadata with matplotlib?
* :ghissue:`3248`: Divide by zero error in matplotlib.tests.test_colors.test_light_source_shading_color_range
* :ghissue:`3613`: Fix problem with legend if data has NaN's [backport to 1.4.x]
* :ghissue:`3618`: UnicodeDecodeError when I try to import matplotlib from directory with non-ascii name
* :ghissue:`3313`: BUG: 3 fixes for widgets (MultiCrusor, SpanSelector, Slider)
* :ghissue:`3496`: BUG : fix str vs bytes issue in py3 in ps backend
* :ghissue:`3609`: Nbagg icons
* :ghissue:`3611`: Fix spelling error
* :ghissue:`3607`: Icon for font awesome 3.2.1 and 4 [backport to 1.4.x]
* :ghissue:`3605`: matplotlib.pylab.specgram generate bad image in 1.4.0
* :ghissue:`3604`: regression in pandas test suite with mpl 1.4.0
* :ghissue:`3603`: Error saving file (Qt5 backend)
* :ghissue:`2907`: Expose ax.yaxis.labelpad and ax.xaxis.labelpad to the rc file
* :ghissue:`3096`: Axes labelpad rc
* :ghissue:`3544`: flier objects missing from structure return by boxplot
* :ghissue:`3600`: BUG: now only set 'marker' and 'color' attribute of fliers in boxplots
* :ghissue:`3599`: BUG: now only set 'marker' and 'color' attribute of fliers in boxplots
* :ghissue:`3516`: import error when non-ascii characters are present in cwd or user name (windows)
* :ghissue:`3560`: Updated whats new for nbagg and legend/patheffects docs.
* :ghissue:`3594`: Unicode decode error [backport to 1.4.x]
* :ghissue:`3532`: BUG : skip looking up expanduser if unicode error
* :ghissue:`3574`: `rotation` parameter has no effect on `RegularPolyCollection`
* :ghissue:`3409`: Win fixes
* :ghissue:`3573`: Bug: Empty sym string for boxplots still displays fliers.
* :ghissue:`3595`: Some small doc fixes only relevant on the master branch
* :ghissue:`3291`: Lightsource enhancements
* :ghissue:`3459`: boxplot in version 1.4.0 does not respect property settings for fliers (flierprops)
* :ghissue:`3592`: Fix crash in picking for zero-length path collection
* :ghissue:`3590`: Won't use a font although it can be found by the FontManager
* :ghissue:`3591`: BUG: Cannot pick empty vline
* :ghissue:`3586`: Merge V1.4.x into master.
* :ghissue:`3585`: merge V1.4.0-doc into v1.4.x
* :ghissue:`3412`: Matplotlib 1.4 doesn't install from source on CentOS 6
* :ghissue:`3423`: Pytz should be specified and documented as a required dependency
* :ghissue:`3569`: boxplot stats regression on empty data
* :ghissue:`3563`: boxplot() and xticklabels
* :ghissue:`3566`: BUG : don't assume label in boxpplot_stat
* :ghissue:`3567`: Fixed the differencing of images for the webagg/nbagg backends.
* :ghissue:`3571`: BUG : deal with empty list passed to boxplot
* :ghissue:`3533`: BUG : fix handling of flierprop by boxplot
* :ghissue:`3581`: pep8 cleanup on scatter_demo.py
* :ghissue:`3514`: Ticks on top axis disappear if tick size is too large (when using bbox_inches='tight')
* :ghissue:`3578`: Fixes test to assert instead of print
* :ghissue:`1713`: Can't store Unicode values in .matplotlibrc
* :ghissue:`3575`: Supports locale-specified encoding for rcfile.
* :ghissue:`3479`: Build dep updates
* :ghissue:`233`: Make hist with 'step' histtype draw Line2D instead of Patch
* :ghissue:`3522`: Inverting a datetime / plot_date y-axis
* :ghissue:`3570`: matplotlib save dynamic user changes to plot
* :ghissue:`3568`: Daily build fails at "import matplotlib.pyplot as plt"
* :ghissue:`3541`: pyplot: Fix exception in `_backend_selection` during import [backport to 1.4.x]
* :ghissue:`3565`: clabel randomly inconsistend when placed manually
* :ghissue:`3552`: Nbagg enhancements
* :ghissue:`3559`: Install texlive and other dependencies when building docs.
* :ghissue:`3550`: Install texlive when building docs.
* :ghissue:`3555`: Typo in comment documentation for example timers.py
* :ghissue:`3556`: copy/paste corrections in test_backend_qt5
* :ghissue:`3545`: Provide an informative error message if something goes wrong in setfont [backport to 1.4.x]
* :ghissue:`3551`: Window isn't drawn
* :ghissue:`3538`: Importing matplotlib failing when pacakge "six" is 1.3.0
* :ghissue:`3542`: fix boxplot docs
* :ghissue:`3548`: Silence some Sphinx warnings by rewriting docstrings.
* :ghissue:`3549`: Texlive travis
* :ghissue:`3539`: DEP : update six minimum version
* :ghissue:`3543`: DOC : fix main-page tags
* :ghissue:`3524`: Bug in AutoDateLocator when dates are in reverse order
* :ghissue:`3455`: Documentation bug: boxplot docs have contradicting information
* :ghissue:`3468`: boxplot() draws (min, max) whiskers after a zero-IQR input regardless of whis value
* :ghissue:`3436`: matplotlib.use('nbagg ') does not work in Python 3
* :ghissue:`3464`: BUG : nbagg py3k compatibility
* :ghissue:`3534`: BUG : fixes whis over-writing in boxplot_stats
* :ghissue:`3529`: Symlog norm still gives wrong result with integer lintresh.
* :ghissue:`3535`: BUG/DOC : Correct default value listed in docstring
* :ghissue:`3537`: 3D figures cannot be created in 1.4.0: 'module' object has no attribute '_string_to_bool'
* :ghissue:`3369`: Added legend.framealpha to rcParams, as mentioned in axes.legend docstring
* :ghissue:`3510`: Fix setupext [backport to 1.4.x]
* :ghissue:`3530`: Only insert links to pdfs if we are actually generating these.
* :ghissue:`3487`: Can not import matplotlib when launching from non-ascii path
* :ghissue:`3527`: Drawing an arrow using axis.annotate raises DeprecationWarning
* :ghissue:`3525`: BUG : decode byte-strings in afm.py
* :ghissue:`3523`: invalid EPS figure in Mac OS X
* :ghissue:`3526`: BUG : fix eps corruption when using clipping
* :ghissue:`3492`: Allow python 3 version of PyCXX
* :ghissue:`3521`: More doc fixes
* :ghissue:`3504`: postscript axes corner is not perfect
* :ghissue:`3520`: a question about subplot in spyder
* :ghissue:`3513`: examples: fully automated fixing of E30 pep8 errors
* :ghissue:`3512`: What else apart from `useOffset` is controlling tick label offsets?
* :ghissue:`3461`: This fixes a bunch of Sphinx warnings
* :ghissue:`3507`: general pep8 fixes
* :ghissue:`3506`: Named colors example, figure size correction [backport to 1.4.0-doc]
* :ghissue:`3493`: Incorrect use of super() in mplot3d?
* :ghissue:`3439`: Registering backends broken by backwards incompatible change
* :ghissue:`3511`: Error in plot-gui while saving image
* :ghissue:`3509`: Add Build Instructions for Windows 7 Using Visual Studio?
* :ghissue:`3503`: Win fix simple
* :ghissue:`3495`: BUG : don't use super(self.__class__, self)
* :ghissue:`3500`: Annotation xytext property does not return xyann value
* :ghissue:`3501`: Bugfix for text.xytext property
* :ghissue:`3376`: Move widget.{get,set}_active to AxisWidget.
* :ghissue:`3497`: Ortho basemap projection with limits crashes
* :ghissue:`3447`: cursor doesn't change on keypress (GTKAgg backend)
* :ghissue:`3419`: Better repr for Bboxes.
* :ghissue:`3474`: call set cursor on zoom/pan toggle [backpont to 1.4.x]
* :ghissue:`3425`: Pep8ify examples
* :ghissue:`3477`: Better check for required dependency libpng
* :ghissue:`3472`: Memory leak displaying PIL image.
* :ghissue:`3484`: TclError for draw_event handler calling close()
* :ghissue:`3480`: Duplicate labels produced when using custom Locators/Formatters
* :ghissue:`3475`: need for rubberband in zoom tool
* :ghissue:`3478`: BUG : restore back-compatibility of regisiter_backend
* :ghissue:`3471`: Fix for invalid check of freetype version when no freetype library exists [backport to 1.4.x]
* :ghissue:`2900`: Remove no-longer-necessary KnownFail for python 3.2.
* :ghissue:`3465`: psd() draw a wrong line with sliced array(Matplotlib 1.4.0)
* :ghissue:`3454`: backend_qt5 (1.4.0): Not saving the figure with NavigationToolbar (solved)
* :ghissue:`3467`: Bugfix in mlab for strided views of np.arrays [backport to 1.4.x]
* :ghissue:`3469`: Fix handling of getSaveFileName to be consistent [backport to 1.4.x]
* :ghissue:`3416`: Specify difficulties installing mpl on OSX.
* :ghissue:`2970`: add test of all the standard marker symbols
* :ghissue:`3318`: Running `setup.py egg_info` starts to compile everything
* :ghissue:`3384`: Test marker styles
* :ghissue:`3466`: Invalid DISPLAY variable
* :ghissue:`3463`: when executing a small script nothing happens!!
* :ghissue:`3462`: Add legend.framealpha to matplotlibrc
* :ghissue:`2934`: Line labels don't update in the legend after changing them through the Qt4Agg dialog box
* :ghissue:`3431`: Qt5 toolbar support not working in release 1.4.0
* :ghissue:`3407`: Update dns/IP adress
* :ghissue:`3456`: DOC : add known-bug + fix for QT5 toolbar issue
* :ghissue:`3458`: DOC : minor import tweaks
* :ghissue:`3460`: zoomed_inset_axes shows a incorrect result.
* :ghissue:`3457`: Add Qt5Agg to backends in matplotlibrc.template.
* :ghissue:`3417`: update citation page
* :ghissue:`3450`: Wrong permissions when installing from source on Linux