Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Makefile updates #348

Merged
merged 4 commits into from
Feb 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -15,4 +15,4 @@ test:
poetry run pytest --slow -v

clean:
rm -r build dist ngboost.egg-info
rm -rf dist/*
5 changes: 5 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <avati@cs.stanford.edu>"]
readme = "README.md"
Expand Down
Loading