revsys / django-health-check

a pluggable app that runs a full check on the deployment, using a number of plugins to check e.g. database, queue server, celery processes, etc.

Home Page:https://readthedocs.org/projects/django-health-check/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Incorrect Django version dependency

evili opened this issue · comments

The Django dependency is stated at setup.cfg as:

 django>=1.11

This does not work actually since any minor 1.11 release (1.11.29 for example) is "greater than" 1.11==1.11.0.
The main incompatibility is the absence of django.urls.path in any Django<2.0.

This should be changed to:

django>=2.0

For all versions of django-health-check>=3.14

And let setup.cfg as

django<2.0,>=1.1

for Django 1.11 or below.

Hi @evili,

Thanks for reaching out and noticing that problem. You are correct the latest releases only support 2.2 and up.

Best,
Joe