PEP8 fix and version pre-bump

This commit is contained in:
Marco Bonetti 2018-08-24 14:21:47 +02:00
parent c7bbf68cf3
commit caa4806e42
3 changed files with 8 additions and 3 deletions

View file

@ -1,6 +1,11 @@
Version History
===============
Version 0.9.1 (unreleased)
--------------------------
* Removed old compatibility code for Django < 1.11 (#205, thanks @claudep)
Version 0.9.0
-------------
* Fix `ROSETTA_REQUIRES_AUTH = False` wasn't respected (#203, @BarnabasSzabolcs)

View file

@ -1,4 +1,4 @@
VERSION = (0, 9, 0)
VERSION = (0, 9, 1)
default_app_config = "rosetta.apps.RosettaAppConfig"

View file

@ -50,8 +50,8 @@ class RosettaTestCase(TestCase):
self.user = user
self.client2 = Client()
self.client.login(username='test_admin', password='test_password')
self.client2.login(username='test_admin2', password='test_password')
self.client.login(username=user.username, password='test_password')
self.client2.login(username=user2.username, password='test_password')
self.__old_settings_languages = settings.LANGUAGES
settings.LANGUAGES = (