From 18a4f02bca0f83b35d156d442bd7a8b7e16155b6 Mon Sep 17 00:00:00 2001 From: Kamil Slowikowski Date: Wed, 23 Nov 2022 09:54:54 -0500 Subject: [PATCH] fix #21 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 --- CHANGELOG.md | 5 +++++ MANIFEST.in | 1 - setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7074046..734f007 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/MANIFEST.in b/MANIFEST.in index 6748a14..9f203e7 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,6 +2,5 @@ include README.md prune data* prune tests* exclude publish_to_pypi.md -exclude README.md exclude MANIFEST.in exclude Makefile diff --git a/setup.py b/setup.py index f4d6a52..c9f7432 100644 --- a/setup.py +++ b/setup.py @@ -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.",