Skip to content
This repository has been archived by the owner on Oct 5, 2021. It is now read-only.

Commit

Permalink
support of Django 1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Olivier Demah committed Apr 3, 2015
1 parent cf672f6 commit b28e10f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ who permits to use a manager of tasks like "cron" and, of course Python.
Requirements
============
* Python 3.4.x, 2.7.x
* `Django <https://pypi.python.org/pypi/Django/>`_ >= 1.7
* `Django <https://pypi.python.org/pypi/Django/>`_ >= 1.8
* `django-th-rss <https://github.com/foxmask/django-th-rss>`_ == 0.3.0
* `django-th-pocket <https://github.com/foxmask/django-th-pocket>`_ == 0.2.0
* `django-js-reverse <https://pypi.python.org/pypi/django-js-reverse/>`_ == 0.3.3
Expand Down Expand Up @@ -78,6 +78,7 @@ add the module django_th to the INSTALLED_APPS
INSTALLED_APPS = (
...
'formtools',
'django_th',
'th_rss',
'django_js_reverse',
Expand Down
1 change: 1 addition & 0 deletions django_th/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@
'django.contrib.admin',
# Uncomment the next line to enable admin documentation:
# 'django.contrib.admindocs',
'formtools',
'django_th',

'th_rss',
Expand Down
2 changes: 1 addition & 1 deletion django_th/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from django.views.generic import TemplateView, UpdateView
from django.db.models import Q
from django.utils.translation import ugettext as _
from django.contrib.formtools.wizard.views import SessionWizardView
from formtools.wizard.views import SessionWizardView

# trigger_happy
from django_th.models import TriggerService, UserService, ServicesActivated
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-r requirements.txt
WebTest==2.0.5
django-debug-toolbar==0.9.4
django-debug-toolbar==1.3.0
django-discover-runner==1.0
django-webtest==1.7.7

3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Django>=1.7
Django>=1.8
formtools==1.0
django-th-rss>=0.3.0
django-th-pocket>=0.2.0
arrow==0.4.2
Expand Down

0 comments on commit b28e10f

Please sign in to comment.