Skip to content

Commit

Permalink
update readme with 1.7 compat info
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobh committed Aug 6, 2014
1 parent 3e50e5f commit e7936f4
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ package.
Logs can be accessed before a transition occurs and before they are persisted to the database
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
- Django-FSM 2+

## Installation

First, install the package with pip. This will automatically install any
Expand All @@ -18,8 +25,6 @@ dependencies you may be missing
pip install django-fsm-log
```

With Python 2.7 Django 1.4+ is supported, with Python 3.3 Django 1.5+ is supported.

Then migrate the app to create the database table
```bash
python manage.py migrate django_fsm_log
Expand Down Expand Up @@ -55,7 +60,7 @@ We found that our transitions are commonly called by a user, so we've added a de

```python
from django.db import models
from django_fsm.db.fields import FSMField, transition
from django_fsm import FSMField, transition
from django_fsm_log.decorators import fsm_log_by

class Article(models.Model):
Expand Down

0 comments on commit e7936f4

Please sign in to comment.