File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ sudo: false
3
3
python :
4
4
- ' 2.7'
5
5
- ' 3.4'
6
+ - ' 3.5'
6
7
addons :
7
8
postgresql : " 9.3"
8
9
11
12
- $HOME/.pip-cache/
12
13
13
14
install :
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
15
17
- pip install coveralls
16
18
17
19
env :
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ def get_choice_feedback_questions(conference_id):
56
56
schedule item type.
57
57
"""
58
58
qs = ChoiceFeedbackQuestion .objects .filter (
59
- conference_id = conference_id ).select_related ('allowed_values' )
59
+ conference_id = conference_id ).prefetch_related ('allowed_values' )
60
60
return _get_question_oragnized_by_type (qs )
61
61
62
62
Original file line number Diff line number Diff line change 1
- Django == 1.7.9
1
+ Django == 1.8.14
2
2
celery == 3.1.18
3
3
djangorestframework == 3.1.3
4
4
django-filter == 0.10.0
You can’t perform that action at this time.
0 commit comments