Added support for Django 3.2 and Python 3.9

django-5.0
Stephen Lutes 2021-07-09 10:50:29 -07:00 committed by Thomas Leichtfuß
parent 11def11564
commit 21984861c9
4 changed files with 7 additions and 3 deletions

View File

@ -2,4 +2,4 @@ from django.apps import AppConfig
class DjangoAdminSelectfilterConfig(AppConfig):
name = 'django_more_admin_filters'
name = 'more_admin_filters'

View File

@ -32,7 +32,7 @@ setup(
packages=find_packages(exclude=["tests"]),
include_package_data=True,
install_requires=[
"Django>=1.11,<=3.1",
"Django>=1.11,<=3.2",
],
classifiers=[
dev_status,

View File

@ -126,3 +126,5 @@ USE_TZ = True
# https://docs.djangoproject.com/en/2.2/howto/static-files/
STATIC_URL = '/static/'
DEFAULT_AUTO_FIELD = 'django.db.models.AutoField'

View File

@ -10,7 +10,8 @@ envlist =
{py35,py36,py37}-django21,
{py35,py36,py37,py38}-django22,
{py36,py37,py38}-django30,
{py36,py37,py38}-django31
{py36,py37,py38}-django31,
{py36,py37,py38,py39}-django32
skip_missing_interpreters = true
[testenv]
@ -21,6 +22,7 @@ deps =
django22: Django>=2.2,<3.0
django30: Django>=3.0,<3.1
django31: Django>=3.1,<3.2
django32: Django>=3.2,<3.3
selenium
commands = {envpython} tests/manage.py test testapp {posargs}