Ensure release is not compatible with django-postgres-extra 3.0

This commit is contained in:
Swen Kooij 2019-10-20 18:11:08 +03:00
parent 65d0811995
commit 7c6d3b026d
2 changed files with 6 additions and 1 deletions

View File

@ -15,3 +15,8 @@ Bug fixes
********* *********
* Fixes a bug where ``LocalizedIntegerField`` could not be used in ``order_by``. * Fixes a bug where ``LocalizedIntegerField`` could not be used in ``order_by``.
Other
*****
* ``LocalizedValue.translate()`` can now takes an optional ``language`` parameter.

View File

@ -69,7 +69,7 @@ setup(
python_requires=">=3.7", python_requires=">=3.7",
install_requires=[ install_requires=[
"Django>=2.0", "Django>=2.0",
"django-postgres-extra>=2.0a7", "django-postgres-extra>=2.0a7,<3.0",
"deprecation==2.0.7", "deprecation==2.0.7",
], ],
cmdclass={ cmdclass={