mirror of
https://github.com/Hopiu/django-rosetta.git
synced 2026-03-16 21:30:24 +00:00
0.9.4: Django 3.0 and python 3.8
This commit is contained in:
parent
7ebd8e1dc3
commit
4b2a5638ed
16 changed files with 19 additions and 9 deletions
|
|
@ -26,6 +26,9 @@ matrix:
|
|||
- python: "3.7"
|
||||
env: TOX_ENV=py37-django22
|
||||
dist: xenial
|
||||
- python: "3.7"
|
||||
env: TOX_ENV=py37-django30
|
||||
dist: xenial
|
||||
|
||||
before_install:
|
||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install memcached; brew services start memcached; fi
|
||||
|
|
|
|||
5
CHANGES
5
CHANGES
|
|
@ -1,11 +1,12 @@
|
|||
Version History
|
||||
===============
|
||||
|
||||
Version 0.9.4 (unreleased)
|
||||
--------------------------
|
||||
Version 0.9.4
|
||||
-------------
|
||||
* Added ROSETTA_SHOW_OCCURRENCES: Option to hide file name & path (#77, PR #221, thanks @sarathak)
|
||||
* Unfuzzy fuzzy entries when the translation is changed (#16, PR #220, thanks @sarathak)
|
||||
* Updated spanish translation (#230, thank you @mondeja)
|
||||
* Test against Django 3.0 and Python 3.8
|
||||
|
||||
|
||||
Version 0.9.3
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -63,6 +63,7 @@ MIDDLEWARE = (
|
|||
|
||||
# Note: languages are overridden in the test runner
|
||||
LANGUAGES = (
|
||||
('en', u'English'),
|
||||
('bs-Cyrl-BA', u'Bosnian (Cyrillic) (Bosnia and Herzegovina)'),
|
||||
('ja', u'日本語'),
|
||||
('xx', u'XXXXX'),
|
||||
|
|
@ -71,6 +72,9 @@ LANGUAGES = (
|
|||
('fr_FR.utf8', u'French (France), UTF8'),
|
||||
)
|
||||
|
||||
SILENCED_SYSTEM_CHECKS = ["translation.E002"]
|
||||
|
||||
|
||||
LOCALE_PATHS = [
|
||||
os.path.join(PROJECT_PATH, 'locale'),
|
||||
]
|
||||
|
|
|
|||
16
tox.ini
16
tox.ini
|
|
@ -1,10 +1,11 @@
|
|||
[tox]
|
||||
envlist =
|
||||
flake8,
|
||||
{py27,py36}-django111,
|
||||
py36-django{20,21,22},
|
||||
py37-django{20,21,22},
|
||||
gettext,docs
|
||||
py{27,36}-django111,
|
||||
py{36,37}-django{20,21},
|
||||
py{36,37,38}-django{22,30},
|
||||
gettext,
|
||||
docs
|
||||
|
||||
skipsdist = True
|
||||
|
||||
|
|
@ -21,11 +22,12 @@ deps =
|
|||
django111: Django==1.11.*
|
||||
django20: Django==2.0.*
|
||||
django21: Django>=2.1a1,<=2.1.99
|
||||
django22: Django>=2.2a1,<=2.2.99
|
||||
django22: Django>=2.2.8,<=2.2.99
|
||||
django30: Django>=3.0,<=3.0.99
|
||||
|
||||
py27-django111: python-memcached
|
||||
py36-django{111,20,21,22}: python3-memcached
|
||||
py37-django{111,20,21,22}: python3-memcached
|
||||
py{36,37,38}-django{111,20,21,22,30}: python3-memcached
|
||||
|
||||
# py27-django111: pudb
|
||||
requests
|
||||
polib>=1.1.0
|
||||
|
|
|
|||
Loading…
Reference in a new issue