Bharathwaaj
Bharathwaaj

Reputation: 2697

Django datetimes queryset in 1.5

How to get the new Django 1.6 datetimes queryset in Django 1.5 assuming I've postgres database?

Ref datetimes here: https://docs.djangoproject.com/en/1.6/ref/models/querysets/#datetimes

I want a timezone aware aggregation of datetimes and not in UTC. But this is mentioned as a limitation in Django 1.5 https://docs.djangoproject.com/en/1.5/ref/models/querysets/#dates

Upvotes: 1

Views: 98

Answers (1)

Alex Parakhnevich
Alex Parakhnevich

Reputation: 5172

You have no way other than upgrading to Django 1.6.

Upvotes: 1

Related Questions