Accepting request 953981 from home:apersaud:branches:devel:languages:python:numeric
update to latest version OBS-URL: https://build.opensuse.org/request/show/953981 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=69
This commit is contained in:
parent
c08530f049
commit
eb6a616f64
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cdd76254c7f0a1583bd4e4781fb450d0ebf392e10d3f12e92c95575942e37df5
|
||||
size 4935046
|
3
pandas-1.4.1.tar.gz
Normal file
3
pandas-1.4.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8db93ec98ac7cb5f8ac1420c10f5e3c43533153f253fe7fb6d891cf5aa2b80d2
|
||||
size 4941369
|
@ -1,3 +1,48 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 12 23:29:24 UTC 2022 - Arun Persaud <arun@gmx.de>
|
||||
|
||||
- update to version 1.4.1:
|
||||
* Fixed regressions
|
||||
+ Regression in Series.mask() with inplace=True and PeriodDtype
|
||||
and an incompatible other coercing to a common dtype instead of
|
||||
raising (GH45546)
|
||||
+ Regression in assert_frame_equal() not respecting
|
||||
check_flags=False (GH45554)
|
||||
+ Regression in DataFrame.loc() raising ValueError when indexing
|
||||
(getting values) on a MultiIndex with one level (GH45779)
|
||||
+ Regression in Series.fillna() with downcast=False incorrectly
|
||||
downcasting object dtype (GH45603)
|
||||
+ Regression in api.types.is_bool_dtype() raising an
|
||||
AttributeError when evaluating a categorical Series (GH45615)
|
||||
+ Regression in DataFrame.iat() setting values leading to not
|
||||
propagating correctly in subsequent lookups (GH45684)
|
||||
+ Regression when setting values with DataFrame.loc() losing Index
|
||||
name if DataFrame was empty before (GH45621)
|
||||
+ Regression in join() with overlapping IntervalIndex raising an
|
||||
InvalidIndexError (GH45661)
|
||||
+ Regression when setting values with Series.loc() raising with
|
||||
all False indexer and Series on the right hand side (GH45778)
|
||||
+ Regression in read_sql() with a DBAPI2 connection that is not an
|
||||
instance of sqlite3.Connection incorrectly requiring SQLAlchemy
|
||||
be installed (GH45660)
|
||||
+ Regression in DateOffset when constructing with an integer
|
||||
argument with no keywords (e.g. pd.DateOffset(n)) would behave
|
||||
like datetime.timedelta(days=0) (GH45643, GH45890)
|
||||
* Bug fixes
|
||||
+ Fixed segfault in DataFrame.to_json() when dumping tz-aware
|
||||
datetimes in Python 3.10 (GH42130)
|
||||
+ Stopped emitting unnecessary FutureWarning in
|
||||
DataFrame.sort_values() with sparse columns (GH45618)
|
||||
+ Fixed window aggregations in DataFrame.rolling() and
|
||||
Series.rolling() to skip over unused elements (GH45647)
|
||||
+ Fixed builtin highlighters in Styler to be responsive to NA with
|
||||
nullable dtypes (GH45804)
|
||||
+ Bug in apply() with axis=1 raising an erroneous ValueError
|
||||
(GH45912)
|
||||
* Other
|
||||
+ Reverted performance speedup of DataFrame.corr() for
|
||||
method=pearson to fix precision regression (GH45640, GH42761)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 25 19:26:46 UTC 2022 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
|
@ -39,11 +39,10 @@
|
||||
%define psuffix %{nil}
|
||||
%bcond_with test
|
||||
%endif
|
||||
|
||||
%{?!python_module:%define python_module() python3-%{**}}
|
||||
%define skip_python2 1
|
||||
Name: python-pandas%{psuffix}
|
||||
Version: 1.4.0
|
||||
Version: 1.4.1
|
||||
Release: 0
|
||||
Summary: Python data structures for data analysis, time series, and statistics
|
||||
License: BSD-3-Clause
|
||||
@ -128,7 +127,7 @@ block for doing data analysis in Python.
|
||||
%if !%{with test}
|
||||
%setup -q -n pandas-%{version}
|
||||
%else
|
||||
%setup -c -n pandas-%{version} -T
|
||||
%setup -q -c -n pandas-%{version} -T
|
||||
cd ..
|
||||
# unpack only the files we need for testing
|
||||
tar xf %{SOURCE0} \
|
||||
@ -214,7 +213,7 @@ SKIP_TESTS+=" or (test_c_parser_only and test_float_precision_options)"
|
||||
# clipboard marker: not set up properly in build service
|
||||
# need to specify test path directly instead of --pyargs pandas in order
|
||||
# to find all conftest.py files https://github.com/pytest-dev/pytest/issues/1596
|
||||
xvfb-run pytest-%{$python_bin_suffix} -v -n %jobs \
|
||||
xvfb-run pytest-%{$python_bin_suffix} -v -n %{jobs} \
|
||||
-c pyproject.toml \
|
||||
-o cache_dir=$PWD/.pytest_cache --cache-clear \
|
||||
--skip-network %{?test_fast} \
|
||||
|
Loading…
Reference in New Issue
Block a user