We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e866fe5 commit 950d08dCopy full SHA for 950d08d
CHANGELOG.md
@@ -8,6 +8,14 @@ and this project adheres to [Semantic Versioning][].
8
[keep a changelog]: https://keepachangelog.com/en/1.0.0/
9
[semantic versioning]: https://semver.org/spec/v2.0.0.html
10
11
+## [0.0.5] -tbd
12
+
13
+### Added
14
+- Multipolygons are now handled correctly (#93)
15
16
+### Fixed
17
18
19
## [0.0.4] - 2023-08-11
20
21
### Fixed
src/spatialdata_plot/pl/render.py
@@ -44,7 +44,7 @@
44
)
45
from spatialdata_plot.pp.utils import _get_instance_key, _get_region_key
46
47
-_Normalize = Normalize | Sequence[Normalize]
+_Normalize = Union[Normalize, Sequence[Normalize]]
48
to_hex = partial(colors.to_hex, keep_alpha=True)
49
50
0 commit comments