Skip to content

Commit c234f6c

Browse files
authoredSep 29, 2024··
Merge pull request #32 from sorrychoe/develop
dump version 1.2.9
2 parents 60be80a + 2f84150 commit c234f6c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎pyBigKinds/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.2.8"
1+
__version__ = "1.2.9"

‎setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = pyBigKinds
3-
version = 1.2.8
3+
version = 1.2.9
44
description = BigKinds Data Analysis Toolkit for python
55
author = Sorrychoe
66
license = MIT

‎test/test_representation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def test_dbscan(vector):
7373
def test_meanshift(vector):
7474
cluster = meanshift(vector)
7575
assert type(cluster) == np.ndarray
76-
assert np.unique(cluster).shape == (4,)
76+
assert np.unique(cluster).shape == (5,)
7777

7878

7979
def test_lda(dataframe):

0 commit comments

Comments
 (0)
Please sign in to comment.