You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: restore NaN validation in polars-based variable bounds checking
The polars migration broke NaN validation because check_has_nulls_polars
only checked for null values, not NaN values. In polars, these are distinct
concepts. This fix enhances the validation to detect both null and NaN values
in numeric columns while avoiding type errors on non-numeric columns.
Fixes failing tests in test_inconsistency_checks.py that expected ValueError
to be raised when variables have NaN bounds.
0 commit comments