Accepting request 1133481 from home:bnavigator:branches:devel:languages:python:numeric
- Update to 2.1.4 ## Fixed regressions * Fixed regression when trying to read a pickled pandas DataFrame from pandas 1.3 (GH 55137) ## Bug fixes * Bug in Series constructor raising DeprecationWarning when index is a list of Series (GH 55228) * Bug in Series when trying to cast date-like string inputs to ArrowDtype of pyarrow.timestamp (GH 56266) * Bug in DataFrame.apply() where passing raw=True ignored args passed to the applied function (GH 55753) * Bug in Index.__getitem__() returning wrong result for Arrow dtypes and negative stepsize (GH 55832) * Fixed bug in to_numeric() converting to extension dtype for string[pyarrow_numpy] dtype (GH 56179) * Fixed bug in DataFrameGroupBy.min() and DataFrameGroupBy.max() not preserving extension dtype for empty object (GH 55619) * Fixed bug in DataFrame.__setitem__() casting Index with object-dtype to PyArrow backed strings when infer_string option is set (GH 55638) * Fixed bug in DataFrame.to_hdf() raising when columns have StringDtype (GH 55088) * Fixed bug in Index.insert() casting object-dtype to PyArrow backed strings when infer_string option is set (GH 55638) * Fixed bug in Series.__ne__() resulting in False for comparison between NA and string value for dtype="string[pyarrow_numpy]" (GH 56122) * Fixed bug in Series.mode() not keeping object dtype when infer_string is set (GH 56183) * Fixed bug in Series.reset_index() not preserving object dtype when infer_string is set (GH 56160) * Fixed bug in Series.str.split() and Series.str.rsplit() when pat=None for ArrowDtype with pyarrow.string (GH 56271) * Fixed bug in Series.str.translate() losing object dtype when string option is set (GH 56152) - Go back to Cython0, it has NOT been unpinned by upstream released version * https://github.com/pandas-dev/pandas/blob/v2.1.4/pyproject.toml#L8 * See also gh#jsonpickle/jsonpickle#460 OBS-URL: https://build.opensuse.org/request/show/1133481 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=104
This commit is contained in:
parent
006aa4a237
commit
d9e0095014
2
_service
2
_service
@ -2,7 +2,7 @@
|
|||||||
<service name="tar_scm" mode="disabled">
|
<service name="tar_scm" mode="disabled">
|
||||||
<param name="url">https://github.com/pandas-dev/pandas.git</param>
|
<param name="url">https://github.com/pandas-dev/pandas.git</param>
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="revision">v2.1.3</param>
|
<param name="revision">v2.1.4</param>
|
||||||
<param name="versionformat">@PARENT_TAG@</param>
|
<param name="versionformat">@PARENT_TAG@</param>
|
||||||
<param name="versionrewrite-pattern">v(.*)</param>
|
<param name="versionrewrite-pattern">v(.*)</param>
|
||||||
<param name="filename">pandas</param>
|
<param name="filename">pandas</param>
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:1e60b3105892bef40843b8d29345f35e9855d5bfedbd04030965607811c46d98
|
|
||||||
size 49603896
|
|
BIN
pandas-2.1.4.tar.gz
(Stored with Git LFS)
Normal file
BIN
pandas-2.1.4.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,46 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Dec 13 16:35:35 UTC 2023 - Ben Greiner <code@bnavigator.de>
|
||||||
|
|
||||||
|
- Update to 2.1.4
|
||||||
|
## Fixed regressions
|
||||||
|
* Fixed regression when trying to read a pickled pandas DataFrame
|
||||||
|
from pandas 1.3 (GH 55137)
|
||||||
|
## Bug fixes
|
||||||
|
* Bug in Series constructor raising DeprecationWarning when index
|
||||||
|
is a list of Series (GH 55228)
|
||||||
|
* Bug in Series when trying to cast date-like string inputs to
|
||||||
|
ArrowDtype of pyarrow.timestamp (GH 56266)
|
||||||
|
* Bug in DataFrame.apply() where passing raw=True ignored args
|
||||||
|
passed to the applied function (GH 55753)
|
||||||
|
* Bug in Index.__getitem__() returning wrong result for Arrow
|
||||||
|
dtypes and negative stepsize (GH 55832)
|
||||||
|
* Fixed bug in to_numeric() converting to extension dtype for
|
||||||
|
string[pyarrow_numpy] dtype (GH 56179)
|
||||||
|
* Fixed bug in DataFrameGroupBy.min() and DataFrameGroupBy.max()
|
||||||
|
not preserving extension dtype for empty object (GH 55619)
|
||||||
|
* Fixed bug in DataFrame.__setitem__() casting Index with
|
||||||
|
object-dtype to PyArrow backed strings when infer_string option
|
||||||
|
is set (GH 55638)
|
||||||
|
* Fixed bug in DataFrame.to_hdf() raising when columns have
|
||||||
|
StringDtype (GH 55088)
|
||||||
|
* Fixed bug in Index.insert() casting object-dtype to PyArrow
|
||||||
|
backed strings when infer_string option is set (GH 55638)
|
||||||
|
* Fixed bug in Series.__ne__() resulting in False for comparison
|
||||||
|
between NA and string value for dtype="string[pyarrow_numpy]"
|
||||||
|
(GH 56122)
|
||||||
|
* Fixed bug in Series.mode() not keeping object dtype when
|
||||||
|
infer_string is set (GH 56183)
|
||||||
|
* Fixed bug in Series.reset_index() not preserving object dtype
|
||||||
|
when infer_string is set (GH 56160)
|
||||||
|
* Fixed bug in Series.str.split() and Series.str.rsplit() when
|
||||||
|
pat=None for ArrowDtype with pyarrow.string (GH 56271)
|
||||||
|
* Fixed bug in Series.str.translate() losing object dtype when
|
||||||
|
string option is set (GH 56152)
|
||||||
|
- Go back to Cython0, it has NOT been unpinned by upstream released
|
||||||
|
version
|
||||||
|
* https://github.com/pandas-dev/pandas/blob/v2.1.4/pyproject.toml#L8
|
||||||
|
* See also gh#jsonpickle/jsonpickle#460
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Dec 1 03:25:23 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>
|
Fri Dec 1 03:25:23 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@
|
|||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-pandas%{psuffix}
|
Name: python-pandas%{psuffix}
|
||||||
# Set version through _service
|
# Set version through _service
|
||||||
Version: 2.1.3
|
Version: 2.1.4
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python data structures for data analysis, time series, and statistics
|
Summary: Python data structures for data analysis, time series, and statistics
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
@ -71,7 +71,7 @@ URL: https://pandas.pydata.org/
|
|||||||
# SourceRepository: https://github.com/pandas-dev/pandas
|
# SourceRepository: https://github.com/pandas-dev/pandas
|
||||||
# Must be created by cloning through `osc service runall`: gh#pandas-dev/pandas#54903, gh#pandas-dev/pandas#54907
|
# Must be created by cloning through `osc service runall`: gh#pandas-dev/pandas#54903, gh#pandas-dev/pandas#54907
|
||||||
Source0: pandas-%{version}.tar.gz
|
Source0: pandas-%{version}.tar.gz
|
||||||
BuildRequires: %{python_module Cython}
|
BuildRequires: %{python_module Cython >= 0.29.33 with %python-Cython < 3}
|
||||||
BuildRequires: %{python_module devel >= 3.9}
|
BuildRequires: %{python_module devel >= 3.9}
|
||||||
BuildRequires: %{python_module meson-python >= 0.13.1}
|
BuildRequires: %{python_module meson-python >= 0.13.1}
|
||||||
BuildRequires: %{python_module numpy-devel >= 1.23.2 if %python-base < 3.12 else %python-numpy-devel >= 1.26}
|
BuildRequires: %{python_module numpy-devel >= 1.23.2 if %python-base < 3.12 else %python-numpy-devel >= 1.26}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user