Hello community,

here is the log from the commit of package python-cufflinks for 
openSUSE:Factory checked in at 2019-07-23 22:37:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-cufflinks (Old)
 and      /work/SRC/openSUSE:Factory/.python-cufflinks.new.4126 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-cufflinks"

Tue Jul 23 22:37:07 2019 rev:3 rq:717726 version:0.16

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-cufflinks/python-cufflinks.changes        
2019-06-04 12:13:05.103807143 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-cufflinks.new.4126/python-cufflinks.changes  
    2019-07-23 22:37:29.278970013 +0200
@@ -1,0 +2,7 @@
+Tue Jul 23 01:14:08 UTC 2019 - Todd R <toddrme2...@gmail.com>
+
+- Update to version 0.16
+  * Fix issue with multiple y-axis datapoints
+  * make the theme parameter case insensitive.
+
+-------------------------------------------------------------------

Old:
----
  cufflinks-0.15.tar.gz

New:
----
  cufflinks-0.16.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-cufflinks.spec ++++++
--- /var/tmp/diff_new_pack.zBGOAJ/_old  2019-07-23 22:37:29.786969908 +0200
+++ /var/tmp/diff_new_pack.zBGOAJ/_new  2019-07-23 22:37:29.786969908 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-cufflinks
-Version:        0.15
+Version:        0.16
 Release:        0
 Summary:        Productivity Tools for Plotly + Pandas
 License:        MIT

++++++ cufflinks-0.15.tar.gz -> cufflinks-0.16.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cufflinks-0.15/PKG-INFO new/cufflinks-0.16/PKG-INFO
--- old/cufflinks-0.15/PKG-INFO 2019-04-03 10:48:00.000000000 +0200
+++ new/cufflinks-0.16/PKG-INFO 2019-06-28 18:24:25.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: cufflinks
-Version: 0.15
+Version: 0.16
 Summary: Productivity Tools for Plotly + Pandas
 Home-page: https://github.com/santosjorge/cufflinks
 Author: Jorge Santos
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cufflinks-0.15/cufflinks/plotlytools.py 
new/cufflinks-0.16/cufflinks/plotlytools.py
--- old/cufflinks-0.15/cufflinks/plotlytools.py 2019-03-20 23:26:06.000000000 
+0100
+++ new/cufflinks-0.16/cufflinks/plotlytools.py 2019-06-15 15:00:08.000000000 
+0200
@@ -823,10 +823,9 @@
                                if x:
                                        df=df.set_index(x)
                                if y and secondary_y:
-                                       if isinstance(secondary_y, str):
-                                               df=df[[y, secondary_y]]
-                                       else:
-                                               df=df[[y] + secondary_y]
+                                       _y = [y] if not isinstance(y, list) 
else y
+                                       _secondary_y = [secondary_y] if not 
isinstance(secondary_y, list) else secondary_y
+                                       df=df[_y + _secondary_y]
                                elif y:
                                        df=df[y]
                                if kind=='area':
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cufflinks-0.15/cufflinks/tools.py 
new/cufflinks-0.16/cufflinks/tools.py
--- old/cufflinks-0.15/cufflinks/tools.py       2019-03-07 20:41:23.000000000 
+0100
+++ new/cufflinks-0.16/cufflinks/tools.py       2019-04-29 20:21:29.000000000 
+0200
@@ -5,6 +5,7 @@
 import plotly.offline as py_offline
 import plotly.plotly as py
 from plotly.graph_objs import Figure, Scatter, Line
+from plotly.tools import make_subplots
 # from plotly.graph_objs.layout import XAxis, YAxis
 
 from . import auth, ta
@@ -891,7 +892,7 @@
                theme = auth.get_config_file()['theme']
 
        layout= base_layout if base_layout else 
getLayout(theme,**check_kwargs(kwargs,__LAYOUT_AXIS))
-       
sp=py.plotly.tools.make_subplots(rows=rows,cols=cols,shared_xaxes=shared_xaxes,
+       sp=make_subplots(rows=rows,cols=cols,shared_xaxes=shared_xaxes,
                                                                                
   shared_yaxes=shared_yaxes,print_grid=False,
                                                                                
        start_cell=start_cell,**kwargs)
        sp, grid_ref = sp.to_dict(), sp._grid_ref
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cufflinks-0.15/cufflinks/version.py 
new/cufflinks-0.16/cufflinks/version.py
--- old/cufflinks-0.15/cufflinks/version.py     2019-04-02 20:37:19.000000000 
+0200
+++ new/cufflinks-0.16/cufflinks/version.py     2019-06-28 18:20:06.000000000 
+0200
@@ -1 +1 @@
-__version__ = "0.15"
+__version__ = "0.16"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cufflinks-0.15/cufflinks.egg-info/PKG-INFO 
new/cufflinks-0.16/cufflinks.egg-info/PKG-INFO
--- old/cufflinks-0.15/cufflinks.egg-info/PKG-INFO      2019-04-03 
10:47:59.000000000 +0200
+++ new/cufflinks-0.16/cufflinks.egg-info/PKG-INFO      2019-06-28 
18:24:25.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: cufflinks
-Version: 0.15
+Version: 0.16
 Summary: Productivity Tools for Plotly + Pandas
 Home-page: https://github.com/santosjorge/cufflinks
 Author: Jorge Santos
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cufflinks-0.15/cufflinks.egg-info/requires.txt 
new/cufflinks-0.16/cufflinks.egg-info/requires.txt
--- old/cufflinks-0.15/cufflinks.egg-info/requires.txt  2019-04-03 
10:47:59.000000000 +0200
+++ new/cufflinks-0.16/cufflinks.egg-info/requires.txt  2019-06-28 
18:24:25.000000000 +0200
@@ -1,6 +1,6 @@
 numpy>=1.9.2
 pandas>=0.19.2
-plotly>=3.0.0
+plotly<4.0.0a0,>=3.0.0
 six>=1.9.0
 colorlover>=0.2.1
 setuptools>=34.4.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cufflinks-0.15/requirements.txt 
new/cufflinks-0.16/requirements.txt
--- old/cufflinks-0.15/requirements.txt 2019-04-02 20:37:19.000000000 +0200
+++ new/cufflinks-0.16/requirements.txt 2019-04-29 20:21:29.000000000 +0200
@@ -1,6 +1,6 @@
 numpy>=1.9.2
 pandas>=0.19.2
-plotly>=3.0.0
+plotly>=3.0.0,<4.0.0a0
 six>=1.9.0
 colorlover>=0.2.1
 setuptools>=34.4.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cufflinks-0.15/setup.py new/cufflinks-0.16/setup.py
--- old/cufflinks-0.15/setup.py 2019-04-02 20:37:19.000000000 +0200
+++ new/cufflinks-0.16/setup.py 2019-06-28 18:21:30.000000000 +0200
@@ -8,7 +8,7 @@
 
 setup(
     name='cufflinks',
-    version='0.15',
+    version='0.16',
     description='Productivity Tools for Plotly + Pandas',
     author='Jorge Santos',
     author_email='santos.jo...@gmail.com',


Reply via email to