Hi ! psycopg2 is preparing a new release, and currently the git project uses PEP 440 <https://www.python.org/dev/peps/pep-0440/>-compatible version numbers : 2.7b1, 2.7b2.dev0 (see https://github.com/psycopg/psycopg2/blob/master/setup.py#L67)
In https://github.com/django/django/blob/master/django/db/backends/postgresql/base.py, django parses that version string to check if it is greater than 2.4.5. But the psycopg2_version function can't handle version strings like 2.7b1, and returns (2,). Any ideas to improve django ? The "packaging" package could be used for that : https://packaging.pypa.io/en/latest/version/, a correct version parser does not seem simple ! Or "from distutils.version import LooseVersion" Thanks, NotSqrt -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/45a7ed92-596b-40dd-badd-50579940390a%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

