Merge "Drop Django 1.11 support"

This commit is contained in:
Zuul 2020-02-05 16:51:59 +00:00 committed by Gerrit Code Review
commit 933bc20fc2
2 changed files with 2 additions and 4 deletions

View File

@ -10,7 +10,7 @@
pbr!=2.1.0,>=2.0.0 # Apache-2.0
# Horizon Core Requirements
horizon>=14.0.0.0b3 # Apache-2.0
horizon>=17.1.0 # Apache-2.0
openstacksdk>=0.26.0
python-masakariclient>=5.4.0
PyYAML>=3.12 # MIT

View File

@ -1,5 +1,5 @@
[tox]
envlist = pep8,py27,py36,py37,py3-{dj111,dj22}
envlist = pep8,py36,py37
minversion = 3.1.1
skipsdist = True
ignore_basepython_conflict = True
@ -20,8 +20,6 @@ deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands =
dj111: pip install django>=1.11,<2
dj22: pip install django>=2.2,<2.3
python manage.py test {posargs} --settings=masakaridashboard.test.settings --verbosity 2
[testenv:pep8]