Skip to content

Commit 8b1d902

Browse files
committed
fix changelog conflict
2 parents 8de5acc + 07294e6 commit 8b1d902

File tree

4 files changed

+13
-17
lines changed

4 files changed

+13
-17
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
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-
## [2.3.0] - 2018-01-19
5+
## [2.3.0] - 2018-01-22
6+
### Fixed
7+
- Merged [pull request](https://github.com/plotly/plotly.py/commit/a226e07393c158e01c34c050aaf492da9d77679a) that fixes `GraphWidget` for IPython > v6
68
### Updated
79
- Updated `plotly.min.js` to version 1.33.0.
810
- New plot types include a `violin` trace type.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# plotly.py
22

3-
> 📢 Announcement!
4-
> Seats are still available for a 2 day, Dash master class in NYC, November 18-19.
5-
> [Registration here](https://plotcon.plot.ly/workshops) 🎚 📈 🗽
3+
> 📢 Announcement!
4+
> Registration is open for a 2 day, Dash master class in Montreal, February 17-18.
5+
> [Register online here](https://plotcon.plot.ly/workshops) 🎚📈 🇨🇦
66
77
***
88

plotly/package_data/graphWidget.js

Lines changed: 4 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plotly/widgets/graph_widget.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
from requests.compat import json as _json
1010

1111
# TODO: protected imports?
12-
from IPython.html import widgets
13-
from IPython.utils.traitlets import Unicode
12+
import ipywidgets as widgets
13+
from traitlets import Unicode
1414
from IPython.display import Javascript, display
1515

1616
import plotly.plotly.plotly as py
@@ -33,6 +33,7 @@ class GraphWidget(widgets.DOMWidget):
3333
Notebooks.
3434
"""
3535
_view_name = Unicode('GraphView', sync=True)
36+
_view_module = Unicode('graphWidget', sync=True)
3637
_message = Unicode(sync=True)
3738
_graph_url = Unicode(sync=True)
3839
_new_url = Unicode(sync=True)

0 commit comments

Comments
 (0)