Skip to content

Commit 004456e

Browse files
authored
Merge pull request #762 from plotly/chriddyp-patch-1
Require a minimum version of `decorator`, fixes #721
2 parents 077fc40 + 949612a commit 004456e

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Diff for: CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5-
## [Unreleased]
5+
## [2.0.9] - 2017-05-30
6+
### Fixed
7+
- 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.
8+
69
### Added
710
- 'sort' parameter to `FF.create_violin` to control whether violin plots are sorted alphabetically.
811

Diff for: plotly/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.0.8'
1+
__version__ = '2.0.9'

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def readme():
4646
'plotly/matplotlylib/mplexporter',
4747
'plotly/matplotlylib/mplexporter/renderers'],
4848
package_data={'plotly': ['package_data/*']},
49-
install_requires=['decorator',
49+
install_requires=['decorator>=4.0.6',
5050
'nbformat>=4.2',
5151
'pytz',
5252
'requests',

0 commit comments

Comments
 (0)