From 144712008328ebc412a709c43d284243b3965c28 Mon Sep 17 00:00:00 2001 From: Santos Gallegos Date: Thu, 6 Jun 2019 17:12:24 -0500 Subject: [PATCH] Add boundaries to dependencies An update can break the package, also having django as a dependencie can lead to the django version to be updated. --- setup.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 60325d8..4d1cb95 100644 --- a/setup.py +++ b/setup.py @@ -36,9 +36,10 @@ ], include_package_data=True, zip_safe=False, - install_requires=['setuptools', - 'django', - 'scipy', - 'sklearn'], + install_requires=[ + 'setuptools', + 'scipy<1.4', + 'sklearn<0.22', + ], tests_require=['mock'], )