From 7fd2305835cb67753f78661a4172126945b3c4ed64d7740a69002f82e3e0d005 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Tue, 14 Jan 2020 12:29:39 +0000 Subject: [PATCH 1/3] - Skip one test that fails on 32bit: test_encode_non_c_locale OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=26 --- python-pandas.changes | 5 +++++ python-pandas.spec | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/python-pandas.changes b/python-pandas.changes index 45d19d4..718aac8 100644 --- a/python-pandas.changes +++ b/python-pandas.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Jan 14 12:28:49 UTC 2020 - Tomáš Chvátal + +- Skip one test that fails on 32bit: test_encode_non_c_locale + ------------------------------------------------------------------- Mon Nov 11 01:59:25 UTC 2019 - Steve Kowalik diff --git a/python-pandas.spec b/python-pandas.spec index e94b2a3..33568c7 100644 --- a/python-pandas.spec +++ b/python-pandas.spec @@ -1,7 +1,7 @@ # # spec file for package python-pandas # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -108,6 +108,7 @@ export CFLAGS="%{optflags} -fno-strict-aliasing" %check # skip test that tries to compile stuff in buildroot test_oo_optimizable +# test_encode_non_c_locale - skip test as it overflows on 32bit export PYTHONHASHSEED=$(python -c 'import random; print(random.randint(1, 4294967295))') export http_proxy=http://1.2.3.4 https_proxy=http://1.2.3.4; export LANG=en_US.UTF-8 @@ -115,7 +116,7 @@ export LC_ALL=en_US.UTF-8 export PYTHONDONTWRITEBYTECODE=1 mv pandas pandas_temp %{python_expand export PYTHONPATH=%{buildroot}%{$python_sitearch} -xvfb-run py.test-%{$python_version} -n auto -v %{buildroot}%{$python_sitearch}/pandas/tests -k 'not test_oo_optimizable' +xvfb-run py.test-%{$python_version} -n auto -v %{buildroot}%{$python_sitearch}/pandas/tests -k 'not test_oo_optimizable and not test_encode_non_c_locale' } mv pandas_temp pandas From ff1a37d74f0663da31fd5bff1f71950abda58e9a191374b70179d1e350e03592 Mon Sep 17 00:00:00 2001 From: Steve Kowalik Date: Fri, 21 Feb 2020 06:02:09 +0000 Subject: [PATCH 2/3] - Update to version 1.0.1 + Enhancements * Using Numba in rolling.apply and expanding.apply * Defining custom windows for rolling operations * Converting to Markdown + Experimental new features * Experimental NA scalar to denote missing values * Dedicated string data type * Boolean data type with missing values support * convert_dtypes method to ease use of supported extension dtypes + Backwards incompatible API changes * Avoid using names from MultiIndex.levels * New repr for IntervalArray * DataFrame.rename now only accepts one positional argument * Extended verbose info output for DataFrame * pandas.array() inference changes * arrays.IntegerArray now uses pandas.NA * arrays.IntegerArray comparisons return arrays.BooleanArray * By default Categorical.min() now returns the minimum instead of np.nan * Default dtype of empty pandas.Series * Result dtype inference changes for resample operations + Many, many fixed regressions - Add Jinja2 and xsel to BuildRequires OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=27 --- pandas-0.25.3.tar.gz | 3 --- pandas-1.0.1.tar.gz | 3 +++ python-pandas.changes | 27 +++++++++++++++++++++++++++ python-pandas.spec | 4 +++- 4 files changed, 33 insertions(+), 4 deletions(-) delete mode 100644 pandas-0.25.3.tar.gz create mode 100644 pandas-1.0.1.tar.gz diff --git a/pandas-0.25.3.tar.gz b/pandas-0.25.3.tar.gz deleted file mode 100644 index 77e97b1..0000000 --- a/pandas-0.25.3.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:52da74df8a9c9a103af0a72c9d5fdc8e0183a90884278db7f386b5692a2220a4 -size 12632585 diff --git a/pandas-1.0.1.tar.gz b/pandas-1.0.1.tar.gz new file mode 100644 index 0000000..190a61e --- /dev/null +++ b/pandas-1.0.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c07765308f091d81b6735d4f2242bb43c332cc3461cae60543df6b10967fe27 +size 4852368 diff --git a/python-pandas.changes b/python-pandas.changes index 718aac8..715e6cc 100644 --- a/python-pandas.changes +++ b/python-pandas.changes @@ -1,3 +1,30 @@ +------------------------------------------------------------------- +Fri Feb 21 05:56:43 UTC 2020 - Steve Kowalik + +- Update to version 1.0.1 + + Enhancements + * Using Numba in rolling.apply and expanding.apply + * Defining custom windows for rolling operations + * Converting to Markdown + + Experimental new features + * Experimental NA scalar to denote missing values + * Dedicated string data type + * Boolean data type with missing values support + * convert_dtypes method to ease use of supported extension dtypes + + Backwards incompatible API changes + * Avoid using names from MultiIndex.levels + * New repr for IntervalArray + * DataFrame.rename now only accepts one positional argument + * Extended verbose info output for DataFrame + * pandas.array() inference changes + * arrays.IntegerArray now uses pandas.NA + * arrays.IntegerArray comparisons return arrays.BooleanArray + * By default Categorical.min() now returns the minimum instead of np.nan + * Default dtype of empty pandas.Series + * Result dtype inference changes for resample operations + + Many, many fixed regressions +- Add Jinja2 and xsel to BuildRequires + ------------------------------------------------------------------- Tue Jan 14 12:28:49 UTC 2020 - Tomáš Chvátal diff --git a/python-pandas.spec b/python-pandas.spec index 33568c7..1b922cf 100644 --- a/python-pandas.spec +++ b/python-pandas.spec @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %define skip_python2 1 Name: python-pandas -Version: 0.25.3 +Version: 1.0.1 Release: 0 Summary: Python data structures for data analysis, time series, and statistics License: BSD-3-Clause @@ -68,6 +68,7 @@ Recommends: xsel Obsoletes: python-pandas-doc < %{version} Provides: python-pandas-doc = %{version} # SECTION test requirements +BuildRequires: %{python_module Jinja2} BuildRequires: %{python_module SQLAlchemy >= 1.1.4} BuildRequires: %{python_module XlsxWriter >= 0.9.8} BuildRequires: %{python_module beautifulsoup4 >= 4.6.0} @@ -81,6 +82,7 @@ BuildRequires: %{python_module python-dateutil >= 2.6.1} BuildRequires: %{python_module pytz >= 2015.4} BuildRequires: %{python_module xlrd >= 1.1.0} BuildRequires: %{python_module xlwt >= 1.2.0} +BuildRequires: xsel BuildRequires: xvfb-run # /SECTION %python_subpackages From 3a1ba12f9296c2555fd1a6b41fdb576650f46f8e11be738df0b3c8e18e138ada Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Fri, 21 Feb 2020 11:53:33 +0000 Subject: [PATCH 3/3] Accepting request 777937 from devel:languages:python:numeric Revert, breaks ton of stuff OBS-URL: https://build.opensuse.org/request/show/777937 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=28 --- pandas-0.25.3.tar.gz | 3 +++ pandas-1.0.1.tar.gz | 3 --- python-pandas.changes | 27 --------------------------- python-pandas.spec | 4 +--- 4 files changed, 4 insertions(+), 33 deletions(-) create mode 100644 pandas-0.25.3.tar.gz delete mode 100644 pandas-1.0.1.tar.gz diff --git a/pandas-0.25.3.tar.gz b/pandas-0.25.3.tar.gz new file mode 100644 index 0000000..77e97b1 --- /dev/null +++ b/pandas-0.25.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52da74df8a9c9a103af0a72c9d5fdc8e0183a90884278db7f386b5692a2220a4 +size 12632585 diff --git a/pandas-1.0.1.tar.gz b/pandas-1.0.1.tar.gz deleted file mode 100644 index 190a61e..0000000 --- a/pandas-1.0.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3c07765308f091d81b6735d4f2242bb43c332cc3461cae60543df6b10967fe27 -size 4852368 diff --git a/python-pandas.changes b/python-pandas.changes index 715e6cc..718aac8 100644 --- a/python-pandas.changes +++ b/python-pandas.changes @@ -1,30 +1,3 @@ -------------------------------------------------------------------- -Fri Feb 21 05:56:43 UTC 2020 - Steve Kowalik - -- Update to version 1.0.1 - + Enhancements - * Using Numba in rolling.apply and expanding.apply - * Defining custom windows for rolling operations - * Converting to Markdown - + Experimental new features - * Experimental NA scalar to denote missing values - * Dedicated string data type - * Boolean data type with missing values support - * convert_dtypes method to ease use of supported extension dtypes - + Backwards incompatible API changes - * Avoid using names from MultiIndex.levels - * New repr for IntervalArray - * DataFrame.rename now only accepts one positional argument - * Extended verbose info output for DataFrame - * pandas.array() inference changes - * arrays.IntegerArray now uses pandas.NA - * arrays.IntegerArray comparisons return arrays.BooleanArray - * By default Categorical.min() now returns the minimum instead of np.nan - * Default dtype of empty pandas.Series - * Result dtype inference changes for resample operations - + Many, many fixed regressions -- Add Jinja2 and xsel to BuildRequires - ------------------------------------------------------------------- Tue Jan 14 12:28:49 UTC 2020 - Tomáš Chvátal diff --git a/python-pandas.spec b/python-pandas.spec index 1b922cf..33568c7 100644 --- a/python-pandas.spec +++ b/python-pandas.spec @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %define skip_python2 1 Name: python-pandas -Version: 1.0.1 +Version: 0.25.3 Release: 0 Summary: Python data structures for data analysis, time series, and statistics License: BSD-3-Clause @@ -68,7 +68,6 @@ Recommends: xsel Obsoletes: python-pandas-doc < %{version} Provides: python-pandas-doc = %{version} # SECTION test requirements -BuildRequires: %{python_module Jinja2} BuildRequires: %{python_module SQLAlchemy >= 1.1.4} BuildRequires: %{python_module XlsxWriter >= 0.9.8} BuildRequires: %{python_module beautifulsoup4 >= 4.6.0} @@ -82,7 +81,6 @@ BuildRequires: %{python_module python-dateutil >= 2.6.1} BuildRequires: %{python_module pytz >= 2015.4} BuildRequires: %{python_module xlrd >= 1.1.0} BuildRequires: %{python_module xlwt >= 1.2.0} -BuildRequires: xsel BuildRequires: xvfb-run # /SECTION %python_subpackages