Skip to content

Commit

Permalink
PEP8 fix and version pre-bump
Browse files Browse the repository at this point in the history
  • Loading branch information
mbi committed Aug 24, 2018
1 parent c7bbf68 commit caa4806
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion rosetta/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (0, 9, 0)
VERSION = (0, 9, 1)
default_app_config = "rosetta.apps.RosettaAppConfig"


Expand Down
4 changes: 2 additions & 2 deletions rosetta/tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ def setUp(self):
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 = (
Expand Down

0 comments on commit caa4806

Please sign in to comment.