I'm getting the errors shown in the first screenshot below when trying to add features to a hosted feature layer using the Python API.
The features throwing the error all seem to have dates at or prior to 1/1/1900.
When constructing the JSON for the features to add, I'm assigning our local time zone to the datetime object. Is there a different approach I should be taking to avoid these errors? The second screenshot shows a sample of the dictionary key and value being used when trying to add features.
If I set any dates at or prior to the year 1900 to NoneType objects, the features are written to the hosted feature layer without errors.

'DateField': datetime.datetime(1900, 1, 1, 12, 0, tzinfo=tzlocal())