mirror of
https://github.com/Hopiu/django-rosetta.git
synced 2026-04-25 23:44:46 +00:00
upgraded test runner to test against Django 1.6.1
This commit is contained in:
parent
2362191876
commit
4924ee5fbd
2 changed files with 3 additions and 5 deletions
2
CHANGES
2
CHANGES
|
|
@ -1,7 +1,7 @@
|
|||
Version 0.7.3
|
||||
-------------
|
||||
* Fix for test settings leaking onto global settings: LANGUAGES was overridden and not set back (Issue #81 - Thanks @zsoldosp)
|
||||
* Test against Django 1.6b1
|
||||
* Test against Django 1.6.1
|
||||
* Missing context variable in catalog list (Issue #87 - Thanks @kunitoki)
|
||||
* Added support for Yandex translation API (Issue #89 - Thanks @BlackWizard) See supported languages and limitations here: https://github.com/mbi/django-rosetta/pull/89
|
||||
* Removed support for the signed_cookies SESSION_ENGINE + SessionRosettaStorage in Django 1.6, because serialization of POFiles would fail
|
||||
|
|
|
|||
|
|
@ -32,16 +32,14 @@ if [ ! -d .venv_16 ]
|
|||
then
|
||||
virtualenv --no-site-packages --distribute --python=python2 .venv_16
|
||||
. .venv_16/bin/activate
|
||||
pip install https://github.com/django/django/archive/stable/1.6.x.zip
|
||||
pip install coverage python-memcached six microsofttranslator
|
||||
pip install coverage python-memcached six microsofttranslator Django==1.6.1
|
||||
deactivate
|
||||
fi
|
||||
if [ ! -d .venv_16_p3 ]
|
||||
then
|
||||
virtualenv --no-site-packages --distribute --python=python3 .venv_16_p3
|
||||
. .venv_16_p3/bin/activate
|
||||
pip install https://github.com/django/django/archive/stable/1.6.x.zip
|
||||
pip install coverage python3-memcached six microsofttranslator
|
||||
pip install coverage python3-memcached six microsofttranslator Django==1.6.1
|
||||
deactivate
|
||||
fi
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue