Skip to content

Commit

Permalink
bump 0.3.1 (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
crflynn committed Dec 5, 2020
1 parent 8f5f7f1 commit 902f6a3
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 35 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
@@ -1,6 +1,11 @@
Release Changelog
-----------------

0.3.1 (2020-12-05)
~~~~~~~~~~~~~~~~~~

* Fixed a bug with incorrect output for quantile regression

0.3.0 (2020-10-28)
~~~~~~~~~~~~~~~~~~

Expand Down
67 changes: 33 additions & 34 deletions pyproject.toml
@@ -1,39 +1,6 @@
[tool.black]
line-length = 120
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.circleci
| \.git
| \.github
| \.hg
| \.mypy_cache
| \.pytest_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
)
'''

[tool.isort]
force_single_line = true
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 120
known_standard_library = ["setuptools"]

[tool.poetry]
name = "skranger"
version = "0.3.0"
version = "0.3.1"
description = "Python bindings for C++ ranger random forests"
authors = ["Flynn <crf204@gmail.com>"]
license = "GPL-3.0-or-later"
Expand Down Expand Up @@ -81,3 +48,35 @@ matplotlib = "^3.3.2"
requires = ["poetry>=0.12", "cython", "numpy"]
build-backend = "poetry.masonry.api"

[tool.black]
line-length = 120
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.circleci
| \.git
| \.github
| \.hg
| \.mypy_cache
| \.pytest_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
)
'''

[tool.isort]
force_single_line = true
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 120
known_standard_library = ["setuptools"]
2 changes: 1 addition & 1 deletion skranger/_version.py
@@ -1 +1 @@
__version__ = "0.3.0"
__version__ = "0.3.1"

0 comments on commit 902f6a3

Please sign in to comment.