From 3163f882f584c8eef758aea5ea3a1c7cb20a5330 Mon Sep 17 00:00:00 2001 From: Chris Parmer Date: Mon, 15 Jul 2019 09:20:52 -0500 Subject: [PATCH 1/8] Allow any version of Dash --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 59794f201..5330ca8d2 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ long_description=long_description, long_description_content_type='text/markdown', install_requires=[ - 'dash==0.40.0', + 'dash', 'pandas', 'plotly', 'scipy', From ee18d40069563472826f3ec1bb8d219b549306ea Mon Sep 17 00:00:00 2001 From: Chris Parmer Date: Mon, 15 Jul 2019 09:23:34 -0500 Subject: [PATCH 2/8] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5330ca8d2..a6f61dc56 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ long_description=long_description, long_description_content_type='text/markdown', install_requires=[ - 'dash', + 'dash>=0.40.0', 'pandas', 'plotly', 'scipy', From d3993ea5f8a66839ec894ef7f6ca37eb641f4993 Mon Sep 17 00:00:00 2001 From: Shammamah Hossain Date: Mon, 15 Jul 2019 10:59:23 -0400 Subject: [PATCH 3/8] Lock Dash version for testing. --- tests/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/requirements.txt b/tests/requirements.txt index dfd55d136..bc1201c92 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -3,6 +3,7 @@ # Additional packages needed to run the tests. chromedriver-binary==2.45.0 +dash==0.40.0 flake8==3.6.0 ipdb==0.11 percy==2.0.1 From c09c312eb048c94b086a5f5d8a06dfb0545c0cde Mon Sep 17 00:00:00 2001 From: Shammamah Hossain Date: Mon, 15 Jul 2019 10:59:33 -0400 Subject: [PATCH 4/8] Update version. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 82620ef9c..c26b93959 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dash-bio", - "version": "0.1.2", + "version": "0.1.3rc2", "description": "Dash components for bioinformatics", "repository": { "type": "git", From 8cdb92d27b92698e5098526b1682bfb13e9bc5fc Mon Sep 17 00:00:00 2001 From: Shammamah Hossain Date: Mon, 15 Jul 2019 10:59:43 -0400 Subject: [PATCH 5/8] Add auto-generated files. --- dash_bio/Circos.py | 2 +- dash_bio/Ideogram.py | 2 +- dash_bio/package-info.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dash_bio/Circos.py b/dash_bio/Circos.py index 47e3852b9..b30528f64 100644 --- a/dash_bio/Circos.py +++ b/dash_bio/Circos.py @@ -52,7 +52,7 @@ def __init__(self, enableDownloadSVG=Component.UNDEFINED, enableZoomPan=Componen _locals.update(kwargs) # For wildcard attrs args = {k: _locals[k] for k in _explicit_args if k != 'children'} - for k in ['layout']: + for k in [u'layout']: if k not in args: raise TypeError( 'Required argument `' + k + '` was not specified.') diff --git a/dash_bio/Ideogram.py b/dash_bio/Ideogram.py index c970f4c0b..4eb79c503 100644 --- a/dash_bio/Ideogram.py +++ b/dash_bio/Ideogram.py @@ -160,7 +160,7 @@ def __init__(self, id=Component.REQUIRED, style=Component.UNDEFINED, className=C _locals.update(kwargs) # For wildcard attrs args = {k: _locals[k] for k in _explicit_args if k != 'children'} - for k in ['id']: + for k in [u'id']: if k not in args: raise TypeError( 'Required argument `' + k + '` was not specified.') diff --git a/dash_bio/package-info.json b/dash_bio/package-info.json index 195cbc8e1..be4525ae9 100644 --- a/dash_bio/package-info.json +++ b/dash_bio/package-info.json @@ -1 +1 @@ -{"name": "dash_bio", "version": "0.1.2", "author": "The Plotly Team "} \ No newline at end of file +{"version": "0.1.3rc2", "name": "dash_bio", "author": "The Plotly Team "} \ No newline at end of file From f0b9671d234ce0748446b53303fd7125a70e7ed1 Mon Sep 17 00:00:00 2001 From: Shammamah Hossain Date: Mon, 15 Jul 2019 10:59:54 -0400 Subject: [PATCH 6/8] Update version in requirements. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 0ea53d67b..10b147ebf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ # pip install -r requirements.txt cython>=0.19 dash==0.40.0 -dash-bio==0.1.2 +dash-bio==0.1.3rc2 dash-bio-utils==0.0.3rc3 dash-daq==0.1.4 gunicorn==19.9.0 From 4a0cf69a04b353beed0732d512b45f5532ec2a5e Mon Sep 17 00:00:00 2001 From: Shammamah Hossain Date: Mon, 15 Jul 2019 14:51:19 -0400 Subject: [PATCH 7/8] Update Dash version used to generate Python bundle in CI node job. --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 180782195..1495c260d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -43,7 +43,7 @@ jobs: python -m venv venv . venv/bin/activate pip install --upgrade pip - pip install dash==0.40.0 + pip install dash>=0.40.0 npm run build:py From 2dd952efdbf95395979d9e9d2ce8a24dd8505586 Mon Sep 17 00:00:00 2001 From: Marianne Corvellec Date: Tue, 16 Jul 2019 09:23:46 +0200 Subject: [PATCH 8/8] Revert "Lock Dash version for testing." This reverts commit d3993ea5f8a66839ec894ef7f6ca37eb641f4993. --- tests/requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/requirements.txt b/tests/requirements.txt index bc1201c92..dfd55d136 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -3,7 +3,6 @@ # Additional packages needed to run the tests. chromedriver-binary==2.45.0 -dash==0.40.0 flake8==3.6.0 ipdb==0.11 percy==2.0.1