From fe494d4a838f728fc356d7b93b44089693566ffd Mon Sep 17 00:00:00 2001 From: chriddyp Date: Tue, 30 May 2017 13:07:08 -0400 Subject: [PATCH 1/3] Require a minimum version of `decorator`, fixes #721 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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', From 06894500c8dc88f8a93a0ba58a47a597b987511b Mon Sep 17 00:00:00 2001 From: chriddyp Date: Tue, 30 May 2017 13:11:30 -0400 Subject: [PATCH 2/3] v2.0.9 changelog --- CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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. From 949612aa5e7c7def7ad2cfa6d8a13153427287a2 Mon Sep 17 00:00:00 2001 From: chriddyp Date: Tue, 30 May 2017 13:11:51 -0400 Subject: [PATCH 3/3] bump version to 2.0.9 --- plotly/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'