Skip to content

Commit

Permalink
Update packages. Remove debug prints.
Browse files Browse the repository at this point in the history
  • Loading branch information
mixxen committed Apr 5, 2019
1 parent a5cdb35 commit 6a90a29
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion finishline/grid_components.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ def Layout(children=None, layouts=None, cols=None, rowHeight=300, **kwargs):
def Card(children, title='Undefined', i=0, href=None, **kwargs):

t = html.A(title, href=href, target=title) if href is not None else title
print('card children', children)
if isinstance(children, dcc.Graph):
# note: don't put children in a div container wrapper, else plotly won't resize properly
c = [html.Div(t, className='fl-titlebar')] + [children]
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def readme():

configuration = {
'name' : 'finishline',
'version': '0.1.0',
'version': '0.2.0',
'description' : 'Framework for Building Beautiful and Functional Dashbords',
'long_description' : readme(),
'classifiers' : [
Expand All @@ -29,9 +29,9 @@ def readme():
'maintainer_email' : '[email protected]',
'license' : 'MIT',
'packages' : ['finishline'],
'install_requires': ['dash >= 0.28.0',
'dash-responsive-grid-layout >= 0.0.1',
'dash-building-blocks >= 0.0.2'],
'install_requires': ['dash >= 0.40.0',
'dash-responsive-grid-layout >= 0.2.0',
'dash-building-blocks >= 0.1.2'],
'ext_modules' : [],
'cmdclass' : {},
'test_suite' : '',
Expand Down

0 comments on commit 6a90a29

Please sign in to comment.