Skip to content

Commit d2c9a9c

Browse files
authored
Merge pull request #565 from plotly/version-lock
Version lock for the core components libraries
2 parents 0e5a52e + 28ed8f9 commit d2c9a9c

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

.circleci/requirements/dev-requirements-py37.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
dash_core_components>=0.40.2
2-
dash_html_components==0.12.0rc3
1+
dash_core_components>=0.43.0
2+
dash_html_components==0.13.4
33
dash-flow-example==0.0.3
44
dash-dangerously-set-inner-html
5-
git+git://github.com/plotly/dash-renderer@master#egg=dash_renderer
5+
dash_renderer==0.17.0
66
percy
77
selenium
88
mock

.circleci/requirements/dev-requirements.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
dash_core_components>=0.40.2
2-
dash_html_components>=0.12.0rc3
1+
dash_core_components>=0.43.0
2+
dash_html_components==0.13.4
33
dash_flow_example==0.0.3
44
dash-dangerously-set-inner-html
5-
git+git://github.com/plotly/dash-renderer@master#egg=dash_renderer
5+
dash_renderer==0.17.0
66
percy
77
selenium
88
mock

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
## Fixed
33
- Fixed collections.abc deprecation warning for python 3.8 [#563](https://github.com/plotly/dash/pull/563)
44

5+
## Changed
6+
- Added core libraries as version locked dependencies [#565](https://github.com/plotly/dash/pull/565)
7+
58
## [0.36.0] - 2019-01-25
69
## Removed
710
- Removed support for `Event` system. Use event properties instead, for example the `n_clicks` property instead of the `click` event, see [#531](https://github.com/plotly/dash/issues/531) for details. `dash_renderer` MUST be upgraded to >=0.17.0 together with this, and it is recommended to update `dash_core_components` to >=0.43.0 and `dash_html_components` to >=0.14.0. [#550](https://github.com/plotly/dash/pull/550)

setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@
2020
'Flask>=0.12',
2121
'flask-compress',
2222
'plotly',
23-
'dash_renderer',
23+
'dash_renderer==0.17.0',
24+
'dash-core-components==0.43.0',
25+
'dash-html-components==0.13.5',
26+
'dash-table==3.3.0'
2427
],
2528
entry_points={
2629
'console_scripts': [

0 commit comments

Comments
 (0)