From 3d43e4db026dda119c2b43e57769c9be100e6ed8 Mon Sep 17 00:00:00 2001 From: Andrei Pradan Date: Thu, 21 Apr 2016 14:34:32 +0300 Subject: [PATCH] Removed Django<1.9 requirement --- README.md | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a1902d2..8a05e69 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ about your project and its dependencies # Requirements -* Python >=2.7 (tested with Python 2.7, 3.2, 3.3, 3.4, 3.5) +* Python >=2.7 (tested with Python 2.7, 3.4, 3.5) * Django >=1.6 # Installation diff --git a/setup.py b/setup.py index 6dc7a88..27fd917 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from setuptools import setup requires = [ - 'Django>=1.6,<1.9', + 'Django>=1.6', 'psutil==4.0.0', ] @@ -18,7 +18,7 @@ setup( name='django-heartbeat', - version='2.0.0', + version='2.0.1', description="Your project's heartbeat/healthcheck and dependency status", long_description=('A simple reusable app that checks and lists ' 'various information about your project and its '