From 419fe216b767c6837b67a210b87b5949fbec7b69 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sun, 17 Dec 2017 07:35:34 -0600 Subject: [PATCH] Simplify version mentioning in README, classifiers Remove Python version mentionings, as they are beholden to Django's constraints. See also: - https://github.com/jazzband/django-model-utils/issues/305 --- README.rst | 8 +++----- setup.py | 4 ++++ 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index ac45fee..3014eb0 100644 --- a/README.rst +++ b/README.rst @@ -14,8 +14,7 @@ django-model-utils Django model mixins and utilities. -``django-model-utils`` supports `Django`_ 1.8 through 1.10 (latest bugfix -release in each series only) on Python 2.7, 3.3 (Django 1.8 only), 3.4 and 3.5. +``django-model-utils`` supports `Django`_ 1.8 to 2.0. .. _Django: http://www.djangoproject.com/ @@ -23,12 +22,11 @@ This app is available on `PyPI`_. .. _PyPI: https://pypi.python.org/pypi/django-model-utils/ - Getting Help ============ -Documentation for django-model-utils is available at https://django-model-utils.readthedocs.io/ - +Documentation for django-model-utils is available +https://django-model-utils.readthedocs.io/ Contributing ============ diff --git a/setup.py b/setup.py index 7413962..067a64b 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,11 @@ setup( 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', 'Framework :: Django', + 'Framework :: Django :: 1.8', + 'Framework :: Django :: 1.9', + 'Framework :: Django :: 1.10', 'Framework :: Django :: 1.11', 'Framework :: Django :: 2.0', ],