Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down
2 changes: 1 addition & 1 deletion dash_bio/Circos.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.')
Expand Down
2 changes: 1 addition & 1 deletion dash_bio/Ideogram.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.')
Expand Down
2 changes: 1 addition & 1 deletion dash_bio/package-info.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"name": "dash_bio", "version": "0.1.2", "author": "The Plotly Team <dashbio@plot.ly>"}
{"version": "0.1.3rc2", "name": "dash_bio", "author": "The Plotly Team <dashbio@plot.ly>"}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-bio",
"version": "0.1.2",
"version": "0.1.3rc2",
"description": "Dash components for bioinformatics",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'dash==0.40.0',
'dash>=0.40.0',
'pandas',
'plotly',
'scipy',
Expand Down