Skip to content

Commit dcb7b88

Browse files
authored
Update setup.py
1 parent 4cf36ec commit dcb7b88

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
import warnings
22

33
try:
4-
from Cython.Distutils import build_ext
4+
# from Cython.Distutils import build_ext
5+
from Cython.Build import cythonize
56
from setuptools import setup, Extension
7+
from setuptools.command.build_ext import build_ext
68
HAVE_CYTHON = True
79
except ImportError as e:
810
warnings.warn(e.args[0])
@@ -51,7 +53,7 @@ def requirements():
5153

5254
configuration = {
5355
'name': 'hdbscan',
54-
'version': '0.8.38-2',
56+
'version': '0.8.39',
5557
'description': 'Clustering based on density with variable density clusters',
5658
'long_description': readme(),
5759
'classifiers': [

0 commit comments

Comments
 (0)