Skip to content

Commit b5c28e1

Browse files
committed
Merge pull request plotly#70 from rmarren1/classes-with-3.7
Rebuild components with Python3.7 (remove `async` keyword).
1 parent b34554e commit b5c28e1

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

packages/dash-html-components/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
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+
## [0.13.2] - 2018-09-21
6+
### Fixed
7+
- Fixes Python3.7 incompatibility with `0.13.0` and `0.13.1`.
8+
9+
### Changed
10+
- Regenerated classes with Python3.7 to remove `async` keyword.
11+
512
## [0.13.1] - 2018-09-20
613
### Fixed
714
- Renamed `__init__.py` external_path to dash_html_components.min.js

packages/dash-html-components/dash_html_components/Script.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class Script(Component):
4545
4646
Available events: 'click'"""
4747
@_explicitize_args
48-
def __init__(self, children=None, id=Component.UNDEFINED, n_clicks=Component.UNDEFINED, n_clicks_timestamp=Component.UNDEFINED, key=Component.UNDEFINED, role=Component.UNDEFINED, async=Component.UNDEFINED, charSet=Component.UNDEFINED, crossOrigin=Component.UNDEFINED, defer=Component.UNDEFINED, integrity=Component.UNDEFINED, src=Component.UNDEFINED, type=Component.UNDEFINED, accessKey=Component.UNDEFINED, className=Component.UNDEFINED, contentEditable=Component.UNDEFINED, contextMenu=Component.UNDEFINED, dir=Component.UNDEFINED, draggable=Component.UNDEFINED, hidden=Component.UNDEFINED, lang=Component.UNDEFINED, spellCheck=Component.UNDEFINED, style=Component.UNDEFINED, tabIndex=Component.UNDEFINED, title=Component.UNDEFINED, **kwargs):
48+
def __init__(self, children=None, id=Component.UNDEFINED, n_clicks=Component.UNDEFINED, n_clicks_timestamp=Component.UNDEFINED, key=Component.UNDEFINED, role=Component.UNDEFINED, charSet=Component.UNDEFINED, crossOrigin=Component.UNDEFINED, defer=Component.UNDEFINED, integrity=Component.UNDEFINED, src=Component.UNDEFINED, type=Component.UNDEFINED, accessKey=Component.UNDEFINED, className=Component.UNDEFINED, contentEditable=Component.UNDEFINED, contextMenu=Component.UNDEFINED, dir=Component.UNDEFINED, draggable=Component.UNDEFINED, hidden=Component.UNDEFINED, lang=Component.UNDEFINED, spellCheck=Component.UNDEFINED, style=Component.UNDEFINED, tabIndex=Component.UNDEFINED, title=Component.UNDEFINED, **kwargs):
4949
self._prop_names = ['children', 'id', 'n_clicks', 'n_clicks_timestamp', 'key', 'role', 'data-*', 'aria-*', 'async', 'charSet', 'crossOrigin', 'defer', 'integrity', 'src', 'type', 'accessKey', 'className', 'contentEditable', 'contextMenu', 'dir', 'draggable', 'hidden', 'lang', 'spellCheck', 'style', 'tabIndex', 'title']
5050
self._type = 'Script'
5151
self._namespace = 'dash_html_components'
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.13.1'
1+
__version__ = '0.13.2'

packages/dash-html-components/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-html-components",
3-
"version": "0.13.1",
3+
"version": "0.13.2",
44
"description": "Vanilla HTML components for Dash",
55
"main": "lib/index.js",
66
"repository": {

0 commit comments

Comments
 (0)