Skip to content

Commit

Permalink
fix #21
Browse files Browse the repository at this point in the history
Version 0.0.8 accidentally excluded README.md from the build.

But setup.py depends on README.md, so it should not be excluded
from the build.

This commit fixes that issue, and bumps the version to 0.0.9
  • Loading branch information
slowkow committed Nov 23, 2022
1 parent ec6e335 commit 18a4f02
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.0.9 - 2022-11-23

- Stop excluding `README.md` from the build, because setup.py depends on this
file.

# 0.0.8 - 2022-11-22

- Replace `scipy.cluster.vq.kmeans2` with the faster function
Expand Down
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@ include README.md
prune data*
prune tests*
exclude publish_to_pypi.md
exclude README.md
exclude MANIFEST.in
exclude Makefile
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name = "harmonypy",
version = "0.0.8",
version = "0.0.9",
author = "Kamil Slowikowski",
author_email = "kslowikowski@gmail.com",
description = "A data integration algorithm.",
Expand Down

0 comments on commit 18a4f02

Please sign in to comment.