mirror of
https://github.com/Hopiu/django-rosetta.git
synced 2026-05-22 19:25:51 +00:00
PEP8 fix and version pre-bump
This commit is contained in:
parent
c7bbf68cf3
commit
caa4806e42
3 changed files with 8 additions and 3 deletions
5
CHANGES
5
CHANGES
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
VERSION = (0, 9, 0)
|
||||
VERSION = (0, 9, 1)
|
||||
default_app_config = "rosetta.apps.RosettaAppConfig"
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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 = (
|
||||
|
|
|
|||
Loading…
Reference in a new issue