Skip to content

Commit

Permalink
Merge pull request #324 from TeamHG-Memex/0.9.x
Browse files Browse the repository at this point in the history
Prepare 0.9.0 release
  • Loading branch information
kmike authored Jul 5, 2019
2 parents 716a4d7 + 9c03b0c commit 3ef216d
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changelog
=========

0.9.0 (2019-07-05)
------------------

* CatBoost support: show feature importances of CatBoostClassifier,
CatBoostRegressor and catboost.CatBoost.
* Test fixes: fixes for scikit-learn 0.21+, use xenial base on Travis
* Catch exceptions from improperly installed LightGBM

0.8.2 (2019-04-04)
------------------

Expand Down
15 changes: 15 additions & 0 deletions docs/source/contribute.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,20 @@ from source checkout.

We like high test coverage and mypy_ type annotations.

Making releases
---------------

Note: releases are made from master by eli5 maintainers.
When contributing a pull request, please do not update release notes
or package version.

To make a new release:

* Write a summary of changes to CHANGES.rst
* Bump version in ``eli5/__init__.py``
* Make a release on PyPI using twine_
* Tag a commit in git and push it

.. _tox: https://tox.readthedocs.io/en/latest/
.. _mypy: https://github.com/python/mypy
.. _twine: https://pypi.org/project/twine/
4 changes: 2 additions & 2 deletions eli5/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from __future__ import absolute_import

__version__ = '0.8.2'
__version__ = '0.9.0'

from .formatters import (
format_as_html,
Expand Down Expand Up @@ -78,4 +78,4 @@
)
except ImportError:
# catboost is not available
pass
pass

0 comments on commit 3ef216d

Please sign in to comment.