I'd like to use an object filter similar to the following
Shipment.objects.filter(date__gte=datetime.date(2005,1,1))
However there doesn't seem to be support for comparison operators on datetime objects. Is there a method I'm unaware of or should I look into writing a custom filter.