kplot 1.1.37__tar.gz → 1.1.38__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {kplot-1.1.37 → kplot-1.1.38}/PKG-INFO +1 -1
- {kplot-1.1.37 → kplot-1.1.38}/pyproject.toml +1 -1
- {kplot-1.1.37 → kplot-1.1.38}/src/kplot/cmaps.py +1 -1
- {kplot-1.1.37 → kplot-1.1.38}/README.md +0 -0
- {kplot-1.1.37 → kplot-1.1.38}/src/kplot/__init__.py +0 -0
- {kplot-1.1.37 → kplot-1.1.38}/src/kplot/axes.py +0 -0
- {kplot-1.1.37 → kplot-1.1.38}/src/kplot/image.py +0 -0
- {kplot-1.1.37 → kplot-1.1.38}/src/kplot/movie.py +0 -0
- {kplot-1.1.37 → kplot-1.1.38}/src/kplot/plot.py +0 -0
- {kplot-1.1.37 → kplot-1.1.38}/src/kplot/styles/example.mpl +0 -0
- {kplot-1.1.37 → kplot-1.1.38}/src/kplot/styles/publication.mpl +0 -0
- {kplot-1.1.37 → kplot-1.1.38}/src/kplot/threeD/__init__.py +0 -0
- {kplot-1.1.37 → kplot-1.1.38}/src/kplot/threeD/slider_images.py +0 -0
- {kplot-1.1.37 → kplot-1.1.38}/src/kplot/utils.py +0 -0
|
@@ -9,8 +9,8 @@ from matplotlib.cm import ScalarMappable
|
|
|
9
9
|
from matplotlib.colors import Colormap, LinearSegmentedColormap, ListedColormap, \
|
|
10
10
|
hex2color, Normalize, LogNorm, FuncNorm, AsinhNorm, PowerNorm, SymLogNorm, \
|
|
11
11
|
BoundaryNorm, CenteredNorm, TwoSlopeNorm
|
|
12
|
-
from matplotlib.axes_grid1 import make_axes_locatable
|
|
13
12
|
from matplotlib.axes import Axes
|
|
13
|
+
from mpl_toolkits.axes_grid1 import make_axes_locatable
|
|
14
14
|
from numpy import uint8, zeros, ndarray, inf, nanmin, nanmax, nanquantile, nanmean, \
|
|
15
15
|
nanstd, absolute, log10, ones, linspace
|
|
16
16
|
from numpy.typing import NDArray
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|