commit python3-pandas for openSUSE:Factory

2017-03-03 Thread root
Hello community,

here is the log from the commit of package python3-pandas for openSUSE:Factory 
checked in at 2017-03-03 17:47:08

Comparing /work/SRC/openSUSE:Factory/python3-pandas (Old)
 and  /work/SRC/openSUSE:Factory/.python3-pandas.new (New)


Package is "python3-pandas"

Fri Mar  3 17:47:08 2017 rev:19 rq:461445 version:0.19.2

Changes:

--- /work/SRC/openSUSE:Factory/python3-pandas/python3-pandas-doc.changes
2017-01-09 11:01:48.508140590 +0100
+++ /work/SRC/openSUSE:Factory/.python3-pandas.new/python3-pandas-doc.changes   
2017-03-03 17:48:02.131452279 +0100
@@ -1,0 +2,5 @@
+Wed Mar  1 15:45:44 UTC 2017 - toddrme2...@gmail.com
+
+- Fix doc building
+
+---



Other differences:
--
++ python3-pandas-doc.spec ++
--- /var/tmp/diff_new_pack.JmOCOH/_old  2017-03-03 17:48:03.683233127 +0100
+++ /var/tmp/diff_new_pack.JmOCOH/_new  2017-03-03 17:48:03.687232562 +0100
@@ -24,7 +24,20 @@
 Group:  Documentation/HTML
 Url:http://pandas.pydata.org/
 Source0:
https://files.pythonhosted.org/packages/source/p/pandas/pandas-%{version}.tar.gz
+BuildRequires:  gcc-c++
+BuildRequires:  python3-Cython
 BuildRequires:  python3-Sphinx
+BuildRequires:  python3-dateutil
+BuildRequires:  python3-devel
+BuildRequires:  python3-matplotlib
+BuildRequires:  python3-numpy-devel >= 1.7.0
+BuildRequires:  python3-pytz
+BuildRequires:  python3-scipy
+BuildRequires:  python3-setuptools
+BuildRequires:  python3-jupyter_client
+BuildRequires:  python3-jupyter_ipykernel
+BuildRequires:  python3-jupyter_nbconvert
+BuildRequires:  python3-jupyter_nbformat
 BuildRequires:  python3-pandas = %{version}
 Recommends: python3-pandas = %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -37,7 +50,7 @@
 %setup -q -n pandas-%{version}
 
 %build
-# Not needed
+python3 setup.py build_ext --inplace
 
 %install
 pushd doc




commit python3-pandas for openSUSE:Factory

2016-11-07 Thread h_root
Hello community,

here is the log from the commit of package python3-pandas for openSUSE:Factory 
checked in at 2016-11-07 10:08:18

Comparing /work/SRC/openSUSE:Factory/python3-pandas (Old)
 and  /work/SRC/openSUSE:Factory/.python3-pandas.new (New)


Package is "python3-pandas"

Changes:

--- /work/SRC/openSUSE:Factory/python3-pandas/python3-pandas-doc.changes
2016-10-13 11:31:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-pandas.new/python3-pandas-doc.changes   
2016-11-07 10:08:19.0 +0100
@@ -1,0 +2,76 @@
+Sat Nov  5 17:42:27 UTC 2016 - a...@gmx.de
+
+- update to version 0.19.1:
+  * Performance Improvements
++ Fixed performance regression in factorization of Period data
+  (GH14338)
++ Fixed performance regression in Series.asof(where) when where is
+  a scalar (GH14461)
++ Improved performance in DataFrame.asof(where) when where is a
+  scalar (GH14461)
++ Improved performance in .to_json() when lines=True (GH14408)
++ Improved performance in certain types of loc indexing with a
+  MultiIndex (GH14551).
+  * Bug Fixes
++ Source installs from PyPI will now again work without cython
+  installed, as in previous versions (GH14204)
++ Compat with Cython 0.25 for building (GH14496)
++ Fixed regression where user-provided file handles were closed in
+  read_csv (c engine) (GH14418).
++ Fixed regression in DataFrame.quantile when missing values where
+  present in some columns (GH14357).
++ Fixed regression in Index.difference where the freq of a
+  DatetimeIndex was incorrectly set (GH14323)
++ Added back pandas.core.common.array_equivalent with a
+  deprecation warning (GH14555).
++ Bug in pd.read_csv for the C engine in which quotation marks
+  were improperly parsed in skipped rows (GH14459)
++ Bug in pd.read_csv for Python 2.x in which Unicode quote
+  characters were no longer being respected (GH14477)
++ Fixed regression in Index.append when categorical indices were
+  appended (GH14545).
++ Fixed regression in pd.DataFrame where constructor fails when
+  given dict with None value (GH14381)
++ Fixed regression in DatetimeIndex._maybe_cast_slice_bound when
+  index is empty (GH14354).
++ Bug in localizing an ambiguous timezone when a boolean is passed
+  (GH14402)
++ Bug in TimedeltaIndex addition with a Datetime-like object where
+  addition overflow in the negative direction was not being caught
+  (GH14068, GH14453)
++ Bug in string indexing against data with object Index may raise
+  AttributeError (GH14424)
++ Corrrecly raise ValueError on empty input to pd.eval() and
+  df.query() (GH13139)
++ Bug in RangeIndex.intersection when result is a empty set
+  (GH14364).
++ Bug in groupby-transform broadcasting that could cause incorrect
+  dtype coercion (GH14457)
++ Bug in Series.__setitem__ which allowed mutating read-only
+  arrays (GH14359).
++ Bug in DataFrame.insert where multiple calls with duplicate
+  columns can fail (GH14291)
++ pd.merge() will raise ValueError with non-boolean parameters in
+  passed boolean type arguments (GH14434)
++ Bug in Timestamp where dates very near the minimum (1677-09)
+  could underflow on creation (GH14415)
++ Bug in pd.concat where names of the keys were not propagated to
+  the resulting MultiIndex (GH14252)
++ Bug in pd.concat where axis cannot take string parameters 'rows'
+  or 'columns' (GH14369)
++ Bug in pd.concat with dataframes heterogeneous in length and
+  tuple keys (GH14438)
++ Bug in MultiIndex.set_levels where illegal level values were
+  still set after raising an error (GH13754)
++ Bug in DataFrame.to_json where lines=True and a value contained
+  a } character (GH14391)
++ Bug in df.groupby causing an AttributeError when grouping a
+  single index frame by a column and the index level
+  (:issue`14327`)
++ Bug in df.groupby where TypeError raised when
+  pd.Grouper(key=...) is passed in a list (GH14334)
++ Bug in pd.pivot_table may raise TypeError or ValueError when
+  index or columns is not scalar and values is not specified
+  (GH14380)
+
+---
python3-pandas.changes: same change

Old:

  pandas-0.19.0.tar.gz

New:

  pandas-0.19.1.tar.gz



Other differences:
--
++ python3-pandas-doc.spec ++
--- /var/tmp/diff_new_pack.fRGCNP/_old  2016-11-07 10:08:20.0 +0100
+++ /var/tmp/diff_new_pack.fRGCNP/_new  2016-11-07 10:08:20.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python3-pandas-doc
-Version:0.19.0

commit python3-pandas for openSUSE:Factory

2016-10-13 Thread h_root
Hello community,

here is the log from the commit of package python3-pandas for openSUSE:Factory 
checked in at 2016-10-13 11:31:58

Comparing /work/SRC/openSUSE:Factory/python3-pandas (Old)
 and  /work/SRC/openSUSE:Factory/.python3-pandas.new (New)


