Skip to content

Commit

Permalink
Merge pull request #50 from ticosax/update-readme
Browse files Browse the repository at this point in the history
Update documentation to reflect recent changes
  • Loading branch information
ticosax authored Nov 9, 2017
2 parents e6014ea + 5a94599 commit b8f533d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@ by enabling a cached backend. See [Advanced Usage](#advanced-usage)

### Compatability

- Python 2.7 and 3.3+
- Django 1.6+
- South (if using 1.6) or 1.7 core migrations
- Python 2.7 and 3.4+
- Django 1.8+
- Django-FSM 2+

## Installation
Expand Down
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,32 +4,32 @@

setup(
name='django-fsm-log',
version='1.3.0',
version='1.4.0dev',
description='Logging for django-fsm',
author='Gizmag',
author_email='tech@gizmag.com',
url='https://github.com/gizmag/django-fsm-log',
license='MIT',
packages=find_packages(),
install_requires=['django>=1.6', 'django_fsm>=2', 'django_appconf'],
install_requires=['django>=1.8', 'django_fsm>=2', 'django_appconf'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.6',
'Framework :: Django :: 1.7',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)

0 comments on commit b8f533d

Please sign in to comment.