Skip to content

Commit

Permalink
release v0.14.1 (#284)
Browse files Browse the repository at this point in the history
SDK:
- improvements to docstrings/error messages around large datasets

Viz:
- added support for passing errors out of the dashboard for hosts to work with

Testing:
- improved notebook tests
- removed deprecated test pipelines
- added pypi release pipeline (trying it out for this release)
  • Loading branch information
wamartin-aml authored Jul 13, 2020
1 parent 5da88c6 commit 820a359
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/interpret_community/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ def close_handler():
logger.removeHandler(handler)
atexit.register(close_handler)

__name__ = "interpret_community"
__name__ = 'interpret_community'
_major = '0'
_minor = '14'
_patch = '0'
_patch = '1'
__version__ = '{}.{}.{}'.format(_major, _minor, _patch)

0 comments on commit 820a359

Please sign in to comment.