From ccc41f9143a4e57617becf9d566dfb1c2dbffe56 Mon Sep 17 00:00:00 2001 From: seroy Date: Mon, 17 Jul 2017 22:16:40 +0300 Subject: [PATCH] Updated django requirement in documentation --- README.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index b6628a6..ccdfdd7 100644 --- a/README.rst +++ b/README.rst @@ -12,9 +12,9 @@ django-localized-fields .. image:: https://badge.fury.io/py/django-localized-fields.svg :target: https://pypi.python.org/pypi/django-localized-fields -``django-localized-fields`` is an implementation of a field class for Django models that allows the field's value to be set in multiple languages. It does this by utilizing the ``hstore`` type (PostgreSQL specific), which is available as ``models.HStoreField`` in Django 1.10. +``django-localized-fields`` is an implementation of a field class for Django models that allows the field's value to be set in multiple languages. It does this by utilizing the ``hstore`` type (PostgreSQL specific), which is available as ``models.HStoreField`` since Django 1.10. -This package requires Python 3.5 or newer, Django 1.10 or newer and PostgreSQL 9.6 or newer. +This package requires Python 3.5 or newer, Django 1.11 or newer and PostgreSQL 9.6 or newer. Installation ------------ @@ -335,7 +335,7 @@ Frequently asked questions (FAQ) 2. Does this package work with Django 1.X? - No. Only Django 1.10 or newer is supported. This is because we rely on Django's ``HStoreField``. + No. Only Django 1.11 or newer is supported. This is because we rely on Django's ``HStoreField`` and template-based widget rendering. 3. Does this package come with support for Django Admin?