File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66 "metadata" : {},
77 "outputs" : [],
88 "source" : [
9- " from streamz.dataframe import Random, DataFrame"
9+ " from streamz.dataframe import Random, DataFrame\n " ,
10+ " # this example requires hvplot\n " ,
11+ " import hvplot.streamz"
1012 ]
1113 },
1214 {
3840 " p = (DataFrame({'raw': sdf.x,\n " ,
3941 " 'smooth': sdf.x.rolling('100ms').mean(),\n " ,
4042 " 'very-smooth': sdf.x.rolling('500ms').mean()})\n " ,
41- " .plot(width=700)\n " ,
42- " )"
43+ " .hvplot(width=700)\n " ,
44+ " )\n " ,
45+ " p"
4346 ]
4447 },
4548 {
6669 "name" : " python" ,
6770 "nbconvert_exporter" : " python" ,
6871 "pygments_lexer" : " ipython3" ,
69- "version" : " 3.6.3 "
72+ "version" : " 3.7.6 "
7073 }
7174 },
7275 "nbformat" : 4 ,
Original file line number Diff line number Diff line change 99
1010
1111setup (name = 'streamz' ,
12- version = '0.5.4 ' ,
12+ version = '0.5.5 ' ,
1313 description = 'Streams' ,
1414 url = 'http://github.com/python-streamz/streamz/' ,
1515 maintainer = 'Matthew Rocklin' ,
1616 maintainer_email = 'mrocklin@gmail.com' ,
1717 license = 'BSD' ,
1818 keywords = 'streams' ,
1919 packages = packages + tests ,
20- python_requires = '>=3.5 ' ,
20+ python_requires = '>=3.6 ' ,
2121 long_description = (open ('README.rst' ).read () if exists ('README.rst' )
2222 else '' ),
2323 install_requires = list (open ('requirements.txt' ).read ().strip ().split ('\n ' )),
Original file line number Diff line number Diff line change 88except ImportError :
99 pass
1010
11- __version__ = '0.5.4 '
11+ __version__ = '0.5.5 '
You can’t perform that action at this time.
0 commit comments