File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ sudo: false
33python :
44- ' 2.7'
55- ' 3.4'
6+ - ' 3.5'
67addons :
78 postgresql : " 9.3"
89
1112 - $HOME/.pip-cache/
1213
1314install :
14- - pip install -r requirements-dev.txt --allow-all-external --download-cache $HOME/.pip-cache
15+ - pip install pip==8.1.2
16+ - pip install -r requirements-dev.txt --allow-all-external
1517 - pip install coveralls
1618
1719env :
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ def get_choice_feedback_questions(conference_id):
5656 schedule item type.
5757 """
5858 qs = ChoiceFeedbackQuestion .objects .filter (
59- conference_id = conference_id ).select_related ('allowed_values' )
59+ conference_id = conference_id ).prefetch_related ('allowed_values' )
6060 return _get_question_oragnized_by_type (qs )
6161
6262
Original file line number Diff line number Diff line change 1- Django == 1.7.9
1+ Django == 1.8.14
22celery == 3.1.18
33djangorestframework == 3.1.3
44django-filter == 0.10.0
You can’t perform that action at this time.
0 commit comments