diff --git a/CHANGELOG.md b/CHANGELOG.md index 1131e3244c8..f2e3a0d1030 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## [Unreleased] +## [2.0.9] - 2017-05-30 +### Fixed +- Fixes issue [https://github.com/plotly/plotly.py/issues/721](https://github.com/plotly/plotly.py/issues/721). There was an issue when running `import plotly` with old versions of the `decorator` package. We now require installations to use at least version `4.0.6` of the `decorator` package. See [https://github.com/micheles/decorator/blob/master/CHANGES.md](https://github.com/micheles/decorator/blob/master/CHANGES.md) for the `decorator` package changelog. + ### Added - 'sort' parameter to `FF.create_violin` to control whether violin plots are sorted alphabetically. diff --git a/plotly/version.py b/plotly/version.py index 2940e26c288..9d2551a59ce 100644 --- a/plotly/version.py +++ b/plotly/version.py @@ -1 +1 @@ -__version__ = '2.0.8' +__version__ = '2.0.9' diff --git a/setup.py b/setup.py index b0c326d5c30..0012d87d93b 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ def readme(): 'plotly/matplotlylib/mplexporter', 'plotly/matplotlylib/mplexporter/renderers'], package_data={'plotly': ['package_data/*']}, - install_requires=['decorator', + install_requires=['decorator>=4.0.6', 'nbformat>=4.2', 'pytz', 'requests',