mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-22 09:36:49 +03:00
de497a9bf1
* Version 3.11 * Added notes on OpenAPI changes for 3.11. * Minor docs tweaking * Update package version and supported versions * Use a lazy import for django.test.client.encode_mutlipart. Closes #7078
34 lines
980 B
Python
34 lines
980 B
Python
r"""
|
|
______ _____ _____ _____ __
|
|
| ___ \ ___/ ___|_ _| / _| | |
|
|
| |_/ / |__ \ `--. | | | |_ _ __ __ _ _ __ ___ _____ _____ _ __| |__
|
|
| /| __| `--. \ | | | _| '__/ _` | '_ ` _ \ / _ \ \ /\ / / _ \| '__| |/ /
|
|
| |\ \| |___/\__/ / | | | | | | | (_| | | | | | | __/\ V V / (_) | | | <
|
|
\_| \_\____/\____/ \_/ |_| |_| \__,_|_| |_| |_|\___| \_/\_/ \___/|_| |_|\_|
|
|
"""
|
|
|
|
__title__ = 'Django REST framework'
|
|
__version__ = '3.11.0'
|
|
__author__ = 'Tom Christie'
|
|
__license__ = 'BSD 3-Clause'
|
|
__copyright__ = 'Copyright 2011-2019 Encode OSS Ltd'
|
|
|
|
# Version synonym
|
|
VERSION = __version__
|
|
|
|
# Header encoding (see RFC5987)
|
|
HTTP_HEADER_ENCODING = 'iso-8859-1'
|
|
|
|
# Default datetime input and output formats
|
|
ISO_8601 = 'iso-8601'
|
|
|
|
default_app_config = 'rest_framework.apps.RestFrameworkConfig'
|
|
|
|
|
|
class RemovedInDRF312Warning(DeprecationWarning):
|
|
pass
|
|
|
|
|
|
class RemovedInDRF313Warning(PendingDeprecationWarning):
|
|
pass
|