diff --git a/CHANGELOGS.rst b/CHANGELOGS.rst index d7000af..a6cd8a1 100644 --- a/CHANGELOGS.rst +++ b/CHANGELOGS.rst @@ -2,6 +2,14 @@ Change Logs =========== +0.5.4 +===== + +0.5.3 +===== + +* :pr:`139`: fix compilation issues on MacOSX + 0.5.2 ===== diff --git a/_doc/index.rst b/_doc/index.rst index ae12a2e..ec371cc 100644 --- a/_doc/index.rst +++ b/_doc/index.rst @@ -98,5 +98,5 @@ Source are available at `sdpython/mlinsights `_ * `0.5.3 <../v0.5.3/index.html>`_ -* `0.5.2 <../v0.5.2/index.html>`_ diff --git a/clean_build.sh b/clean_build.sh new file mode 100644 index 0000000..82ec4c5 --- /dev/null +++ b/clean_build.sh @@ -0,0 +1,10 @@ +rm dist -rf +rm build -rf +rm $(find . -name "*.so") +rm mlinsights/mlmodel/_piecewise_tree_regression_common.cpp +rm mlinsights/mlmodel/piecewise_tree_regression_criterion_fast.cpp +rm mlinsights/mlmodel/piecewise_tree_regression_criterion_linear.cpp +rm mlinsights/mlmodel/piecewise_tree_regression_criterion.cpp +rm mlinsights/mltree/_tree_digitize.cpp +rm mlinsights/_config.py +rm .build_path.txt diff --git a/mlinsights/__init__.py b/mlinsights/__init__.py index 932c211..f0e8245 100644 --- a/mlinsights/__init__.py +++ b/mlinsights/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.5.3" +__version__ = "0.5.4" __author__ = "Xavier Dupré" __github__ = "https://github.com/sdpython/mlinsights" __url__ = "https://sdpython.github.io/doc/dev/mlinsights/" diff --git a/pyproject.toml b/pyproject.toml index c3f83ca..e41c4be 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ license = {file = "LICENSE.txt"} name = "mlinsights" readme = "README.rst" requires-python = ">=3.10" -version = "0.5.3" +version = "0.5.4" [project.urls] homepage = "https://sdpython.github.io/doc/mlinsights/dev/"