From db30fc92347d2f1e5099d9b372034d70754b3d41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Rever=C3=B3n=20Molina?= Date: Fri, 24 Jul 2020 16:15:11 +0200 Subject: [PATCH] 0.1.3 (build hotfix) --- CHANGELOG.md | 4 ++++ pyproject.toml | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 236b45c..5205447 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.1.3 + +- Fix build. + ## 0.1.2 - Speed up by improving the histogram algorithm. diff --git a/pyproject.toml b/pyproject.toml index 2c74c7f..213531c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "decision-tree-morfist" -version = "0.1.2" +version = "0.1.3" description = "Multi-target Random Forest implementation that can mix both classification and regression tasks." authors = ["Andrés Reverón Molina ", "Henrik Linusson "] license = "MIT" @@ -15,6 +15,8 @@ classifiers = [ ] packages = [ { include = "morfist" }, + { include = "morfist/core" }, + { include = "morfist/algo" }, ] [tool.poetry.dependencies]