From 66527359b3086a95c3a4f486d75b5eba74f97bcbb364b97c39f87bf74e23887e Mon Sep 17 00:00:00 2001 From: Todd R Date: Wed, 24 Jun 2020 01:54:15 +0000 Subject: [PATCH 1/2] Accepting request 816736 from home:TheBlackCat:branches:devel:languages:python:numeric - Update to version 1.0.5 * Fixed regressions + Fix regression in read_parquet() when reading from file-like objects (GH34467). + Fix regression in reading from public S3 buckets (GH34626). Note this disables the ability to read Parquet files from directories on S3 again (GH26388, GH34632), which was added in the 1.0.4 release, but is now targeted for pandas 1.1.0. + Fixed regression in replace() raising an AssertionError when replacing values in an extension dtype with values of a different dtype (GH34530) * Bug fixes + Fixed building from source with Python 3.8 fetching the wrong version of NumPy OBS-URL: https://build.opensuse.org/request/show/816736 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=43 --- pandas-1.0.4.tar.gz | 3 --- pandas-1.0.5.tar.gz | 3 +++ python-pandas.changes | 14 ++++++++++++++ python-pandas.spec | 2 +- 4 files changed, 18 insertions(+), 4 deletions(-) delete mode 100644 pandas-1.0.4.tar.gz create mode 100644 pandas-1.0.5.tar.gz diff --git a/pandas-1.0.4.tar.gz b/pandas-1.0.4.tar.gz deleted file mode 100644 index a52facb..0000000 --- a/pandas-1.0.4.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b35d625282baa7b51e82e52622c300a1ca9f786711b2af7cbe64f1e6831f4126 -size 5040267 diff --git a/pandas-1.0.5.tar.gz b/pandas-1.0.5.tar.gz new file mode 100644 index 0000000..e82267b --- /dev/null +++ b/pandas-1.0.5.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69c5d920a0b2a9838e677f78f4dde506b95ea8e4d30da25859db6469ded84fa8 +size 5007108 diff --git a/python-pandas.changes b/python-pandas.changes index f04c09b..f56204d 100644 --- a/python-pandas.changes +++ b/python-pandas.changes @@ -1,3 +1,17 @@ +------------------------------------------------------------------- +Wed Jun 24 01:52:29 UTC 2020 - Todd R + +- Update to version 1.0.5 + * Fixed regressions + + Fix regression in read_parquet() when reading from file-like objects (GH34467). + + Fix regression in reading from public S3 buckets (GH34626). + Note this disables the ability to read Parquet files from + directories on S3 again (GH26388, GH34632), which was added + in the 1.0.4 release, but is now targeted for pandas 1.1.0. + + Fixed regression in replace() raising an AssertionError when replacing values in an extension dtype with values of a different dtype (GH34530) + * Bug fixes + + Fixed building from source with Python 3.8 fetching the wrong version of NumPy + ------------------------------------------------------------------- Sat May 30 23:39:38 UTC 2020 - Arun Persaud diff --git a/python-pandas.spec b/python-pandas.spec index 8e3d6a5..6013112 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.4 +Version: 1.0.5 Release: 0 Summary: Python data structures for data analysis, time series, and statistics License: BSD-3-Clause From ca2342b165dbe0ca4c949a42b862811812df430384ce740592e8836968ba1c12 Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Tue, 30 Jun 2020 13:04:03 +0000 Subject: [PATCH 2/2] - Skip test_raw_roundtrip on i586 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=44 --- python-pandas.changes | 5 +++++ python-pandas.spec | 7 ++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/python-pandas.changes b/python-pandas.changes index f56204d..fe7066b 100644 --- a/python-pandas.changes +++ b/python-pandas.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Jun 30 13:03:14 UTC 2020 - Matej Cepl + +- Skip test_raw_roundtrip on i586 + ------------------------------------------------------------------- Wed Jun 24 01:52:29 UTC 2020 - Todd R diff --git a/python-pandas.spec b/python-pandas.spec index 6013112..86e3458 100644 --- a/python-pandas.spec +++ b/python-pandas.spec @@ -123,10 +123,15 @@ export http_proxy=http://1.2.3.4 https_proxy=http://1.2.3.4; export LANG=en_US.UTF-8 export LC_ALL=en_US.UTF-8 export PYTHONDONTWRITEBYTECODE=1 +export SKIP_TESTS="test_oo_optimizable or test_encode_non_c_locale or test_maybe_promote_int_with_int" +# Skip test_raw_roundtrip on i586, gh#pandas-dev/pandas#29712 +%ifarch %{ix86} +SKIP_TESTS="$SKIP_TESTS or test_raw_roundtrip" +%endif mv pandas pandas_temp %{python_expand export PYTHONPATH=%{buildroot}%{$python_sitearch} $python -c 'import pandas; print(pandas.show_versions())' -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 and not test_maybe_promote_int_with_int' +xvfb-run py.test-%{$python_version} -n auto -v %{buildroot}%{$python_sitearch}/pandas/tests -k "not ($SKIP_TESTS)" } mv pandas_temp pandas