Skip to content

Commit

Permalink
unpin fastcluster, set python-requires > 3.6
Browse files Browse the repository at this point in the history
closes #974
  • Loading branch information
fgregg committed Feb 27, 2022
1 parent 4c2dc7f commit 48a8b0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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',
Expand Down

0 comments on commit 48a8b0b

Please sign in to comment.