v3.1. Django 2.2 tests.

This commit is contained in:
Martin Mahner 2019-05-16 09:44:11 +02:00
parent 04a41a91f1
commit 32ed0f3d04
3 changed files with 4 additions and 2 deletions

View file

@ -5,6 +5,7 @@ Changelog
------------ ------------
- Django 2.1 support and tests. - Django 2.1 support and tests.
- Django 2.2 support and tests.
- General code cleanup by running the entire codebase through black_. - General code cleanup by running the entire codebase through black_.
- Right-to-left support for text snippets. - Right-to-left support for text snippets.
- dart-sass is now used for SASS compilation. - dart-sass is now used for SASS compilation.

View file

@ -1,4 +1,4 @@
VERSION = (3, 0, 'a', 2) VERSION = (3, 1)
__version__ = '{major}.{minor}{rest}'.format( __version__ = '{major}.{minor}{rest}'.format(
major=VERSION[0], major=VERSION[0],

View file

@ -5,7 +5,7 @@ envlist=
readme readme
coverage_setup coverage_setup
py{34,35,36,37}-django-{111,20} py{34,35,36,37}-django-{111,20}
py{35,36,37}-django-{21} py{35,36,37}-django-{21,22}
coverage_report coverage_report
[testenv] [testenv]
@ -18,6 +18,7 @@ deps=
django-111: django>=1.11,<2.0 django-111: django>=1.11,<2.0
django-20: django==2.0 django-20: django==2.0
django-21: django==2.1 django-21: django==2.1
django-22: django==2.2
[testenv:coverage_setup] [testenv:coverage_setup]
skip_install = True skip_install = True