[seaborn] 24/35: Merge tag 'v0.6.0' into debian

Andreas Tille tille at debian.org
Fri Jan 20 15:00:22 UTC 2017


This is an automated email from the git hooks/post-receive script.

tille pushed a commit to branch debian
in repository seaborn.

commit 8279e6ac251bfe4d18966570df151ad70ed44af1
Merge: 4962a0f 9664247
Author: Yaroslav Halchenko <debian at onerussian.com>
Date:   Mon Jun 29 13:13:35 2015 -0400

    Merge tag 'v0.6.0' into debian
    
    Release version 0.6.0
    
    * tag 'v0.6.0': (261 commits)
      Use pandas assert in load_dataset test
      Set the figure facecolor to white in the default style
      Increment version to 0.6.0
      Finalize release notes
      Pass string labels to the factorplot legend
      Fix col_wrap axes with missing levels
      Validate violinplot inner param (closes #558)
      Update release notes
      Default to tight bbox_inches when saving Grid figures
      Draw margin titles with ax.annotate instead of f.text
      Avoid crash in clustermap with matplotlib OSX backend
      Sphinx formatting
      Remove IPython 3.1 bug note as they released 3.2
      Remove defunct axes_style key in tutorial
      Update the contributor guidelines
      Remove dataset_exploration tutorial
      Fix barplot timeseries order
      Clean generated API files
      Add examples for clustermap
      Assorted doc tweaks
      ...

 .travis.yml                                   |   22 +-
 CONTRIBUTING.md                               |   64 +-
 MANIFEST.in                                   |    4 +
 Makefile                                      |    1 -
 README.md                                     |   20 +-
 doc/.gitignore                                |    6 +-
 doc/Makefile                                  |    1 +
 doc/_static/copybutton.js                     |   59 +
 doc/_static/style.css                         |   29 +
 doc/api.rst                                   |   50 +-
 doc/conf.py                                   |   18 +-
 doc/index.rst                                 |   81 +-
 doc/installing.rst                            |   93 +-
 doc/introduction.rst                          |   49 +-
 doc/releases/v0.6.0.txt                       |  103 +
 doc/sphinxext/plot_directive.py               |  837 +++++++
 doc/tutorial.rst                              |    8 +-
 doc/tutorial/Makefile                         |    9 +-
 doc/tutorial/aesthetics.ipynb                 |  921 ++++----
 doc/tutorial/axis_grids.ipynb                 | 1331 ++++++------
 doc/tutorial/categorical.ipynb                |  573 +++++
 doc/tutorial/categorical_linear_models.ipynb  |  479 -----
 doc/tutorial/color_palettes.ipynb             | 1543 ++++++-------
 doc/tutorial/dataset_exploration.ipynb        |  466 ----
 doc/tutorial/distributions.ipynb              |  510 +++++
 doc/tutorial/quantitative_linear_models.ipynb | 1076 ---------
 doc/tutorial/regression.ipynb                 |  593 +++++
 doc/tutorial/tools/nb_to_doc.py               |   15 +-
 doc/whatsnew.rst                              |    2 +
 examples/Makefile                             |   22 -
 examples/aesthetics.ipynb                     |  463 ----
 examples/anscombes_quartet.py                 |    5 +-
 examples/color_palettes.py                    |   13 +-
 examples/cubehelix_palette.py                 |   12 +-
 examples/distplot_options.py                  |   23 +-
 examples/elaborate_violinplot.py              |   16 +-
 examples/facets_with_custom_projection.py     |   12 +-
 examples/factorplot_bars.py                   |    9 +-
 examples/grouped_boxplot.py                   |    9 +-
 examples/grouped_violinplots.py               |   16 +
 examples/heatmap_annotation.py                |    5 +-
 examples/horizontal_barplot.py                |   30 +
 examples/horizontal_boxplot.py                |   25 +
 examples/interactplot.py                      |    6 +-
 examples/joint_kde.py                         |    2 +
 examples/linear_models.ipynb                  |  330 ---
 examples/logistic_regression.py               |    6 +-
 examples/many_facets.py                       |   12 +-
 examples/many_pairwise_correlations.py        |   33 +-
 examples/marginal_ticks.py                    |    9 +-
 examples/multiple_joint_kde.py                |   31 +
 examples/multiple_regression.py               |   11 +-
 examples/network_correlations.py              |   12 +-
 examples/paired_pointplots.py                 |    6 +-
 examples/pairgrid_dotplot.py                  |   38 +
 examples/plotting_distributions.ipynb         | 1499 -------------
 examples/pointplot_anova.py                   |    8 +-
 examples/regression_marginals.py              |    5 +-
 examples/residplot.py                         |    4 +-
 examples/scatterplot_categorical.py           |   18 +
 examples/scatterplot_matrix.py                |    2 +-
 examples/simple_violinplots.py                |   13 +-
 examples/structured_heatmap.py                |    9 +-
 examples/timeseries_bootstrapped.py           |    5 +-
 examples/timeseries_from_dataframe.py         |    6 +-
 examples/timeseries_of_barplots.py            |   11 +-
 examples/timeseries_plots.ipynb               |  889 --------
 ipnbdoctest.py                                |  342 ---
 seaborn/__init__.py                           |    4 +-
 seaborn/axisgrid.py                           |  825 +++++--
 seaborn/categorical.py                        | 2870 +++++++++++++++++++++++++
 seaborn/crayons.py                            |  120 ++
 seaborn/distributions.py                      |  846 +++-----
 seaborn/linearmodels.py                       | 1347 ++++++------
 seaborn/matrix.py                             |  362 +++-
 seaborn/palettes.py                           |  689 +++++-
 seaborn/rcmod.py                              |   28 +-
 seaborn/tests/test_axisgrid.py                |  242 ++-
 seaborn/tests/test_categorical.py             | 2175 +++++++++++++++++++
 seaborn/tests/test_distributions.py           |  211 +-
 seaborn/tests/test_linearmodels.py            |  439 +---
 seaborn/tests/test_matrix.py                  |  117 +-
 seaborn/tests/test_palettes.py                |   39 +-
 seaborn/tests/test_utils.py                   |  133 +-
 seaborn/timeseries.py                         |   86 +-
 seaborn/utils.py                              |  171 +-
 setup.py                                      |   11 +-
 testing/deps_modern_3.4.txt                   |    1 +
 88 files changed, 13674 insertions(+), 9972 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/seaborn.git



More information about the debian-science-commits mailing list