From 48a8b0b12b168cf113067cada9c033f7c7929d2d Mon Sep 17 00:00:00 2001 From: Forest Gregg Date: Sat, 26 Feb 2022 19:05:04 -0500 Subject: [PATCH] unpin fastcluster, set python-requires > 3.6 closes #974 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index c66086c47..a8edc3cfd 100644 --- a/setup.py +++ b/setup.py @@ -8,8 +8,7 @@ from Cython.Build import cythonize -install_requires = ["fastcluster; python_version < '3.10'", - "fastcluster @ https://github.com/dmuellner/fastcluster/archive/dbbf09361745c422517095fe783960782f7cc370.zip ; python_version >= '3.10'", +install_requires = ["fastcluster", 'dedupe-hcluster', 'affinegap>=1.3', 'categorical-distance>=1.9', @@ -36,6 +35,7 @@ packages=['dedupe', 'dedupe.variables'], ext_modules=cythonize([Extension('dedupe.cpredicates', ['dedupe/cpredicates.pyx'])]), install_requires=install_requires, + python_requires='>3.6', classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers',