We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cf36ec commit dcb7b88Copy full SHA for dcb7b88
setup.py
@@ -1,8 +1,10 @@
1
import warnings
2
3
try:
4
- from Cython.Distutils import build_ext
+ # from Cython.Distutils import build_ext
5
+ from Cython.Build import cythonize
6
from setuptools import setup, Extension
7
+ from setuptools.command.build_ext import build_ext
8
HAVE_CYTHON = True
9
except ImportError as e:
10
warnings.warn(e.args[0])
@@ -51,7 +53,7 @@ def requirements():
51
53
52
54
configuration = {
55
'name': 'hdbscan',
- 'version': '0.8.38-2',
56
+ 'version': '0.8.39',
57
'description': 'Clustering based on density with variable density clusters',
58
'long_description': readme(),
59
'classifiers': [
0 commit comments