Yuval Adam
Yuval Adam

Reputation: 165182

Django and PostgreSQL latest and greatest versions

I heard about lots of compatibility issues with PostgreSQL and Django + psycopg2.

What would be the recommended latest and greatest versions that are fully compatible for a new Django project starting from scratch?

Upvotes: 0

Views: 376

Answers (1)

piro
piro

Reputation: 13931

The bug is not critical: it only affects database creation during tests: https://code.djangoproject.com/ticket/16250 There should be no other problem between psycopg and django.

The problem can be avoided using psycopg 2.4.1, but there have been several bug fixes since then, so I'd rather apply some simple patch to django to make the two play well together.

BTW I wonder when will they release django 1.3.2: the bug is been there for 6 months now...

Upvotes: 2

Related Questions