Skip to content

Commit 6390369

Browse files
committed
Merge branch 'update_requirements'
2 parents 5e0cb38 + ffb1a6d commit 6390369

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
# The short X.Y version.
6868
version = "0.5"
6969
# The full version, including alpha/beta/rc tags.
70-
release = "0.5"
70+
release = "0.5.8"
7171

7272
# The language for content autogenerated by Sphinx. Refer to documentation
7373
# for a list of supported languages.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def readme():
1616

1717
configuration = {
1818
"name": "umap-learn",
19-
"version": "0.5.7",
19+
"version": "0.5.8",
2020
"description": "Uniform Manifold Approximation and Projection",
2121
"long_description": readme(),
2222
"long_description_content_type": "text/x-rst",

umap/tests/test_aligned_umap.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
def nn_accuracy(true_nn, embd_nn):
1414
num_correct = 0.0
1515
for i in range(true_nn.shape[0]):
16-
num_correct += np.sum(np.in1d(true_nn[i], embd_nn[i]))
16+
num_correct += np.sum(np.isin(true_nn[i], embd_nn[i]))
1717
return num_correct / true_nn.size
1818

1919

0 commit comments

Comments
 (0)