File tree 2 files changed +1
-7
lines changed
2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change 1
- # -*- coding: utf-8 -*-
2
1
# pylint: disable=missing-docstring
3
2
4
3
import getpass
@@ -107,7 +106,6 @@ def INSTALLED_APPS(self): # noqa
107
106
# third party apps
108
107
'dj_pagination' ,
109
108
'taggit' ,
110
- 'guardian' ,
111
109
'django_gravatar' ,
112
110
'rest_framework' ,
113
111
'rest_framework.authtoken' ,
@@ -474,9 +472,6 @@ def USE_PROMOS(self): # noqa
474
472
475
473
INTERNAL_IPS = ('127.0.0.1' ,)
476
474
477
- # Guardian Settings
478
- GUARDIAN_RAISE_403 = True
479
-
480
475
# Stripe
481
476
STRIPE_SECRET = None
482
477
STRIPE_PUBLISHABLE = None
@@ -514,7 +509,7 @@ def USE_PROMOS(self): # noqa
514
509
'PAGE_SIZE' : 10 ,
515
510
}
516
511
517
- SILENCED_SYSTEM_CHECKS = ['fields.W342' , 'guardian.W001' ]
512
+ SILENCED_SYSTEM_CHECKS = ['fields.W342' ]
518
513
519
514
# Logging
520
515
LOG_FORMAT = '%(name)s:%(lineno)s[%(process)d]: %(levelname)s %(message)s'
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ appdirs==1.4.3
4
4
virtualenv==16.6.1
5
5
6
6
django==1.11.21 # pyup: <1.12
7
- django-guardian==1.5.1 # pyup: <2.0.0
8
7
django-extensions==2.1.9
9
8
django_polymorphic==2.0.3
10
9
You can’t perform that action at this time.
0 commit comments