Skip to content

Commit f9bfd19

Browse files
authored
Merge pull request #669 from OpenTechFund/updates/misc-packages
Minor python packages updates
2 parents b37da94 + 24724ed commit f9bfd19

File tree

2 files changed

+28
-16
lines changed

2 files changed

+28
-16
lines changed

opentech/apply/funds/tables.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,12 @@ def order_last_update(self, qs, desc):
8787
qs = qs.order_by(update_order, 'submit_time')
8888
return qs, True
8989

90+
# For when we update to Django Tables2 2.x.
91+
# def get_column_class_names(self, classes_set, bound_column):
92+
# classes_set = super(SubmissionsTable, self).get_column_class_names(classes_set, bound_column)
93+
# classes_set.add(bound_column.name)
94+
# return classes_set
95+
9096

9197
class ReviewerSubmissionsTable(SubmissionsTable):
9298
class Meta(SubmissionsTable.Meta):
@@ -304,6 +310,12 @@ def order_fund(self, qs, desc):
304310
def order_progress(self, qs, desc):
305311
return qs.order_by(self._field_order('progress', desc)), True
306312

313+
# For when we update to Django Tables2 2.x.
314+
# def get_column_class_names(self, classes_set, bound_column):
315+
# classes_set = super(SubmissionsTable, self).get_column_class_names(classes_set, bound_column)
316+
# classes_set.add(bound_column.name)
317+
# return classes_set
318+
307319

308320
class ActiveRoundFilter(Select2MultipleChoiceFilter):
309321
def __init__(self, *args, **kwargs):

requirements.txt

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -14,37 +14,37 @@ scout-apm==2.0.1
1414
raven==6.9.0
1515

1616
# Production dependencies
17-
boto3==1.7.75
17+
boto3==1.9.160
1818
celery==4.2.1
1919
dj-database-url==0.5.0
20-
django-anymail==3.0
20+
django-anymail==6.0.1
2121
django-basic-auth-ip-whitelist==0.2.1
22-
django-bleach==0.3.0
23-
django-countries==5.1
24-
django-extensions==2.0.0
22+
django-bleach==0.5.3
23+
django-countries==5.3.3
24+
django-extensions==2.1.7
2525
django-filter==1.1.0
26-
django-fsm==2.6.0
26+
django-fsm==2.6.1
2727
django-heroku==0.3.1
28-
django-hijack==2.1.9
28+
django-hijack==2.1.10
2929
django-pagedown==1.0.6
30-
django-pwned-passwords==2.0.0
30+
django-pwned-passwords==3.0.0
3131
django-redis==4.10.0
3232
django-referrer-policy==1.0
33-
django-storages==1.6.6
34-
django-tables2==1.21.1
35-
django-tinymce4-lite==1.7.0
33+
django-storages==1.7.1
34+
django-tables2==1.21.2
35+
django-tinymce4-lite==1.7.5
3636
django-two-factor-auth==1.8.0
3737
django-webpack-loader==0.6.0
38-
django_select2==6.0.1
39-
djangorestframework==3.9.0
38+
django_select2==6.3.1
39+
djangorestframework==3.9.2
4040
django~=2.0.0
4141
gunicorn==19.9.0
42-
mailchimp3==3.0.4
42+
mailchimp3==3.0.7
4343
mistune==0.8.4
44-
Pillow==4.3.0
44+
Pillow==5.4.1
4545
psycopg2==2.7.3.1
4646
social_auth_app_django==3.1.0
4747
tomd==0.1.3
4848
wagtail~=2.2.0
4949
wagtail-cache==0.5.1
50-
whitenoise==4.0
50+
whitenoise==4.1.2

0 commit comments

Comments
 (0)