diff options
| author | Stephen Rauch <stephenrauch@users.noreply.github.com> | 2019-11-05 19:11:09 -0800 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-06-10 06:18:44 +0200 |
| commit | cdad78e6ee562f8f3acce065e396fb90d04180a1 (patch) | |
| tree | 80b7c4e61de168f2916c922ce171ccdc28b6ecc0 | |
| parent | b2b2723512dd0024567fba0c680424ebb7fa1149 (diff) | |
[2.2.x] Refs #30183 -- Doc'd dropping support for sqlparse < 0.2.2.
Support for sqlparse < 0.2.2 was broken in
782d85b6dfa191e67c0f1d572641d8236c79174c because is_whitespace property
was added in sqlparse 0.2.2.
Backport of 4b6db766ba4b613d317c87f87d1d63865b7424a4 from master.
| -rw-r--r-- | docs/internals/contributing/writing-code/unit-tests.txt | 2 | ||||
| -rw-r--r-- | setup.py | 2 | ||||
| -rw-r--r-- | tests/requirements/py3.txt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/internals/contributing/writing-code/unit-tests.txt b/docs/internals/contributing/writing-code/unit-tests.txt index 25a9a15ab8..16f2939e9f 100644 --- a/docs/internals/contributing/writing-code/unit-tests.txt +++ b/docs/internals/contributing/writing-code/unit-tests.txt @@ -243,7 +243,7 @@ dependencies: * memcached_, plus a :ref:`supported Python binding <memcached>` * gettext_ (:ref:`gettext_on_windows`) * selenium_ -* sqlparse_ (required) +* sqlparse_ 0.2.2+ (required) * tblib_ 1.5.0+ You can find these dependencies in `pip requirements files`_ inside the @@ -83,7 +83,7 @@ setup( entry_points={'console_scripts': [ 'django-admin = django.core.management:execute_from_command_line', ]}, - install_requires=['pytz', 'sqlparse'], + install_requires=['pytz', 'sqlparse >= 0.2.2'], extras_require={ "bcrypt": ["bcrypt"], "argon2": ["argon2-cffi >= 16.1.0"], diff --git a/tests/requirements/py3.txt b/tests/requirements/py3.txt index bb335791f4..e48303d3ed 100644 --- a/tests/requirements/py3.txt +++ b/tests/requirements/py3.txt @@ -12,5 +12,5 @@ pytz pywatchman; sys.platform != 'win32' PyYAML selenium -sqlparse +sqlparse >= 0.2.2 tblib >= 1.5.0 |