Package is "python3-pandas"

Changes:

--- /work/SRC/openSUSE:Factory/python3-pandas/python3-pandas-doc.changes
2016-06-02 09:38:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-pandas.new/python3-pandas-doc.changes   
2016-10-13 11:31:58.0 +0200
@@ -1,0 +2,23 @@
+Sun Oct  2 16:08:50 UTC 2016 - a...@gmx.de
+
+- update to version 0.19.0:
+  (long changelog, see 
http://pandas.pydata.org/pandas-docs/stable/whatsnew.html#v0-19-0-october-2-2016)
+  * Highlights include:
++ merge_asof() for asof-style time-series joining
++ .rolling() is now time-series aware
++ read_csv() now supports parsing Categorical data
++ A function union_categorical() has been added for combining
+  categoricals
++ PeriodIndex now has its own period dtype, and changed to be more
+  consistent with other Index classes
++ Sparse data structures gained enhanced support of int and bool
+  dtypes
++ Comparison operations with Series no longer ignores the index,
+  see here for an overview of the API changes.
++ Introduction of a pandas development API for utility functions
++ Deprecation of Panel4D and PanelND. We recommend to represent
+  these types of n-dimensional data with the xarray package.
++ Removal of the previously deprecated modules pandas.io.data,
+  pandas.io.wb, pandas.tools.rplot.
+
+---
--- /work/SRC/openSUSE:Factory/python3-pandas/python3-pandas.changes
2016-06-02 09:38:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-pandas.new/python3-pandas.changes   
2016-10-13 11:31:58.0 +0200
@@ -1,0 +2,26 @@
+Sun Oct  2 16:08:50 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * require python3-Cython
+
+- update to version 0.19.0:
+  (long changelog, see 
http://pandas.pydata.org/pandas-docs/stable/whatsnew.html#v0-19-0-october-2-2016)
+  * Highlights include:
++ merge_asof() for asof-style time-series joining
++ .rolling() is now time-series aware
++ read_csv() now supports parsing Categorical data
++ A function union_categorical() has been added for combining
+  categoricals
++ PeriodIndex now has its own period dtype, and changed to be more
+  consistent with other Index classes
++ Sparse data structures gained enhanced support of int and bool
+  dtypes
++ Comparison operations with Series no longer ignores the index,
+  see here for an overview of the API changes.
++ Introduction of a pandas development API for utility functions
++ Deprecation of Panel4D and PanelND. We recommend to represent
+  these types of n-dimensional data with the xarray package.
++ Removal of the previously deprecated modules pandas.io.data,
+  pandas.io.wb, pandas.tools.rplot.
+
+---
@@ -29 +54,0 @@
-

Old:

  pandas-0.18.1.tar.gz

New:

  pandas-0.19.0.tar.gz



Other differences:
--
++ python3-pandas-doc.spec ++
--- /var/tmp/diff_new_pack.bQkDmc/_old  2016-10-13 11:32:00.0 +0200
+++ /var/tmp/diff_new_pack.bQkDmc/_new  2016-10-13 11:32:00.0 +0200
@@ -17,15 +17,15 @@
 
 
 Name:   python3-pandas-doc
-Version:0.18.1
+Version:0.19.0
 Release:0
 Summary:Documentation for python3-pandas
 License:BSD-3-Clause
 Group:  Documentation/HTML
 Url:http://pandas.pydata.org/
 Source0:
https://files.pythonhosted.org/packages/source/p/pandas/pandas-%{version}.tar.gz
-BuildRequires:  python3-pandas = %{version}
 BuildRequires:  python3-Sphinx
+BuildRequires:  python3-pandas = %{version}
 Recommends: python3-pandas = %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch

++ python3-pandas.spec ++
--- /var/tmp/diff_new_pack.bQkDmc/_old  2016-10-13 11:32:00.0 +0200
+++ /var/tmp/diff_new_pack.bQkDmc/_new  2016-10-13 11:32:00.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-pandas
-Version:0.18.1
+Version:0.19.0
 Release:0
 Summary:Make working with "relational" or "labeled" data both easy and 
intuitive
 License:BSD-3-Clause
@@ -26,11 +26,12 @@
 Source0:
https://files.pythonhosted.org/packages/source/p/pandas/pandas-%{version}.tar.gz
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
-BuildRequires:  python3-devel
-BuildRequires:  python3-setuptools
+BuildRequires:  

commit python3-pandas for openSUSE:Factory

2016-06-02 Thread h_root
Hello community,

here is the log from the commit of package python3-pandas for openSUSE:Factory 
checked in at 2016-06-02 09:38:18

Comparing /work/SRC/openSUSE:Factory/python3-pandas (Old)
 and  /work/SRC/openSUSE:Factory/.python3-pandas.new (New)


Package is "python3-pandas"

Changes:

New Changes file:

--- /dev/null   2016-04-07 01:36:33.300037506 +0200
+++ /work/SRC/openSUSE:Factory/.python3-pandas.new/python3-pandas-doc.changes   
2016-06-02 09:38:20.0 +0200
@@ -0,0 +1,1069 @@
+---
+Thu May 19 18:37:25 UTC 2016 - toddrme2...@gmail.com
+
+- Split documentation into own subpackage to speed up build.
+- Remove buildrequires for optional dependencies to speed up build.
+
+---
+Sun May 15 04:32:39 UTC 2016 - a...@gmx.de
+
+- update to version 0.18.1:
+  (for a full changelog see 
http://pandas.pydata.org/pandas-docs/stable/whatsnew.html#v0-18-1-may-3-2016)
+  * Highlights include:
++ .groupby(...) has been enhanced to provide convenient syntax
+  when working with .rolling(..), .expanding(..) and .resample(..)
+  per group, see here
++ pd.to_datetime() has gained the ability to assemble dates from a
+  DataFrame, see here
++ Method chaining improvements, see here.
++ Custom business hour offset, see here.
++ Many bug fixes in the handling of sparse, see here
++ Expanded the Tutorials section with a feature on modern pandas,
+  courtesy of @TomAugsburger. (GH13045).
+
+---
+Sun May  8 07:03:41 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * updated source url to files.pythonhosted.org
+
+
+---
+Sat Mar 12 19:00:30 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+
+- update to version 0.18.0:
+  (for a full changelog see 
http://pandas.pydata.org/pandas-docs/stable/whatsnew.html#v0-18-0-march-13-2016)
+  * Highlights include:
++ Moving and expanding window functions are now methods on Series
+  and DataFrame, similar to .groupby, see here.
++ Adding support for a RangeIndex as a specialized form of the
+  Int64Index for memory savings, see here.
++ API breaking change to the .resample method to make it more
+  .groupby like, see here.
++ Removal of support for positional indexing with floats, which
+  was deprecated since 0.14.0. This will now raise a TypeError,
+  see here.
++ The .to_xarray() function has been added for compatibility with
+  the xarray package, see here.
++ The read_sas function has been enhanced to read sas7bdat files,
+  see here.
++ Addition of the .str.extractall() method, and API changes to the
+  .str.extract() method and .str.cat() method.
++ pd.test() top-level nose test runner is available (GH4327).
+
+---
+Sun Nov 22 00:45:29 UTC 2015 - a...@gmx.de
+
+- update to version 0.17.1:
+  (for full changelog see 
http://pandas.pydata.org/pandas-docs/stable/whatsnew.html#v0-17-1-november-21-2015)
+  Highlights include:
+  * Support for Conditional HTML Formatting, see here
+  * Releasing the GIL on the csv reader & other ops, see here
+  * Fixed regression in DataFrame.drop_duplicates from 0.16.2, causing
+incorrect results on integer values (GH11376)
+
+---
+Sat Oct 10 16:39:41 UTC 2015 - a...@gmx.de
+
+- update to version 0.17.0:
+  (for full changelog see 
http://pandas.pydata.org/pandas-docs/stable/whatsnew.html#v0-17-0-october-9-2015)
+  Highlights:
+  * Release the Global Interpreter Lock (GIL) on some cython
+operations, see here
+  * Plotting methods are now available as attributes of the .plot
+accessor, see here
+  * The sorting API has been revamped to remove some long-time
+inconsistencies, see here
+  * Support for a datetime64[ns] with timezones as a first-class
+dtype, see here
+  * The default for to_datetime will now be to raise when presented
+with unparseable formats, previously this would return the
+original input.  Also, date parse functions now return consistent
+results. See here
+  * The default for dropna in HDFStore has changed to False, to store
+by default all rows even if they are all NaN, see here
+  * Datetime accessor (dt) now supports Series.dt.strftime to generate
+formatted strings for datetime-likes, and Series.dt.total_seconds
+to ge nerate each duration of the timedelta in seconds. See here
+  * Period and PeriodIndex can handle multiplied freq like 3D, which
+corresponding to 3 days span. See here
+  * Development installed versions of pandas 

commit python3-pandas for openSUSE:Factory

2016-05-16 Thread h_root
Hello community,

here is the log from the commit of package python3-pandas for openSUSE:Factory 
checked in at 2016-05-16 12:04:15

Comparing /work/SRC/openSUSE:Factory/python3-pandas (Old)
 and  /work/SRC/openSUSE:Factory/.python3-pandas.new (New)


Package is "python3-pandas"

Changes:

--- /work/SRC/openSUSE:Factory/python3-pandas/python3-pandas.changes
2016-03-26 15:23:04.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-pandas.new/python3-pandas.changes   
2016-05-16 12:04:16.0 +0200
@@ -1,0 +2,24 @@
+Sun May 15 04:32:39 UTC 2016 - a...@gmx.de
+
+- update to version 0.18.1:
+  (for a full changelog see 
http://pandas.pydata.org/pandas-docs/stable/whatsnew.html#v0-18-1-may-3-2016)
+  * Highlights include:
++ .groupby(...) has been enhanced to provide convenient syntax
+  when working with .rolling(..), .expanding(..) and .resample(..)
+  per group, see here
++ pd.to_datetime() has gained the ability to assemble dates from a
+  DataFrame, see here
++ Method chaining improvements, see here.
++ Custom business hour offset, see here.
++ Many bug fixes in the handling of sparse, see here
++ Expanded the Tutorials section with a feature on modern pandas,
+  courtesy of @TomAugsburger. (GH13045).
+
+---
+Sun May  8 07:03:41 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * updated source url to files.pythonhosted.org
+
+
+---

Old:

  pandas-0.18.0.tar.gz

New:

  pandas-0.18.1.tar.gz



Other differences:
--
++ python3-pandas.spec ++
--- /var/tmp/diff_new_pack.vyzRcd/_old  2016-05-16 12:04:17.0 +0200
+++ /var/tmp/diff_new_pack.vyzRcd/_new  2016-05-16 12:04:17.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   python3-pandas
-Version:0.18.0
+Version:0.18.1
 Release:0
 Summary:Make working with "relational" or "labeled" data both easy and 
intuitive
 License:BSD-3-Clause
 Group:  Development/Libraries/Python
 Url:http://pandas.pydata.org/
-Source0:
https://pypi.python.org/packages/source/p/pandas/pandas-%{version}.tar.gz
+Source0:
https://files.pythonhosted.org/packages/source/p/pandas/pandas-%{version}.tar.gz
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  python3-Bottleneck

++ pandas-0.18.0.tar.gz -> pandas-0.18.1.tar.gz ++
/work/SRC/openSUSE:Factory/python3-pandas/pandas-0.18.0.tar.gz 
/work/SRC/openSUSE:Factory/.python3-pandas.new/pandas-0.18.1.tar.gz differ: 
char 5, line 1




commit python3-pandas for openSUSE:Factory

2016-03-26 Thread h_root
Hello community,

here is the log from the commit of package python3-pandas for openSUSE:Factory 
checked in at 2016-03-26 15:22:59

Comparing /work/SRC/openSUSE:Factory/python3-pandas (Old)
 and  /work/SRC/openSUSE:Factory/.python3-pandas.new (New)


Package is "python3-pandas"

Changes:

--- /work/SRC/openSUSE:Factory/python3-pandas/python3-pandas.changes
2015-11-23 07:30:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-pandas.new/python3-pandas.changes   
2016-03-26 15:23:04.0 +0100
@@ -1,0 +2,26 @@
+Sat Mar 12 19:00:30 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+
+- update to version 0.18.0:
+  (for a full changelog see 
http://pandas.pydata.org/pandas-docs/stable/whatsnew.html#v0-18-0-march-13-2016)
+  * Highlights include:
++ Moving and expanding window functions are now methods on Series
+  and DataFrame, similar to .groupby, see here.
++ Adding support for a RangeIndex as a specialized form of the
+  Int64Index for memory savings, see here.
++ API breaking change to the .resample method to make it more
+  .groupby like, see here.
++ Removal of support for positional indexing with floats, which
+  was deprecated since 0.14.0. This will now raise a TypeError,
+  see here.
++ The .to_xarray() function has been added for compatibility with
+  the xarray package, see here.
++ The read_sas function has been enhanced to read sas7bdat files,
+  see here.
++ Addition of the .str.extractall() method, and API changes to the
+  .str.extract() method and .str.cat() method.
++ pd.test() top-level nose test runner is available (GH4327).
+
+---

Old:

  pandas-0.17.1.tar.gz

New:

  pandas-0.18.0.tar.gz



Other differences:
--
++ python3-pandas.spec ++
--- /var/tmp/diff_new_pack.16F3eB/_old  2016-03-26 15:23:05.0 +0100
+++ /var/tmp/diff_new_pack.16F3eB/_new  2016-03-26 15:23:05.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-pandas
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   python3-pandas
-Version:0.17.1
+Version:0.18.0
 Release:0
 Summary:Make working with "relational" or "labeled" data both easy and 
intuitive
 License:BSD-3-Clause

++ pandas-0.17.1.tar.gz -> pandas-0.18.0.tar.gz ++
/work/SRC/openSUSE:Factory/python3-pandas/pandas-0.17.1.tar.gz 
/work/SRC/openSUSE:Factory/.python3-pandas.new/pandas-0.18.0.tar.gz differ: 
char 5, line 1




commit python3-pandas for openSUSE:Factory

2015-11-22 Thread h_root
Hello community,

here is the log from the commit of package python3-pandas for openSUSE:Factory 
checked in at 2015-11-23 07:30:23

Comparing /work/SRC/openSUSE:Factory/python3-pandas (Old)
 and  /work/SRC/openSUSE:Factory/.python3-pandas.new (New)


Package is "python3-pandas"

Changes:

--- /work/SRC/openSUSE:Factory/python3-pandas/python3-pandas.changes
2015-10-20 00:04:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-pandas.new/python3-pandas.changes   
2015-11-23 07:30:24.0 +0100
@@ -1,0 +2,11 @@
+Sun Nov 22 00:45:29 UTC 2015 - a...@gmx.de
+
+- update to version 0.17.1:
+  (for full changelog see 
http://pandas.pydata.org/pandas-docs/stable/whatsnew.html#v0-17-1-november-21-2015)
+  Highlights include:
+  * Support for Conditional HTML Formatting, see here
+  * Releasing the GIL on the csv reader & other ops, see here
+  * Fixed regression in DataFrame.drop_duplicates from 0.16.2, causing
+incorrect results on integer values (GH11376)
+
+---

Old:

  pandas-0.17.0.tar.gz

New:

  pandas-0.17.1.tar.gz



Other differences:
--
++ python3-pandas.spec ++
--- /var/tmp/diff_new_pack.cJemzw/_old  2015-11-23 07:30:25.0 +0100
+++ /var/tmp/diff_new_pack.cJemzw/_new  2015-11-23 07:30:25.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python3-pandas
-Version:0.17.0
+Version:0.17.1
 Release:0
 Summary:Make working with "relational" or "labeled" data both easy and 
intuitive
 License:BSD-3-Clause

++ pandas-0.17.0.tar.gz -> pandas-0.17.1.tar.gz ++
/work/SRC/openSUSE:Factory/python3-pandas/pandas-0.17.0.tar.gz 
/work/SRC/openSUSE:Factory/.python3-pandas.new/pandas-0.17.1.tar.gz differ: 
char 5, line 1




commit python3-pandas for openSUSE:Factory

2015-10-19 Thread h_root
Hello community,

here is the log from the commit of package python3-pandas for openSUSE:Factory 
checked in at 2015-10-19 22:50:10

Comparing /work/SRC/openSUSE:Factory/python3-pandas (Old)
 and  /work/SRC/openSUSE:Factory/.python3-pandas.new (New)


Package is "python3-pandas"

Changes:

--- /work/SRC/openSUSE:Factory/python3-pandas/python3-pandas.changes
2015-08-17 15:35:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-pandas.new/python3-pandas.changes   
2015-10-20 00:04:10.0 +0200
@@ -1,0 +2,38 @@
+Sat Oct 10 16:39:41 UTC 2015 - a...@gmx.de
+
+- update to version 0.17.0:
+  (for full changelog see 
http://pandas.pydata.org/pandas-docs/stable/whatsnew.html#v0-17-0-october-9-2015)
+  Highlights:
+  * Release the Global Interpreter Lock (GIL) on some cython
+operations, see here
+  * Plotting methods are now available as attributes of the .plot
+accessor, see here
+  * The sorting API has been revamped to remove some long-time
+inconsistencies, see here
+  * Support for a datetime64[ns] with timezones as a first-class
+dtype, see here
+  * The default for to_datetime will now be to raise when presented
+with unparseable formats, previously this would return the
+original input.  Also, date parse functions now return consistent
+results. See here
+  * The default for dropna in HDFStore has changed to False, to store
+by default all rows even if they are all NaN, see here
+  * Datetime accessor (dt) now supports Series.dt.strftime to generate
+formatted strings for datetime-likes, and Series.dt.total_seconds
+to ge nerate each duration of the timedelta in seconds. See here
+  * Period and PeriodIndex can handle multiplied freq like 3D, which
+corresponding to 3 days span. See here
+  * Development installed versions of pandas will now have PEP440
+compliant version strings (GH9518)
+  * Development support for benchmarking with the Air Speed Velocity
+library (GH8361)
+  * Support for reading SAS xport files, see here
+  * Documentation comparing SAS to pandas, see here
+  * Removal of the automatic TimeSeries broadcasting, deprecated since
+0.8.0, see here
+  * Display format with plain text can optionally align with Unicode
+East Asian Width, see here
+  * Compatibility with Python 3.5 (GH11097)
+  * Compatibility with matplotlib 1.5.0 (GH1)
+
+---

Old:

  pandas-0.16.2.tar.gz

New:

  pandas-0.17.0.tar.gz



Other differences:
--
++ python3-pandas.spec ++
--- /var/tmp/diff_new_pack.Z6a2yi/_old  2015-10-20 00:04:11.0 +0200
+++ /var/tmp/diff_new_pack.Z6a2yi/_new  2015-10-20 00:04:11.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-pandas
-Version:0.16.2
+Version:0.17.0
 Release:0
 Summary:Make working with "relational" or "labeled" data both easy and 
intuitive
 License:BSD-3-Clause
@@ -28,10 +28,10 @@
 BuildRequires:  gcc-c++
 BuildRequires:  python3-Bottleneck
 BuildRequires:  python3-Cython
+BuildRequires:  python3-SQLAlchemy
 BuildRequires:  python3-Sphinx
 BuildRequires:  python3-beautifulsoup4
 BuildRequires:  python3-boto
-BuildRequires:  python3-SQLAlchemy
 BuildRequires:  python3-dateutil
 BuildRequires:  python3-devel
 BuildRequires:  python3-html5lib

++ pandas-0.16.2.tar.gz -> pandas-0.17.0.tar.gz ++
/work/SRC/openSUSE:Factory/python3-pandas/pandas-0.16.2.tar.gz 
/work/SRC/openSUSE:Factory/.python3-pandas.new/pandas-0.17.0.tar.gz differ: 
char 5, line 1




commit python3-pandas for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package python3-pandas for openSUSE:Factory 
checked in at 2015-08-17 15:35:04

Comparing /work/SRC/openSUSE:Factory/python3-pandas (Old)
 and  /work/SRC/openSUSE:Factory/.python3-pandas.new (New)


Package is python3-pandas

Changes:

--- /work/SRC/openSUSE:Factory/python3-pandas/python3-pandas.changes
2015-06-15 17:50:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-pandas.new/python3-pandas.changes   
2015-08-17 15:35:05.0 +0200
@@ -1,0 +2,11 @@
+Wed Jul 29 08:50:55 UTC 2015 - toddrme2...@gmail.com
+
+- xlwt and boto are now available for python 3.
+
+---
+Mon Jul 27 10:08:46 UTC 2015 - toddrme2...@gmail.com
+
+- Don't require HDF5 directly, the ambiguities should be and have
+  been fixed in the packages that require hdf5 directly, not here.
+
+---



Other differences:
--
++ python3-pandas.spec ++
--- /var/tmp/diff_new_pack.94RkFy/_old  2015-08-17 15:35:06.0 +0200
+++ /var/tmp/diff_new_pack.94RkFy/_new  2015-08-17 15:35:06.0 +0200
@@ -30,10 +30,7 @@
 BuildRequires:  python3-Cython
 BuildRequires:  python3-Sphinx
 BuildRequires:  python3-beautifulsoup4
-# Not yet available for python 3
-# BuildRequires:  python3-boto
-BuildRequires:  libhdf5-9
-BuildRequires:  libhdf5_hl9
+BuildRequires:  python3-boto
 BuildRequires:  python3-SQLAlchemy
 BuildRequires:  python3-dateutil
 BuildRequires:  python3-devel
@@ -48,10 +45,7 @@
 BuildRequires:  python3-setuptools
 BuildRequires:  python3-tables = 3.0.0
 BuildRequires:  python3-xlrd
-# Not yet available for python 3
-# BuildRequires:  python3-xlwt
-Requires:   libhdf5-9
-Requires:   libhdf5_hl9
+BuildRequires:  python3-xlwt
 Requires:   python3-dateutil
 Requires:   python3-numpy = 1.7.0
 Requires:   python3-pytz




commit python3-pandas for openSUSE:Factory

2015-06-15 Thread h_root
Hello community,

here is the log from the commit of package python3-pandas for openSUSE:Factory 
checked in at 2015-06-15 17:49:56

Comparing /work/SRC/openSUSE:Factory/python3-pandas (Old)
 and  /work/SRC/openSUSE:Factory/.python3-pandas.new (New)


Package is python3-pandas

Changes:

--- /work/SRC/openSUSE:Factory/python3-pandas/python3-pandas.changes
2015-05-19 23:49:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-pandas.new/python3-pandas.changes   
2015-06-15 17:50:03.0 +0200
@@ -1,0 +2,115 @@
+Sun Jun 14 06:52:11 UTC 2015 - a...@gmx.de
+
+- update to version 0.16.2:
+  (see 
http://pandas.pydata.org/pandas-docs/stable/whatsnew.html#v0-16-2-june-12-2015)
+  * Highlights
++ A new pipe method
++ Documentation on how to use numba with pandas
+  * Enhancements
++ Added rsplit to Index/Series StringMethods (GH10303)
++ Removed the hard-coded size limits on the DataFrame HTML
+  representation in the IPython notebook, and leave this to
+  IPython itself (only for IPython v3.0 or greater). This
+  eliminates the duplicate scroll bars that appeared in the
+  notebook with large frames (GH10231).
+
+  Note that the notebook has a toggle output scrolling feature to
+  limit the display of very large frames (by clicking left of the
+  output). You can also configure the way DataFrames are displayed
+  using the pandas options, see here here.
++ axis parameter of DataFrame.quantile now accepts also index and
+  column. (GH9543)
+  * API Changes
++ Holiday now raises NotImplementedError if both offset and
+  observance are used in the constructor instead of returning an
+  incorrect result (GH10217).
+  * Performance Improvements
++ Improved Series.resample performance with dtype=datetime64[ns]
+  (GH7754)
++ Increase performance of str.split when expand=True (GH10081)
+  * Bug Fixes
++ Bug in Series.hist raises an error when a one row Series was
+  given (GH10214)
++ Bug where HDFStore.select modifies the passed columns list
+  (GH7212)
++ Bug in Categorical repr with display.width of None in Python 3
+  (GH10087)
++ Bug in to_json with certain orients and a CategoricalIndex would
+  segfault (GH10317)
++ Bug where some of the nan funcs do not have consistent return
+  dtypes (GH10251)
++ Bug in DataFrame.quantile on checking that a valid axis was
+  passed (GH9543)
++ Bug in groupby.apply aggregation for Categorical not preserving
+  categories (GH10138)
++ Bug in to_csv where date_format is ignored if the datetime is
+  fractional (GH10209)
++ Bug in DataFrame.to_json with mixed data types (GH10289)
++ Bug in cache updating when consolidating (GH10264)
++ Bug in mean() where integer dtypes can overflow (GH10172)
++ Bug where Panel.from_dict does not set dtype when specified
+  (GH10058)
++ Bug in Index.union raises AttributeError when passing
+  array-likes. (GH10149)
++ Bug in Timestamp‘s’ microsecond, quarter, dayofyear, week and
+  daysinmonth properties return np.int type, not built-in
+  int. (GH10050)
++ Bug in NaT raises AttributeError when accessing to daysinmonth,
+  dayofweek properties. (GH10096)
++ Bug in Index repr when using the max_seq_items=None setting
+  (GH10182).
++ Bug in getting timezone data with dateutil on various platforms
+  ( GH9059, GH8639, GH9663, GH10121)
++ Bug in displaying datetimes with mixed frequencies; display ‘ms’
+  datetimes to the proper precision. (GH10170)
++ Bug in setitem where type promotion is applied to the entire
+  block (GH10280)
++ Bug in Series arithmetic methods may incorrectly hold names
+  (GH10068)
++ Bug in GroupBy.get_group when grouping on multiple keys, one of
+  which is categorical. (GH10132)
++ Bug in DatetimeIndex and TimedeltaIndex names are lost after
+  timedelta arithmetics ( GH9926)
++ Bug in DataFrame construction from nested dict with datetime64
+  (GH10160)
++ Bug in Series construction from dict with datetime64 keys
+  (GH9456)
++ Bug in Series.plot(label=LABEL) not correctly setting the
+  label (GH10119)
++ Bug in plot not defaulting to matplotlib axes.grid setting
+  (GH9792)
++ Bug causing strings containing an exponent, but no decimal to be
+  parsed as int instead of float in engine='python' for the read_csv
+  parser (GH9565)
++ Bug in Series.align resets name when fill_value is specified
+  (GH10067)
++ Bug in read_csv causing index name not to be set on an empty
+  DataFrame (GH10184)
++ Bug in SparseSeries.abs resets name (GH10241)
++ Bug in TimedeltaIndex slicing may reset freq (GH10292)
++ Bug in GroupBy.get_group raises 

commit python3-pandas for openSUSE:Factory

2015-05-19 Thread h_root
Hello community,

here is the log from the commit of package python3-pandas for openSUSE:Factory 
checked in at 2015-05-19 23:49:58

Comparing /work/SRC/openSUSE:Factory/python3-pandas (Old)
 and  /work/SRC/openSUSE:Factory/.python3-pandas.new (New)


Package is python3-pandas

Changes:

--- /work/SRC/openSUSE:Factory/python3-pandas/python3-pandas.changes
2015-03-25 10:01:49.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-pandas.new/python3-pandas.changes   
2015-05-19 23:49:59.0 +0200
@@ -1,0 +2,232 @@
+Tue May 19 09:18:50 UTC 2015 - toddrme2...@gmail.com
+
+- Update to version 0.16.1
+  * Highlights
+- Support for a ``CategoricalIndex``, a category based index
+- New section on how-to-contribute to pandas
+- Revised Merge, join, and concatenate documentation, 
+  including graphical examples to make it easier to understand
+  each operations
+- New method sample for drawing random samples from Series,
+  DataFrames and Panels.
+- The default Index printing has changed to a more uniform 
+  format
+- BusinessHour datetime-offset is now supported
+  * Enhancements
+- BusinessHour`offset is now supported, which represents 
+  business hours starting from 09:00 - 17:00 on BusinessDay by 
+  default.
+- DataFrame.diff now takes an axis parameter that determines the
+  direction of differencing
+- Allow clip, clip_lower, and clip_upper to accept array-like 
+  arguments as thresholds (This is a regression from 0.11.0).
+  These methods now have an axis parameter which determines 
+  how the Series or DataFrame will be aligned with the 
+  threshold(s).
+- DataFrame.mask() and Series.mask() now support same keywords 
+  as where
+- drop function can now accept errors keyword to suppress 
+  ValueError raised when any of label does not exist in the 
+  target data.
+- Allow conversion of values with dtype datetime64 or timedelta64
+  to strings using astype(str)
+- get_dummies function now accepts sparse keyword.  If set to
+  True, the return DataFrame is sparse, e.g. SparseDataFrame.
+- Period now accepts datetime64 as value input.
+- Allow timedelta string conversion when leading zero is 
+  missing from time definition, ie 0:00:00 vs 00:00:00.
+- Allow Panel.shift with axis='items'
+- Trying to write an excel file now raises NotImplementedError 
+  if the DataFrame has a MultiIndex instead of writing a broken
+  Excel file.
+- Allow Categorical.add_categories to accept Series or np.array.
+- Add/delete str/dt/cat accessors dynamically from __dir__.
+- Add normalize as a dt accessor method.
+- DataFrame and Series now have _constructor_expanddim property
+  as overridable constructor for one higher dimensionality 
+  data. This should be used only when it is really needed
+- pd.lib.infer_dtype now returns 'bytes' in Python 3 where 
+  appropriate.
+- We introduce a CategoricalIndex, a new type of index object
+  that is useful for supporting indexing with duplicates. This
+  is a container around a Categorical (introduced in v0.15.0)
+  and allows efficient indexing and storage of an index with a
+  large number of duplicated elements. Prior to 0.16.1, 
+  setting the index of a DataFrame/Series with a category 
+  dtype would convert this to regular object-based Index.
+- Series, DataFrames, and Panels now have a new method: 
+  pandas.DataFrame.sample. The method accepts a specific number
+  of rows or columns to return, or a fraction of the total
+  number or rows or columns. It also has options for sampling
+  with or without replacement, for passing in a column for
+  weights for non-uniform sampling, and for setting seed values
+  to facilitate replication.
+- The following new methods are accesible via .str accessor to
+  apply the function to each values.
+  + capitalize()
+  + swapcase()
+  + normalize()
+  + partition()
+  + rpartition()
+  + index()
+  + rindex()
+  + translate()
+- Added StringMethods (.str accessor) to Index
+- split now takes expand keyword to specify whether to expand
+  dimensionality. return_type is deprecated.
+  * API changes
+- When passing in an ax to df.plot( ..., ax=ax), the sharex 
+  kwarg will now default to False.
+- Add support for separating years and quarters using dashes, 
+  for example 2014-Q1.
+- pandas.DataFrame.assign now inserts new columns in 
+  alphabetical order. Previously the order was arbitrary.
+- By default, read_csv and read_table will now try to infer
+  the compression type based on the file extension. Set 
+  compression=None to restore the previous 

commit python3-pandas for openSUSE:Factory

2015-03-25 Thread h_root
Hello community,

here is the log from the commit of package python3-pandas for openSUSE:Factory 
checked in at 2015-03-25 10:01:34

Comparing /work/SRC/openSUSE:Factory/python3-pandas (Old)
 and  /work/SRC/openSUSE:Factory/.python3-pandas.new (New)


Package is python3-pandas

Changes:

--- /work/SRC/openSUSE:Factory/python3-pandas/python3-pandas.changes
2015-02-16 22:13:29.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-pandas.new/python3-pandas.changes   
2015-03-25 10:01:49.0 +0100
@@ -1,0 +2,244 @@
+Tue Mar 24 12:44:20 UTC 2015 - toddrme2...@gmail.com
+   
+- update to version 0.16.0:
+  * Highlights:
+- DataFrame.assign method
+- Series.to_coo/from_coo methods to interact with scipy.sparse
+- Backwards incompatible change to Timedelta to conform the .seconds 
+  attribute with datetime.timedelta
+- Changes to the .loc slicing API to conform with the behavior of .ix
+- Changes to the default for ordering in the Categorical constructor
+- Enhancement to the .str accessor to make string operations easier
+- The pandas.tools.rplot, pandas.sandbox.qtpandas and pandas.rpy 
+  modules are deprecated.  We refer users to external packages like 
+  seaborn, pandas-qt and rpy2 for similar or equivalent functionality
+  * New features
+- Inspired by dplyr's mutate verb, DataFrame has a new assign method.
+- Added SparseSeries.to_coo and SparseSeries.from_coo methods for 
+  converting to and from scipy.sparse.coo_matrix instances.
+- Following new methods are accesible via .str accessor to apply the 
+  function to each values. This is intended to make it more consistent with
+  standard methods on strings: isalnum(), isalpha(), isdigit(), isdigit(),
+  isspace(), islower(), isupper(), istitle(), isnumeric(), isdecimal(),
+  find(), rfind(), ljust(), rjust(), zfill()
+- Reindex now supports method='nearest' for frames or series with a 
+  monotonic increasing or decreasing index.
+- The read_excel() function's sheetname argument now accepts a list and 
+  None, to get multiple or all sheets respectively. If more than one sheet 
+  is specified, a dictionary is returned.
+- Allow Stata files to be read incrementally with an iterator; support for 
+  long strings in Stata files.
+- Paths beginning with ~ will now be expanded to begin with the user's home
+  directory.
+- Added time interval selection in get_data_yahoo.
+- Added Timestamp.to_datetime64() to complement Timedelta.to_timedelta64().
+- tseries.frequencies.to_offset() now accepts Timedelta as input.
+- Lag parameter was added to the autocorrelation method of Series, defaults
+  to lag-1 autocorrelation.
+- Timedelta will now accept nanoseconds keyword in constructor.
+- SQL code now safely escapes table and column names.
+- Added auto-complete for Series.str.tab, Series.dt.tab and 
+  Series.cat.tab.
+- Index.get_indexer now supports method='pad' and method='backfill' even 
+  for any target array, not just monotonic targets.
+- Index.asof now works on all index types.
+- A verbose argument has been augmented in io.read_excel(), defaults to 
+  False. Set to True to print sheet names as they are parsed.
+- Added days_in_month (compatibility alias daysinmonth) property to 
+  Timestamp, DatetimeIndex, Period, PeriodIndex, and Series.dt.
+- Added decimal option in to_csv to provide formatting for non-'.' decimal 
+  separators
+- Added normalize option for Timestamp to normalized to midnight
+- Added example for DataFrame import to R using HDF5 file and rhdf5
+  library.
+  * Backwards incompatible API changes
+- In v0.16.0, we are restoring the API to match that of datetime.timedelta.
+  Further, the component values are still available through the .components
+  accessor. This affects the .seconds and .microseconds accessors, and 
+  removes the .hours, .minutes, .milliseconds accessors. These changes 
+  affect TimedeltaIndex and the Series .dt accessor as well.
+- The behavior of a small sub-set of edge cases for using .loc have 
+  changed. Furthermore we have improved the content of the error messages 
+  that are raised:
+  + Slicing with .loc where the start and/or stop bound is not found in 
+the index is now allowed; this previously would raise a KeyError. This 
+makes the behavior the same as .ix in this case. This change is only 
+for slicing, not when indexing with a single label.
+  + Allow slicing with float-like values on an integer index for .ix. 
+Previously this was only enabled for .loc:
+  + Provide a useful exception for indexing with an invalid type for that 
+index when using .loc. 

commit python3-pandas for openSUSE:Factory

2015-02-16 Thread h_root
Hello community,

here is the log from the commit of package python3-pandas for openSUSE:Factory 
checked in at 2015-02-16 22:13:28

Comparing /work/SRC/openSUSE:Factory/python3-pandas (Old)
 and  /work/SRC/openSUSE:Factory/.python3-pandas.new (New)


Package is python3-pandas

Changes:

--- /work/SRC/openSUSE:Factory/python3-pandas/python3-pandas.changes
2014-12-19 09:37:41.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-pandas.new/python3-pandas.changes   
2015-02-16 22:13:29.0 +0100
@@ -1,0 +2,8 @@
+Sat Feb 14 18:15:32 UTC 2015 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+  * fix have choice for libhdf5
+  * removed modname variable
+
+---



Other differences:
--
++ python3-pandas.spec ++
--- /var/tmp/diff_new_pack.GZpGJK/_old  2015-02-16 22:13:30.0 +0100
+++ /var/tmp/diff_new_pack.GZpGJK/_new  2015-02-16 22:13:30.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-pandas
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,8 +16,7 @@
 #
 
 
-%define modname pandas
-Name:   python3-%{modname}
+Name:   python3-pandas
 Version:0.15.2
 Release:0
 Summary:Make working with relational or labeled data both easy and 
intuitive
@@ -33,6 +32,8 @@
 BuildRequires:  python3-beautifulsoup4
 # Not yet available for python 3
 # BuildRequires:  python3-boto
+BuildRequires:  libhdf5-9
+BuildRequires:  libhdf5_hl9
 BuildRequires:  python3-SQLAlchemy
 BuildRequires:  python3-dateutil
 BuildRequires:  python3-devel
@@ -49,6 +50,8 @@
 BuildRequires:  python3-xlrd
 # Not yet available for python 3
 # BuildRequires:  python3-xlwt
+Requires:   libhdf5-9
+Requires:   libhdf5_hl9
 Requires:   python3-dateutil
 Requires:   python3-numpy = 1.7.0
 Requires:   python3-pytz
@@ -108,8 +111,8 @@
 %files
 %defattr(-,root,root)
 %doc LICENSE doc/README.rst RELEASE.md
-%{python3_sitearch}/%{modname}
-%{python3_sitearch}/%{modname}-%{version}-py%{py3_ver}.egg-info
+%{python3_sitearch}/pandas
+%{python3_sitearch}/pandas-%{version}-py%{py3_ver}.egg-info
 
 %files doc
 %defattr(-,root,root)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python3-pandas for openSUSE:Factory

2014-12-19 Thread h_root
Hello community,

here is the log from the commit of package python3-pandas for openSUSE:Factory 
checked in at 2014-12-19 09:38:46

Comparing /work/SRC/openSUSE:Factory/python3-pandas (Old)
 and  /work/SRC/openSUSE:Factory/.python3-pandas.new (New)


Package is python3-pandas

Changes:

--- /work/SRC/openSUSE:Factory/python3-pandas/python3-pandas.changes
2014-11-10 17:29:01.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-pandas.new/python3-pandas.changes   
2014-12-19 09:37:41.0 +0100
@@ -1,0 +2,176 @@
+Tue Dec 16 05:24:44 UTC 2014 - a...@gmx.de
+
+- update to version 0.15.2:
+  * API changes:
+- Indexing in MultiIndex beyond lex-sort depth is now supported,
+  though a lexically sorted index will have a better
+  performance. (GH2646)
+- Bug in unique of Series with category dtype, which returned all
+  categories regardless whether they were used or not (see
+  GH8559 for the discussion). Previous behaviour was to return all
+  categories.
+- Series.all and Series.any now support the level and skipna
+  parameters. Series.all, Series.any, Index.all, and Index.any no
+  longer support the out and keepdims parameters, which existed
+  for compatibility with ndarray. Various index types no longer
+  support the all and any aggregation functions and will now raise
+  TypeError. (GH8302).
+- Allow equality comparisons of Series with a categorical dtype
+  and object dtype; previously these would raise TypeError
+  (GH8938)
+- Bug in NDFrame: conflicting attribute/column names now behave
+  consistently between getting and setting. Previously, when both
+  a column and attribute named y existed, data.y would return the
+  attribute, while data.y = z would update the column (GH8994)
+- Timestamp('now') is now equivalent to Timestamp.now() in that it
+  returns the local time rather than UTC. Also, Timestamp('today')
+  is now equivalent to Timestamp.today() and both have tz as a
+  possible argument. (GH9000)
+- Fix negative step support for label-based slices (GH8753)
+  * Enhancements:
+- Added ability to export Categorical data to Stata (GH8633). See
+  here for limitations of categorical variables exported to Stata
+  data files.
+- Added flag order_categoricals to StataReader and read_stata to
+  select whether to order imported categorical data (GH8836). See
+  here for more information on importing categorical variables
+  from Stata data files.
+- Added ability to export Categorical data to to/from HDF5
+  (GH7621). Queries work the same as if it was an object
+  array. However, the category dtyped data is stored in a more
+  efficient manner. See here for an example and caveats
+  w.r.t. prior versions of pandas.
+- Added support for searchsorted() on Categorical class (GH8420).
+- Added the ability to specify the SQL type of columns when
+  writing a DataFrame to a database (GH8778). For example,
+  specifying to use the sqlalchemy String type instead of the
+  default Text type for string columns.
+- Series.all and Series.any now support the level and skipna
+  parameters (GH8302).
+- Panel now supports the all and any aggregation
+  functions. (GH8302).
+- Added support for utcfromtimestamp(), fromtimestamp(), and
+  combine() on Timestamp class (GH5351).
+- Added Google Analytics (pandas.io.ga) basic documentation
+  (GH8835).
+- Timedelta arithmetic returns NotImplemented in unknown cases,
+  allowing extensions by custom classes (GH8813).
+- Timedelta now supports arithemtic with numpy.ndarray objects of
+  the appropriate dtype (numpy 1.8 or newer only) (GH8884).
+- Added Timedelta.to_timedelta64() method to the public API
+  (GH8884).
+- Added gbq.generate_bq_schema() function to the gbq module
+  (GH8325).
+- Series now works with map objects the same way as generators
+  (GH8909).
+- Added context manager to HDFStore for automatic closing
+  (GH8791).
+- to_datetime gains an exact keyword to allow for a format to not
+  require an exact match for a provided format string (if its
+  False). exact defaults to True (meaning that exact matching is
+  still the default) (GH8904)
+- Added axvlines boolean option to parallel_coordinates plot
+  function, determines whether vertical lines will be printed,
+  default is True
+- Added ability to read table footers to read_html (GH8552).
+- to_sql now infers datatypes of non-NA values for columns that
+  contain NA values and have dtype object (GH8778).
+  * Performance:
+- Reduce memory usage when skiprows is an integer in read_csv
+  (GH8681)
+- Performance boost for to_datetime 

commit python3-pandas for openSUSE:Factory

2014-11-10 Thread h_root
Hello community,

here is the log from the commit of package python3-pandas for openSUSE:Factory 
checked in at 2014-11-10 17:28:45

Comparing /work/SRC/openSUSE:Factory/python3-pandas (Old)
 and  /work/SRC/openSUSE:Factory/.python3-pandas.new (New)


Package is python3-pandas

Changes:

--- /work/SRC/openSUSE:Factory/python3-pandas/python3-pandas.changes
2014-10-22 16:23:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-pandas.new/python3-pandas.changes   
2014-11-10 17:29:01.0 +0100
@@ -1,0 +2,90 @@
+Sun Nov  9 15:40:36 UTC 2014 - toddrme2...@gmail.com
+
+- Updated to version 0.15.1:
+  + API changes
+- Represent ``MultiIndex`` labels with a dtype that utilizes memory based 
+  on the level size.
+- ``groupby`` with ``as_index=False`` will not add erroneous extra columns 
+  to result (:issue:`8582`):
+- ``groupby`` will not erroneously exclude columns if the column name 
+  conflics with the grouper name (:issue:`8112`):
+- ``concat`` permits a wider variety of iterables of pandas objects to be
+  passed as the first parameter (:issue:`8645`):
+- ``s.dt.hour`` and other ``.dt`` accessors will now return ``np.nan`` for 
+  missing values (rather than previously -1), (:issue:`8689`)
+- support for slicing with monotonic decreasing indexes, even if ``start`` 
+  or ``stop`` is not found in the index (:issue:`7860`):
+- added Index properties `is_monotonic_increasing` and 
+  `is_monotonic_decreasing` (:issue:`8680`).
+- pandas now also registers the ``datetime64`` dtype in matplotlib's units 
+  registry to plot such values as datetimes. 
+  + Enhancements
+- Added option to select columns when importing Stata files (:issue:`7935`)
+- Qualify memory usage in ``DataFrame.info()`` by adding ``+`` if it is a 
+  lower bound (:issue:`8578`)
+- Raise errors in certain aggregation cases where an argument such as 
+  ``numeric_only`` is not handled (:issue:`8592`).
+- Added support for 3-character ISO and non-standard country codes in 
+  :func:``io.wb.download()`` (:issue:`8482`)
+- :ref:`World Bank data requests remote_data.wb` now will warn/raise 
+  based on an ``errors`` argument, as well as a list of hard-coded country 
+  codes and the World Bank's JSON response.
+- Added option to ``Series.str.split()`` to return a ``DataFrame`` rather 
+  than a ``Series`` (:issue:`8428`)
+- Added option to ``df.info(null_counts=None|True|False)`` to override the 
+  default display options and force showing of the null-counts 
+  (:issue:`8701`)
+  + Bug Fixes
+- Bug in unpickling  of a ``CustomBusinessDay`` object (:issue:`8591`)
+- Bug in coercing ``Categorical`` to a records array, e.g. 
+  ``df.to_records()`` (:issue:`8626`)
+- Bug in ``Categorical`` not created properly with ``Series.to_frame()`` 
+  (:issue:`8626`)
+- Bug in coercing in astype of a ``Categorical`` of a passed 
+  ``pd.Categorical`` (this now raises ``TypeError`` correctly), 
+  (:issue:`8626`)
+- Bug in ``cut``/``qcut`` when using ``Series`` and ``retbins=True`` 
+  (:issue:`8589`)
+- Bug in writing Categorical columns to an SQL database with ``to_sql`` 
+  (:issue:`8624`).
+- Bug in comparing ``Categorical`` of datetime raising when being compared 
+  to a scalar datetime (:issue:`8687`)
+- Bug in selecting from a ``Categorical`` with ``.iloc`` (:issue:`8623`)
+- Bug in groupby-transform with a Categorical (:issue:`8623`)
+- Bug in duplicated/drop_duplicates with a Categorical (:issue:`8623`)
+- Bug in ``Categorical`` reflected comparison operator raising if the 
first 
+  argument was a numpy array scalar (e.g. np.int64) (:issue:`8658`)
+- Bug in Panel indexing with a list-like (:issue:`8710`)
+- Compat issue is ``DataFrame.dtypes`` when 
+  ``options.mode.use_inf_as_null`` is True (:issue:`8722`)
+- Bug in ``read_csv``, ``dialect`` parameter would not take a string 
+  (:issue: `8703`)
+- Bug in slicing a multi-index level with an empty-list (:issue:`8737`)
+- Bug in numeric index operations of add/sub with Float/Index Index with 
+  numpy arrays (:issue:`8608`)
+- Bug in setitem with empty indexer and unwanted coercion of dtypes 
+  (:issue:`8669`)
+- Bug in ix/loc block splitting on setitem (manifests with integer-like 
+  dtypes, e.g. datetime64) (:issue:`8607`)
+- Bug when doing label based indexing with integers not found in the index 
+  for non-unique but monotonic indexes (:issue:`8680`).
+- Bug when indexing a Float64Index with ``np.nan`` on numpy 1.7 
+  (:issue:`8980`).
+- Fix ``shape`` attribute for ``MultiIndex`` (:issue:`8609`)
+- Bug in ``GroupBy`` where a name conflict between the 

commit python3-pandas for openSUSE:Factory

2014-10-22 Thread h_root
Hello community,

here is the log from the commit of package python3-pandas for openSUSE:Factory 
checked in at 2014-10-22 16:23:22

Comparing /work/SRC/openSUSE:Factory/python3-pandas (Old)
 and  /work/SRC/openSUSE:Factory/.python3-pandas.new (New)


Package is python3-pandas

Changes:

--- /work/SRC/openSUSE:Factory/python3-pandas/python3-pandas.changes
2014-07-31 21:50:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-pandas.new/python3-pandas.changes   
2014-10-22 16:23:25.0 +0200
@@ -1,0 +2,23 @@
+Mon Oct 20 10:42:30 UTC 2014 - toddrme2...@gmail.com
+
+- Update to 0.15.0, highlights:  
+  - Drop support for numpy  1.7.0
+  - The Categorical type was integrated as a first-class 
+pandas type
+  - New scalar type Timedelta, and a new index type TimedeltaIndex
+  - New DataFrame default display for df.info() to 
+include memory usage
+  - New datetimelike properties accessor .dt for Series
+  - Split indexing documentation into Indexing and Selecting Data and 
+MultiIndex / Advanced Indexing
+  - Split out string methods documentation into Working with Text Data
+  - read_csv will now by default ignore blank lines when parsing
+  - API change in using Indexes in set operations
+  - Internal refactoring of the Index class to no longer 
+sub-class ndarray
+  - dropping support for PyTables less than version 3.0.0, 
+and numexpr less than version 2.1
+- Update minimum dependency versions of 
+  python-numpy, python-tables, and python-numexpr
+
+---

Old:

  pandas-0.14.1.tar.gz

New:

  pandas-0.15.0.tar.gz



Other differences:
--
++ python3-pandas.spec ++
--- /var/tmp/diff_new_pack.69RcH0/_old  2014-10-22 16:23:26.0 +0200
+++ /var/tmp/diff_new_pack.69RcH0/_new  2014-10-22 16:23:26.0 +0200
@@ -18,7 +18,7 @@
 
 %define modname pandas
 Name:   python3-%{modname}
-Version:0.14.1
+Version:0.15.0
 Release:0
 Summary:Make working with relational or labeled data both easy and 
intuitive
 License:BSD-3-Clause
@@ -38,19 +38,19 @@
 BuildRequires:  python3-html5lib
 BuildRequires:  python3-lxml
 BuildRequires:  python3-matplotlib
-BuildRequires:  python3-numexpr
-BuildRequires:  python3-numpy-devel
+BuildRequires:  python3-numexpr = 2.1
+BuildRequires:  python3-numpy-devel = 1.7.0
 BuildRequires:  python3-openpyxl
 BuildRequires:  python3-pytz
 BuildRequires:  python3-scipy
 BuildRequires:  python3-setuptools
 BuildRequires:  python3-SQLAlchemy
-BuildRequires:  python3-tables
+BuildRequires:  python3-tables = 3.0.0
 BuildRequires:  python3-xlrd
 # Not yet available for python 3
 # BuildRequires:  python3-xlwt
 Requires:   python3-dateutil
-Requires:   python3-numpy
+Requires:   python3-numpy = 1.7.0
 Requires:   python3-pytz
 Recommends: python3-Bottleneck
 Recommends: python3-beautifulsoup4
@@ -58,13 +58,13 @@
 Recommends: python3-html5lib
 Recommends: python3-lxml
 Recommends: python3-matplotlib
-Recommends: python3-numexpr
+Recommends: python3-numexpr = 2.1
 Recommends: python3-openpyxl
 Recommends: python3-scipy
 Recommends: python3-statsmodels
 Recommends: python3-SQLAlchemy
 Recommends: python3-statsmodels
-Recommends: python3-tables
+Recommends: python3-tables = 3.0.0
 Recommends: python3-xlrd
 Recommends: python3-xlwt
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ pandas-0.14.1.tar.gz - pandas-0.15.0.tar.gz ++
/work/SRC/openSUSE:Factory/python3-pandas/pandas-0.14.1.tar.gz 
/work/SRC/openSUSE:Factory/.python3-pandas.new/pandas-0.15.0.tar.gz differ: 
char 5, line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org