Drop support for Django 3.0.

This commit is contained in:
Hasan Ramezani 2021-04-07 17:01:39 +02:00
parent 743b538263
commit cce476b3cc
No known key found for this signature in database
GPG key ID: 36462AEA74DF3539
3 changed files with 2 additions and 3 deletions

View file

@ -6,6 +6,7 @@ Unreleased
----------
- Move CI to GitHub Actions.
- Drop support for Django 3.0
0.8.0
-----

View file

@ -32,7 +32,6 @@ setup(
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",

View file

@ -1,7 +1,7 @@
[tox]
envlist =
# list of supported Django/Python versioons:
py{36,37,38,39,py3}-dj{22,30,31}
py{36,37,38,39,py3}-dj{22,31}
py{38,39}-djmain
py38-{lint,docs}
@ -17,7 +17,6 @@ python =
deps =
-rrequirements.txt
dj22: django>=2.2,<2.3
dj30: django>=3.0,<3.1
dj31: django>=3.1,<3.2
djmain: https://github.com/django/django/archive/main.tar.gz
usedevelop = True