From 38c2245c400a69b8885e08c63a38dcf4224267cc Mon Sep 17 00:00:00 2001 From: Ryan Wolbeck <41489316+ryan-wolbeck@users.noreply.github.com> Date: Tue, 20 Feb 2024 14:42:34 -0600 Subject: [PATCH] Makefile updates (#348) Makefile updates and adding support for FixedNormalMean --- Makefile | 4 ++-- RELEASE_NOTES.md | 5 +++++ pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 07a7933..56d2a1b 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ package: poetry build publish: package - poetry publish + source .env && poetry config pypi-token.pypi $$PYPI_TOKEN && poetry publish lint: poetry run pre-commit run --hook-stage manual --all-files @@ -15,4 +15,4 @@ test: poetry run pytest --slow -v clean: - rm -r build dist ngboost.egg-info + rm -rf dist/* diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 2986184..c462ef9 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,5 +1,10 @@ # RELEASE NOTES +## Version 0.5.1 + +* Adds support for NormalFixedMean distribution +* Updates to makefile for easier publishing + ## Version 0.5.0 * Drops support for python 3.7 and 3.8 diff --git a/pyproject.toml b/pyproject.toml index 3ad6616..f2092e0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ngboost" -version = "0.5.0dev" +version = "0.5.1dev" description = "Library for probabilistic predictions via gradient boosting." authors = ["Stanford ML Group "] readme = "README.md"