We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fc678c commit 5f9ff84Copy full SHA for 5f9ff84
django_coverage_plugin/plugin.py
@@ -78,6 +78,10 @@ def check_debug():
78
return True
79
80
81
+if django.VERSION < (1, 8):
82
+ raise RuntimeError("Django Coverage Plugin requires Django 1.8 or higher")
83
+
84
85
if django.VERSION >= (1, 9):
86
# Since we are grabbing at internal details, we have to adapt as they
87
# change over versions.
setup.py
@@ -29,7 +29,6 @@
29
url='https://github.com/nedbat/django_coverage_plugin',
30
packages=['django_coverage_plugin'],
31
install_requires=[
32
- 'Django >= 1.8',
33
'coverage >= 4.0',
34
'six >= 1.4.0',
35
],
0 commit comments