File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 6
6
poetry build
7
7
8
8
publish : package
9
- poetry publish
9
+ source .env && poetry config pypi-token.pypi $$ PYPI_TOKEN && poetry publish
10
10
11
11
lint :
12
12
poetry run pre-commit run --hook-stage manual --all-files
15
15
poetry run pytest --slow -v
16
16
17
17
clean :
18
- rm -r build dist ngboost.egg-info
18
+ rm -rf dist/ *
Original file line number Diff line number Diff line change 1
1
# RELEASE NOTES
2
2
3
+ ## Version 0.5.1
4
+
5
+ * Adds support for NormalFixedMean distribution
6
+ * Updates to makefile for easier publishing
7
+
3
8
## Version 0.5.0
4
9
5
10
* Drops support for python 3.7 and 3.8
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " ngboost"
3
- version = " 0.5.0dev "
3
+ version = " 0.5.1dev "
4
4
description = " Library for probabilistic predictions via gradient boosting."
5
5
authors = [" Stanford ML Group <avati@cs.stanford.edu>" ]
6
6
readme = " README.md"
You can’t perform that action at this time.
0 commit comments