Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
Changelog
=========

v0.14.4
-------

2026-01-28

Bug Fixes
*********

- Fixed handling of null types so that we can recognise as null whatever pandas
sees as null. This resolves
`(plotnine #1021) <https://github.com/has2k1/plotnine/issues/1021>`_.


v0.14.3
-------

Expand Down
2 changes: 2 additions & 0 deletions mizani/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,8 @@ def get_null_value(x: Any) -> NullType:
return None
elif isinstance(x0, (np.datetime64, np.timedelta64)):
return type(x0)("NaT")
elif pd.isna(x0):
return x0
else:
raise ValueError(
"Cannot get a null value for type: {}".format(type(x[0]))
Expand Down