1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
Description: Enable django>=2.2
Author: Andreas Tille <tille@debian.org>
Last-Update: Mon, 29 Nov 2021 17:27:09 +0100
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,7 +1,7 @@
-e .
blue
coverage
-django==3.2.*
+django>=3.2.*
django_redis
doc8
flake8
--- a/tox.ini
+++ b/tox.ini
@@ -5,7 +5,7 @@ skip_missing_interpreters=True
[testenv]
commands=pytest
deps=
- django==3.2.*
+ django>=3.2.*
pytest
pytest-cov
pytest-django
@@ -31,7 +31,7 @@ allowlist_externals=make
changedir=docs
commands=make html
deps=
- django==3.2.*
+ django>=3.2.*
sphinx
[testenv:flake8]
@@ -53,7 +53,7 @@ deps=mypy
[testenv:pylint]
commands=pylint {toxinidir}/diskcache
deps=
- django==3.2.*
+ django>=3.2.*
pylint
[testenv:rstcheck]
|