Test against Django 4.0-dev

This commit is contained in:
Marco Bonetti 2021-08-29 10:20:58 +02:00
parent 8509202476
commit 6c61ac8570
4 changed files with 9 additions and 10 deletions

View file

@ -10,6 +10,7 @@ Version 0.9.7 (unreleased)
* Remove six as a dependency
* Move context and comment hints into the right-most column (#260 thanks @jieter)
* Add extra styles block to the base template (#261 thanks @Frohus and @adamjforster)
* Test against Django 4.0-dev
Version 0.9.6

View file

@ -1,10 +1,8 @@
from django.conf.urls import re_path
from django.urls import reverse_lazy
from django.urls import re_path, reverse_lazy
from django.views.generic.base import RedirectView
from . import views
urlpatterns = [
re_path(
r'^$',

View file

@ -1,7 +1,6 @@
from django.conf.urls import include, re_path
from django.contrib import admin
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
from django.urls import include, re_path
admin.autodiscover()

11
tox.ini
View file

@ -2,15 +2,15 @@
envlist =
flake8,
py{36,37,38,39}-django{22,30,31,32},
py{38,39}-django40,
gettext,
docs
[gh-actions]
python =
3.9: py39-django22, py39-django30, py39-django31, py39-django32
3.8: py38-django22, py38-django30, py38-django31, py38-django32
3.9: py39-django22, py39-django30, py39-django31, py39-django32, py39-django40
3.8: py38-django22, py38-django30, py38-django31, py38-django32, py38-django40
3.7: py37-django22, py37-django30, py37-django31, py37-django32, flake8
3.6: py36-django22, py36-django30, py36-django31, py36-django32, gettext, docs
@ -33,9 +33,10 @@ deps =
django30: Django>=3.0,<=3.0.99
django31: Django>=3.1,<=3.1.99
django32: Django>=3.2a1,<=3.2.99
django40: git+https://github.com/django/django.git
python-memcached
django32: pymemcache
django{22,30,31}: python-memcached
django{32,40}: pymemcache
requests
polib>=1.1.0
goslate