mirror of
https://github.com/django/django.git
synced 2024-11-29 22:56:46 +01:00
Dropped support for PostgreSQL 9.0.
This commit is contained in:
parent
2acf9d099d
commit
0c91a419f8
@ -58,7 +58,7 @@ supported versions, and any notes for each of the supported database backends:
|
|||||||
================== ============================== ================== =========================================
|
================== ============================== ================== =========================================
|
||||||
Database Library Requirements Supported Versions Notes
|
Database Library Requirements Supported Versions Notes
|
||||||
================== ============================== ================== =========================================
|
================== ============================== ================== =========================================
|
||||||
PostgreSQL GEOS, PROJ.4, PostGIS 9.0+ Requires PostGIS.
|
PostgreSQL GEOS, PROJ.4, PostGIS 9.1+ Requires PostGIS.
|
||||||
MySQL GEOS 5.5+ Not OGC-compliant; :ref:`limited functionality <mysql-spatial-limitations>`.
|
MySQL GEOS 5.5+ Not OGC-compliant; :ref:`limited functionality <mysql-spatial-limitations>`.
|
||||||
Oracle GEOS 11.1+ XE not supported.
|
Oracle GEOS 11.1+ XE not supported.
|
||||||
SQLite GEOS, GDAL, PROJ.4, SpatiaLite 3.6.+ Requires SpatiaLite 2.3+, pysqlite2 2.5+
|
SQLite GEOS, GDAL, PROJ.4, SpatiaLite 3.6.+ Requires SpatiaLite 2.3+, pysqlite2 2.5+
|
||||||
|
@ -92,7 +92,7 @@ below for information on how to set up your database correctly.
|
|||||||
PostgreSQL notes
|
PostgreSQL notes
|
||||||
================
|
================
|
||||||
|
|
||||||
Django supports PostgreSQL 9.0 and higher. It requires the use of `psycopg2`_
|
Django supports PostgreSQL 9.1 and higher. It requires the use of `psycopg2`_
|
||||||
2.4.5 or higher (or 2.5+ if you want to use :mod:`django.contrib.postgres`).
|
2.4.5 or higher (or 2.5+ if you want to use :mod:`django.contrib.postgres`).
|
||||||
|
|
||||||
.. _psycopg2: http://initd.org/psycopg/
|
.. _psycopg2: http://initd.org/psycopg/
|
||||||
|
@ -299,6 +299,12 @@ no longer include the scheme and domain part of the URLs. For example,
|
|||||||
replaced by ``self.assertRedirects(response, '/some-url/')`` (unless the
|
replaced by ``self.assertRedirects(response, '/some-url/')`` (unless the
|
||||||
redirection specifically contained an absolute URL, of course).
|
redirection specifically contained an absolute URL, of course).
|
||||||
|
|
||||||
|
Dropped support for PostgreSQL 9.0
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
Upstream support for PostgreSQL 9.0 ended in September 2015. As a consequence,
|
||||||
|
Django 1.9 sets 9.1 as the minimum PostgreSQL version it officially supports.
|
||||||
|
|
||||||
Miscellaneous
|
Miscellaneous
|
||||||
~~~~~~~~~~~~~
|
~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user