Skip to content

Commit

Permalink
Set version to v0.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Waskom committed Aug 15, 2021
1 parent 8661c6e commit 2a3cd5e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion seaborn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
_orig_rc_params = mpl.rcParams.copy()

# Define the seaborn version
__version__ = "0.11.2.rc0"
__version__ = "0.11.2"
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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 = [
Expand Down

0 comments on commit 2a3cd5e

Please sign in to comment.