Blob Blame History Raw
diff -ur seaborn-0.11.0/seaborn/distributions.py seaborn-0.11.0.husl/seaborn/distributions.py
--- seaborn-0.11.0/seaborn/distributions.py	2020-09-08 16:24:12.000000000 +0200
+++ seaborn-0.11.0.husl/seaborn/distributions.py	2020-11-27 17:35:03.684628508 +0100
@@ -32,7 +32,7 @@
     _assign_default_kwargs,
 )
 from .palettes import color_palette
-from .external import husl
+import husl
 from ._decorators import _deprecate_positional_args
 from ._docstrings import (
     DocstringComponents,
diff -ur seaborn-0.11.0/seaborn/palettes.py seaborn-0.11.0.husl/seaborn/palettes.py
--- seaborn-0.11.0/seaborn/palettes.py	2020-09-08 13:18:51.000000000 +0200
+++ seaborn-0.11.0.husl/seaborn/palettes.py	2020-11-27 17:34:38.939258382 +0100
@@ -4,7 +4,7 @@
 import numpy as np
 import matplotlib as mpl
 
-from .external import husl
+import husl
 
 from .utils import desaturate, get_color_cycle
 from .colors import xkcd_rgb, crayons
diff -ur seaborn-0.11.0/seaborn/tests/test_palettes.py seaborn-0.11.0.husl/seaborn/tests/test_palettes.py
--- seaborn-0.11.0/seaborn/tests/test_palettes.py	2020-09-05 20:02:48.000000000 +0200
+++ seaborn-0.11.0.husl/seaborn/tests/test_palettes.py	2020-11-27 17:34:52.803465753 +0100
@@ -7,7 +7,7 @@
 import numpy.testing as npt
 
 from .. import palettes, utils, rcmod
-from ..external import husl
+import husl
 from ..colors import xkcd_rgb, crayons