0.9.4: Django 3.0 and python 3.8

This commit is contained in:
Marco Bonetti 2020-04-13 17:12:07 +02:00
parent 7ebd8e1dc3
commit 4b2a5638ed
16 changed files with 19 additions and 9 deletions

View file

@ -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

View file

@ -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

View file

@ -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
View file

@ -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