I've run in to some trouble using the dagster-pandas DataFrame validation. The builtin ColumnTypeConstraints are limited in the dtypes they recognize. For example the string_column only checks for 'object' and not the Pandas
'string' dtype, boolean_cooumn only checks 'bool' and not the Pandas
'boolean' dtype, etc. Would there be any interest in reworking the ColumnTypeConstraints to use the built in Pandas dtype checking API (i.e.
is_string_dtype)?