Skip to content

Commit 5a94599

Browse files
committed
Update documentation to reflect recent changes
On supported versions of python and Django
1 parent e6014ea commit 5a94599

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@ by enabling a cached backend. See [Advanced Usage](#advanced-usage)
1212

1313
### Compatability
1414

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

2019
## Installation

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,32 +4,32 @@
44

55
setup(
66
name='django-fsm-log',
7-
version='1.3.0',
7+
version='1.4.0dev',
88
description='Logging for django-fsm',
99
author='Gizmag',
1010
author_email='[email protected]',
1111
url='https://github.com/gizmag/django-fsm-log',
1212
license='MIT',
1313
packages=find_packages(),
14-
install_requires=['django>=1.6', 'django_fsm>=2', 'django_appconf'],
14+
install_requires=['django>=1.8', 'django_fsm>=2', 'django_appconf'],
1515
classifiers=[
1616
'Development Status :: 5 - Production/Stable',
1717
'Environment :: Web Environment',
1818
'Framework :: Django',
19-
'Framework :: Django :: 1.6',
20-
'Framework :: Django :: 1.7',
2119
'Framework :: Django :: 1.8',
22-
'Framework :: Django :: 1.9',
20+
'Framework :: Django :: 1.10',
21+
'Framework :: Django :: 1.11',
22+
'Framework :: Django :: 2.0',
2323
'Intended Audience :: Developers',
2424
'License :: OSI Approved :: MIT License',
2525
'Operating System :: OS Independent',
2626
'Programming Language :: Python',
2727
'Programming Language :: Python :: 2',
2828
'Programming Language :: Python :: 2.7',
2929
'Programming Language :: Python :: 3',
30-
'Programming Language :: Python :: 3.3',
3130
'Programming Language :: Python :: 3.4',
3231
'Programming Language :: Python :: 3.5',
32+
'Programming Language :: Python :: 3.6',
3333
'Topic :: Software Development :: Libraries :: Python Modules',
3434
]
3535
)

0 commit comments

Comments
 (0)