mirror of
https://github.com/Hopiu/django-model-utils.git
synced 2026-05-09 18:54:43 +00:00
Merge pull request #306 from develtech/update-versions
Simplify version mentioning in README, classifiers
This commit is contained in:
commit
7afacccd79
4 changed files with 13 additions and 6 deletions
|
|
@ -4,6 +4,11 @@ CHANGES
|
||||||
master (unreleased)
|
master (unreleased)
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
|
3.1.1 (2017.12.17)
|
||||||
|
------------------
|
||||||
|
|
||||||
|
- Update classifiers and README via GH-306, fixes GH-305
|
||||||
|
|
||||||
3.1.0 (2017.12.11)
|
3.1.0 (2017.12.11)
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -14,8 +14,7 @@ django-model-utils
|
||||||
|
|
||||||
Django model mixins and utilities.
|
Django model mixins and utilities.
|
||||||
|
|
||||||
``django-model-utils`` supports `Django`_ 1.8 through 1.10 (latest bugfix
|
``django-model-utils`` supports `Django`_ 1.8 to 2.0.
|
||||||
release in each series only) on Python 2.7, 3.3 (Django 1.8 only), 3.4 and 3.5.
|
|
||||||
|
|
||||||
.. _Django: http://www.djangoproject.com/
|
.. _Django: http://www.djangoproject.com/
|
||||||
|
|
||||||
|
|
@ -23,12 +22,11 @@ This app is available on `PyPI`_.
|
||||||
|
|
||||||
.. _PyPI: https://pypi.python.org/pypi/django-model-utils/
|
.. _PyPI: https://pypi.python.org/pypi/django-model-utils/
|
||||||
|
|
||||||
|
|
||||||
Getting Help
|
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
|
Contributing
|
||||||
============
|
============
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
from .choices import Choices
|
from .choices import Choices
|
||||||
from .tracker import FieldTracker, ModelTracker
|
from .tracker import FieldTracker, ModelTracker
|
||||||
|
|
||||||
__version__ = '3.1.0'
|
__version__ = '3.1.1'
|
||||||
|
|
|
||||||
4
setup.py
4
setup.py
|
|
@ -46,7 +46,11 @@ setup(
|
||||||
'Programming Language :: Python :: 3.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',
|
||||||
|
'Programming Language :: Python :: 3.6',
|
||||||
'Framework :: Django',
|
'Framework :: Django',
|
||||||
|
'Framework :: Django :: 1.8',
|
||||||
|
'Framework :: Django :: 1.9',
|
||||||
|
'Framework :: Django :: 1.10',
|
||||||
'Framework :: Django :: 1.11',
|
'Framework :: Django :: 1.11',
|
||||||
'Framework :: Django :: 2.0',
|
'Framework :: Django :: 2.0',
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue