Refs #30183 -- Doc'd dropping support for sqlparse < 0.2.2.
Support for sqlparse < 0.2.2 was broken in
782d85b6df
because is_whitespace property
was added in sqlparse 0.2.2.
This commit is contained in:
parent
c8debd5061
commit
4b6db766ba
|
@ -285,7 +285,7 @@ dependencies:
|
||||||
* memcached_, plus a :ref:`supported Python binding <memcached>`
|
* memcached_, plus a :ref:`supported Python binding <memcached>`
|
||||||
* gettext_ (:ref:`gettext_on_windows`)
|
* gettext_ (:ref:`gettext_on_windows`)
|
||||||
* selenium_
|
* selenium_
|
||||||
* sqlparse_ (required)
|
* sqlparse_ 0.2.2+ (required)
|
||||||
* tblib_ 1.5.0+
|
* tblib_ 1.5.0+
|
||||||
|
|
||||||
You can find these dependencies in `pip requirements files`_ inside the
|
You can find these dependencies in `pip requirements files`_ inside the
|
||||||
|
|
|
@ -550,6 +550,8 @@ Miscellaneous
|
||||||
* ``alias=None`` is added to the signature of
|
* ``alias=None`` is added to the signature of
|
||||||
:meth:`.Expression.get_group_by_cols`.
|
:meth:`.Expression.get_group_by_cols`.
|
||||||
|
|
||||||
|
* Support for ``sqlparse`` < 0.2.2 is removed.
|
||||||
|
|
||||||
.. _deprecated-features-3.0:
|
.. _deprecated-features-3.0:
|
||||||
|
|
||||||
Features deprecated in 3.0
|
Features deprecated in 3.0
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -78,7 +78,7 @@ setup(
|
||||||
entry_points={'console_scripts': [
|
entry_points={'console_scripts': [
|
||||||
'django-admin = django.core.management:execute_from_command_line',
|
'django-admin = django.core.management:execute_from_command_line',
|
||||||
]},
|
]},
|
||||||
install_requires=['pytz', 'sqlparse', 'asgiref'],
|
install_requires=['pytz', 'sqlparse >= 0.2.2', 'asgiref'],
|
||||||
extras_require={
|
extras_require={
|
||||||
"bcrypt": ["bcrypt"],
|
"bcrypt": ["bcrypt"],
|
||||||
"argon2": ["argon2-cffi >= 16.1.0"],
|
"argon2": ["argon2-cffi >= 16.1.0"],
|
||||||
|
|
|
@ -13,5 +13,5 @@ pytz
|
||||||
pywatchman; sys.platform != 'win32'
|
pywatchman; sys.platform != 'win32'
|
||||||
PyYAML
|
PyYAML
|
||||||
selenium
|
selenium
|
||||||
sqlparse
|
sqlparse >= 0.2.2
|
||||||
tblib >= 1.5.0
|
tblib >= 1.5.0
|
||||||
|
|
Loading…
Reference in New Issue