Skip to content

Commit

Permalink
Merge 2406d83 into 122e2ba
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] committed Sep 7, 2018
2 parents 122e2ba + 2406d83 commit afda235
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion requirements/base.txt
@@ -1,4 +1,4 @@
Django==2.0.7
Django==2.1.1
django-bootstrap3==11.0.0
dj-database-url==0.5.0
dj-static==0.0.6
Expand Down
4 changes: 0 additions & 4 deletions teamtemp/settings/base.py
Expand Up @@ -119,10 +119,6 @@
'cspreports',
)

PASSWORD_HASHERS = (
'django.contrib.auth.hashers.BCryptPasswordHasher',
)

SESSION_SERIALIZER = 'django.contrib.sessions.serializers.JSONSerializer'
SESSION_ENGINE = 'django.contrib.sessions.backends.cached_db'

Expand Down
2 changes: 1 addition & 1 deletion teamtemp/tests/factories.py
Expand Up @@ -32,7 +32,7 @@ class Meta(object):

id = FuzzyText(length=8, chars=utils.chars)
creator = factory.SubFactory(UserFactory)
password = make_password('testing')
password = make_password(None)


class TeamFactory(CleanModelFactory):
Expand Down

0 comments on commit afda235

Please sign in to comment.