From 2a3cd5e4983125a950c8282720b61c012116c62c Mon Sep 17 00:00:00 2001 From: Michael Waskom Date: Sun, 15 Aug 2021 18:34:25 -0400 Subject: [PATCH] Set version to v0.11.2 --- seaborn/__init__.py | 2 +- setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/seaborn/__init__.py b/seaborn/__init__.py index a20097742b..941f772a82 100644 --- a/seaborn/__init__.py +++ b/seaborn/__init__.py @@ -18,4 +18,4 @@ _orig_rc_params = mpl.rcParams.copy() # Define the seaborn version -__version__ = "0.11.2.rc0" +__version__ = "0.11.2" diff --git a/setup.py b/setup.py index 6c7bf11555..564bae0dd4 100644 --- a/setup.py +++ b/setup.py @@ -12,12 +12,12 @@ - Convenient views onto the overall structure of complex datasets - Specialized support for using categorical variables to show observations or aggregate statistics - Options for visualizing univariate or bivariate distributions and for comparing them between subsets of data -- Automatic estimation and plotting of linear regression models for different kinds dependent variables +- Automatic estimation and plotting of linear regression models for different kinds of dependent variables - High-level abstractions for structuring multi-plot grids that let you easily build complex visualizations - Concise control over matplotlib figure styling with several built-in themes - Tools for choosing color palettes that faithfully reveal patterns in your data -Seaborn aims to make visualization a central part of exploring and understanding data. Its dataset-oriented plotting functions operate on dataframes and arrays containing whole datasets and internally perform the necessary semantic mapping and statistical aggregation to produce informative plots. +Seaborn aims to make visualization a central part of exploring and understanding data. Its dataset-oriented plotting functions operate on dataframes and arrays containing whole datasets and internally perform the necessary semantic mappings and statistical aggregations to produce informative plots. """ DISTNAME = 'seaborn' @@ -26,7 +26,7 @@ URL = 'https://seaborn.pydata.org' LICENSE = 'BSD (3-clause)' DOWNLOAD_URL = 'https://github.com/mwaskom/seaborn/' -VERSION = '0.11.2.rc0' +VERSION = '0.11.2' PYTHON_REQUIRES = ">=3.6" INSTALL_REQUIRES = [