Skip to content

Commit 6a90a29

Browse files
committed
Update packages. Remove debug prints.
1 parent a5cdb35 commit 6a90a29

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

finishline/grid_components.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ def Layout(children=None, layouts=None, cols=None, rowHeight=300, **kwargs):
4141
def Card(children, title='Undefined', i=0, href=None, **kwargs):
4242

4343
t = html.A(title, href=href, target=title) if href is not None else title
44-
print('card children', children)
4544
if isinstance(children, dcc.Graph):
4645
# note: don't put children in a div container wrapper, else plotly won't resize properly
4746
c = [html.Div(t, className='fl-titlebar')] + [children]

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def readme():
66

77
configuration = {
88
'name' : 'finishline',
9-
'version': '0.1.0',
9+
'version': '0.2.0',
1010
'description' : 'Framework for Building Beautiful and Functional Dashbords',
1111
'long_description' : readme(),
1212
'classifiers' : [
@@ -29,9 +29,9 @@ def readme():
2929
'maintainer_email' : '[email protected]',
3030
'license' : 'MIT',
3131
'packages' : ['finishline'],
32-
'install_requires': ['dash >= 0.28.0',
33-
'dash-responsive-grid-layout >= 0.0.1',
34-
'dash-building-blocks >= 0.0.2'],
32+
'install_requires': ['dash >= 0.40.0',
33+
'dash-responsive-grid-layout >= 0.2.0',
34+
'dash-building-blocks >= 0.1.2'],
3535
'ext_modules' : [],
3636
'cmdclass' : {},
3737
'test_suite' : '',

0 commit comments

Comments
 (0)