diff options
author | Stephen Rauch <stephenrauch@users.noreply.github.com> | 2019-11-05 19:11:09 -0800 |
---|---|---|
committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-11-06 08:45:43 +0100 |
commit | 4b6db766ba4b613d317c87f87d1d63865b7424a4 (patch) | |
tree | 58c3e546dce05f79e121c12e5ceac108761d0365 /tests | |
parent | c8debd50617142937191986aec77a5eee472c28e (diff) | |
download | django-4b6db766ba4b613d317c87f87d1d63865b7424a4.tar.gz |
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.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/requirements/py3.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/requirements/py3.txt b/tests/requirements/py3.txt index ec0f1d78cd..1b29012ff0 100644 --- a/tests/requirements/py3.txt +++ b/tests/requirements/py3.txt @@ -13,5 +13,5 @@ pytz pywatchman; sys.platform != 'win32' PyYAML selenium -sqlparse +sqlparse >= 0.2.2 tblib >= 1.5.0 |