File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ language: python
2
2
sudo : false
3
3
python :
4
4
- ' 2.7'
5
- - ' 3.5 '
5
+ - ' 3.4 '
6
6
addons :
7
7
postgresql : " 9.3"
8
8
11
11
- $HOME/.pip-cache/
12
12
13
13
install :
14
- - pip install pip==8.1.2
15
- - pip install -r requirements-dev.txt --allow-all-external
14
+ - pip install -r requirements-dev.txt --allow-all-external --download-cache $HOME/.pip-cache
16
15
- pip install coveralls
17
16
18
17
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 ).prefetch_related ('allowed_values' )
59
+ conference_id = conference_id ).select_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.8.14
1
+ Django == 1.7.9
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