mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 08:02:54 +11:00
v3.1. Django 2.2 tests.
This commit is contained in:
parent
04a41a91f1
commit
32ed0f3d04
3 changed files with 4 additions and 2 deletions
|
@ -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.
|
||||||
|
|
|
@ -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],
|
||||||
|
|
3
tox.ini
3
tox.ini
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue