File: enable_newer_django.patch

package info (click to toggle)
diskcache 5.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,376 kB
  • sloc: python: 6,957; makefile: 17
file content (44 lines) | stat: -rw-r--r-- 776 bytes parent folder | download
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]