-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump version 0.2.0 * add changelog; include meta files in build
- Loading branch information
Showing
3 changed files
with
26 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Release Changelog | ||
----------------- | ||
|
||
0.2.0 (2020-10-23) | ||
~~~~~~~~~~~~~~~~~~ | ||
|
||
* Fix bug in classifier to reorder probabilities properly using forest's ``class_values``. | ||
|
||
0.1.1 (2020-07-09) | ||
~~~~~~~~~~~~~~~~~~ | ||
|
||
* Unpin sklearn/numpy deps, drop Cython dependency, since building wheels. | ||
* Use numpy pyobjects to improve compilation. | ||
|
||
0.1.0 (2020-06-03) | ||
~~~~~~~~~~~~~~~~~~ | ||
|
||
* First release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,15 +33,20 @@ known_standard_library = ["setuptools"] | |
|
||
[tool.poetry] | ||
name = "skranger" | ||
version = "0.1.1" | ||
version = "0.2.0" | ||
description = "Python bindings for C++ ranger random forests" | ||
authors = ["Flynn <[email protected]>"] | ||
license = "GPL-3.0-or-later" | ||
readme = "README.rst" | ||
homepage = "https://github.com/crflynn/skranger" | ||
repository = "https://github.com/crflynn/skranger" | ||
documentation = "https://github.com/crflynn/skranger" | ||
include = ["skranger/ensemble/ranger/**/*"] | ||
include = [ | ||
"skranger/ensemble/ranger/**/*", | ||
"CHANGELOG.rst", | ||
"LICENSE.txt", | ||
"README.rst", | ||
] | ||
build = "build.py" | ||
keywords = ["random", "forest", "ranger", "machine", "learning"] | ||
classifiers = [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.1.1" | ||
__version__ = "0.2.0" |