mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-08-04 12:30:11 +03:00
Remove Django 1.8 & 1.9 from README and setup.py
This commit is contained in:
parent
94f074ec36
commit
7d6d7b6408
|
@ -52,8 +52,8 @@ There is a live example API for testing purposes, [available here][sandbox].
|
||||||
|
|
||||||
# Requirements
|
# Requirements
|
||||||
|
|
||||||
* Python (2.7, 3.2, 3.3, 3.4, 3.5, 3.6)
|
* Python (2.7, 3.4, 3.5, 3.6)
|
||||||
* Django (1.8, 1.9, 1.10, 1.11)
|
* Django (1.10, 1.11)
|
||||||
|
|
||||||
# Installation
|
# Installation
|
||||||
|
|
||||||
|
|
|
@ -64,9 +64,14 @@ You can determine your currently installed version using `pip freeze`:
|
||||||
* Defer translated string evaluation on validators. [#5452][gh5452]
|
* Defer translated string evaluation on validators. [#5452][gh5452]
|
||||||
* Added default value for 'detail' param into 'ValidationError' exception [#5342][gh5342]
|
* Added default value for 'detail' param into 'ValidationError' exception [#5342][gh5342]
|
||||||
* Adjust schema get_filter_fields rules to match framework [#5454][gh5454]
|
* Adjust schema get_filter_fields rules to match framework [#5454][gh5454]
|
||||||
|
* Updated test matrix to add Django 2.0 and drop Django 1.8 & 1.9
|
||||||
|
**BC Change**: This removes Django 1.8 and Django 1.9 from Django REST Framework supported versions. [#5457][gh5457]
|
||||||
|
* Fixed a deprecation warning in serializers.ModelField [#5058][gh5058]
|
||||||
|
|
||||||
|
|
||||||
<!-- 3.7.0 -->
|
<!-- 3.7.0 -->
|
||||||
|
[gh5058]: https://github.com/encode/django-rest-framework/issues/5058
|
||||||
|
[gh5457]: https://github.com/encode/django-rest-framework/issues/5457
|
||||||
[gh5376]: https://github.com/encode/django-rest-framework/issues/5376
|
[gh5376]: https://github.com/encode/django-rest-framework/issues/5376
|
||||||
[gh5422]: https://github.com/encode/django-rest-framework/issues/5422
|
[gh5422]: https://github.com/encode/django-rest-framework/issues/5422
|
||||||
[gh5408]: https://github.com/encode/django-rest-framework/issues/5408
|
[gh5408]: https://github.com/encode/django-rest-framework/issues/5408
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -92,8 +92,6 @@ setup(
|
||||||
'Development Status :: 5 - Production/Stable',
|
'Development Status :: 5 - Production/Stable',
|
||||||
'Environment :: Web Environment',
|
'Environment :: Web Environment',
|
||||||
'Framework :: Django',
|
'Framework :: Django',
|
||||||
'Framework :: Django :: 1.8',
|
|
||||||
'Framework :: Django :: 1.9',
|
|
||||||
'Framework :: Django :: 1.10',
|
'Framework :: Django :: 1.10',
|
||||||
'Framework :: Django :: 1.11',
|
'Framework :: Django :: 1.11',
|
||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
|
@ -103,7 +101,6 @@ setup(
|
||||||
'Programming Language :: Python :: 2',
|
'Programming Language :: Python :: 2',
|
||||||
'Programming Language :: Python :: 2.7',
|
'Programming Language :: Python :: 2.7',
|
||||||
'Programming Language :: Python :: 3',
|
'Programming Language :: Python :: 3',
|
||||||
'Programming Language :: Python :: 3.3',
|
|
||||||
'Programming Language :: Python :: 3.4',
|
'Programming Language :: Python :: 3.4',
|
||||||
'Programming Language :: Python :: 3.5',
|
'Programming Language :: Python :: 3.5',
|
||||||
'Topic :: Internet :: WWW/HTTP',
|
'Topic :: Internet :: WWW/HTTP',
|
||||||
|
|
Loading…
Reference in New Issue
Block a user