Skip to content

Commit f625dae

Browse files
author
Marc-André Rivet
committed
- Loosen version requirements
- Bump dash-renderer to 1.3.0 - Bump dash to 1.10.0 - Changelog - Format
1 parent 2fcd6de commit f625dae

File tree

6 files changed

+14
-12
lines changed

6 files changed

+14
-12
lines changed

CHANGELOG.md

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

5-
## [Unreleased]
5+
## [1.10.0] - 2020-04-01
66
### Added
77
- [#1134](https://github.com/plotly/dash/pull/1134) Allow `dash.run_server()` host and port parameters to be set with environment variables HOST & PORT, respectively
88

dash-renderer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-renderer",
3-
"version": "1.2.4",
3+
"version": "1.3.0",
44
"description": "render dash components in react",
55
"main": "dash_renderer/dash_renderer.min.js",
66
"scripts": {

dash/dash.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -635,9 +635,9 @@ def _generate_scripts_html(self):
635635
)
636636

637637
def _generate_config_html(self):
638-
return (
639-
'<script id="_dash-config" type="application/json">{}</script>'
640-
).format(json.dumps(self._config()))
638+
return ('<script id="_dash-config" type="application/json">{}</script>').format(
639+
json.dumps(self._config())
640+
)
641641

642642
def _generate_renderer(self):
643643
return (

dash/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.9.1"
1+
__version__ = "1.10.0"

requires-install.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Flask>=1.0.2
22
flask-compress
33
plotly
4-
dash_renderer==1.2.4
5-
dash-core-components==1.8.1
6-
dash-html-components==1.0.2
7-
dash-table==4.6.1
4+
dash_renderer>=1.2.4
5+
dash-core-components>=1.8.1
6+
dash-html-components>=1.0.2
7+
dash-table>=4.6.1
88
future

tests/integration/renderer/test_persistence.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,9 @@ def set_out(val):
386386

387387
dash_duo.find_element("#persistence-val").send_keys("2")
388388
dash_duo.wait_for_text_to_equal("#out", "a")
389-
dash_duo.find_element("#persisted").send_keys(Keys.BACK_SPACE) # persist falsy value
389+
dash_duo.find_element("#persisted").send_keys(
390+
Keys.BACK_SPACE
391+
) # persist falsy value
390392
dash_duo.wait_for_text_to_equal("#out", "")
391393

392394
# alpaca not saved with falsy persistence
@@ -397,7 +399,7 @@ def set_out(val):
397399
dash_duo.find_element("#persistence-val").send_keys("s")
398400
dash_duo.wait_for_text_to_equal("#out", "anchovies")
399401
dash_duo.find_element("#persistence-val").send_keys("2")
400-
dash_duo.wait_for_text_to_equal('#out', "")
402+
dash_duo.wait_for_text_to_equal("#out", "")
401403

402404

403405
def test_rdps011_toggle_persistence2(dash_duo):

0 commit comments

Comments
 (0)