Merge "Django 2.0 support"

This commit is contained in:
Zuul 2018-04-26 08:39:47 +00:00 committed by Gerrit Code Review
commit 905c335632
7 changed files with 20 additions and 8 deletions

View File

@ -4,8 +4,14 @@
- openstack-tox-lower-constraints:
required-projects:
- openstack/horizon
- horizon-openstack-tox-py35dj20:
required-projects:
- openstack/horizon
gate:
jobs:
- openstack-tox-lower-constraints:
required-projects:
- openstack/horizon
- horizon-openstack-tox-py35dj20:
required-projects:
- openstack/horizon

View File

@ -14,7 +14,7 @@
import logging
from django.core.urlresolvers import reverse
from django.urls import reverse
from django.utils.translation import ugettext_lazy as _
from horizon import exceptions

View File

@ -13,8 +13,8 @@
# under the License.
from django.core.urlresolvers import reverse
from django import template
from django.urls import reverse
from django.utils.translation import pgettext_lazy
from django.utils.translation import ugettext_lazy as _
from django.utils.translation import ungettext_lazy

View File

@ -12,7 +12,7 @@
# License for the specific language governing permissions and limitations
# under the License.
from django.core.urlresolvers import reverse
from django.urls import reverse
from horizon.workflows import views

View File

@ -12,8 +12,8 @@
# License for the specific language governing permissions and limitations
# under the License.
from django.core.urlresolvers import reverse
from django.core.urlresolvers import reverse_lazy
from django.urls import reverse
from django.urls import reverse_lazy
from django.utils.translation import ugettext_lazy as _
from horizon import exceptions

View File

@ -0,0 +1,6 @@
---
upgrade:
- |
Supported django versions are chagned aligning with the supported versions
by horizon. Django 1.11 and 2.0 are supported now. Django 1.8 to 1.10 are
no longer supported.

View File

@ -35,10 +35,10 @@ commands =
coverage xml --omit '.tox/cover/*' -o 'cover/coverage.xml'
coverage html --omit '.tox/cover/*' -d 'cover/htmlcov'
[testenv:py27dj110]
basepython = python2.7
[testenv:py35dj20]
basepython = python3.5
commands =
pip install django>=1.10,<1.11
pip install django>=2.0,<2.1
{[unit_tests]commands}
[testenv:docs]