Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Main #102

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

Main #102

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,11 @@ Requirements
------------
django-model-utils

six

Pillow

Tests are included and pass for Django versions 1.5, 1.6, 1.7 and 1.8, running with Python 2.7, 3.3 and 3.4
Tests are included and pass for Django versions 1.5, 1.6, 1.7 and 1.8, 3.0 running with Python 2.7, 3.3, 3.4, 3.6 , 3.9

Installation
------------
Expand All @@ -64,7 +66,7 @@ Add `'quiz', 'multichoice', 'true_false', 'essay'` to your `INSTALLED_APPS` sett
'quiz',
'multichoice',
'true_false',
'essay',
'essay',
...
)

Expand Down
2 changes: 1 addition & 1 deletion essay/models.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from __future__ import unicode_literals
from django.utils.encoding import python_2_unicode_compatible
from six import python_2_unicode_compatible
from django.utils.translation import ugettext_lazy as _
from quiz.models import Question

Expand Down
2 changes: 1 addition & 1 deletion multichoice/models.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from __future__ import unicode_literals
from django.utils.encoding import python_2_unicode_compatible
from six import python_2_unicode_compatible
from django.utils.translation import ugettext_lazy as _
from django.db import models
from quiz.models import Question
Expand Down
2 changes: 1 addition & 1 deletion quiz/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
)
from django.utils.translation import ugettext_lazy as _
from django.utils.timezone import now
from django.utils.encoding import python_2_unicode_compatible
from six import python_2_unicode_compatible
from django.conf import settings

from model_utils.managers import InheritanceManager
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
django>=1.8.19
django-model-utils>=3.1.1
Pillow>=4.0.0

six
# Only needed for running tests.
tox
2 changes: 1 addition & 1 deletion true_false/models.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from __future__ import unicode_literals
from django.utils.encoding import python_2_unicode_compatible
from six import python_2_unicode_compatible
from django.utils.translation import ugettext_lazy as _
from django.db import models
from quiz.models import Question
Expand Down