Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion hdbscan/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
membership_vector,
all_points_membership_vectors,
approximate_predict_scores)
from .version import VERSION


__version__ = VERSION
4 changes: 4 additions & 0 deletions hdbscan/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
""" This file contains the current version of the hdbscan package."""

# This version constant will be used for hdbscan.__version__ and in setup.py file.
VERSION = '0.8.33'
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import warnings
from hdbscan.version import VERSION

try:
from Cython.Distutils import build_ext
Expand Down Expand Up @@ -51,7 +52,7 @@ def requirements():

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