Skip to content

Commit 38c2245

Browse files
authored
Makefile updates (#348)
Makefile updates and adding support for FixedNormalMean
1 parent 1cd58b6 commit 38c2245

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package:
66
poetry build
77

88
publish: package
9-
poetry publish
9+
source .env && poetry config pypi-token.pypi $$PYPI_TOKEN && poetry publish
1010

1111
lint:
1212
poetry run pre-commit run --hook-stage manual --all-files
@@ -15,4 +15,4 @@ test:
1515
poetry run pytest --slow -v
1616

1717
clean:
18-
rm -r build dist ngboost.egg-info
18+
rm -rf dist/*

RELEASE_NOTES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# RELEASE NOTES
22

3+
## Version 0.5.1
4+
5+
* Adds support for NormalFixedMean distribution
6+
* Updates to makefile for easier publishing
7+
38
## Version 0.5.0
49

510
* Drops support for python 3.7 and 3.8

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "ngboost"
3-
version = "0.5.0dev"
3+
version = "0.5.1dev"
44
description = "Library for probabilistic predictions via gradient boosting."
55
authors = ["Stanford ML Group <avati@cs.stanford.edu>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)