Skip to content

Commit

Permalink
Merge pull request #15 from jolespin/master
Browse files Browse the repository at this point in the history
fixed the seaborn incompatibility
  • Loading branch information
pog87 authored Sep 16, 2020
2 parents ccd0d6c + 4a3fb48 commit 48ebede
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ptitprince/PtitPrince.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
#from seaborn.external.six.moves import range

from seaborn import utils
from seaborn.utils import iqr, categorical_order, remove_na
from seaborn._core import categorical_order
from scipy.stats import iqr
from seaborn.utils import remove_na
from seaborn.algorithms import bootstrap
from seaborn.palettes import color_palette, husl_palette, light_palette, dark_palette
from seaborn.axisgrid import FacetGrid, _facet_docs
Expand All @@ -26,7 +28,7 @@
from seaborn.categorical import _CategoricalPlotter, _CategoricalScatterPlotter, _categorical_docs

__all__ = [ "half_violinplot", "stripplot", "RainCloud"]
__version__ = '0.2.3'
__version__ = '0.2.4'

class _StripPlotter(_CategoricalScatterPlotter):
"""1-d scatterplot with categorical organization."""
Expand Down

0 comments on commit 48ebede

Please sign in to comment.