Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lmcinnes authored Oct 12, 2024
1 parent 4cf36ec commit dcb7b88
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import warnings

try:
from Cython.Distutils import build_ext
# from Cython.Distutils import build_ext
from Cython.Build import cythonize
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext
HAVE_CYTHON = True
except ImportError as e:
warnings.warn(e.args[0])
Expand Down Expand Up @@ -51,7 +53,7 @@ def requirements():

configuration = {
'name': 'hdbscan',
'version': '0.8.38-2',
'version': '0.8.39',
'description': 'Clustering based on density with variable density clusters',
'long_description': readme(),
'classifiers': [
Expand Down

0 comments on commit dcb7b88

Please sign in to comment.