Accepting request 720881 from devel:languages:python:numeric

OBS-URL: https://build.opensuse.org/request/show/720881
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-fastparquet?expand=0&rev=8
This commit is contained in:
Dominique Leuenberger 2019-08-05 08:42:14 +00:00 committed by Git OBS Bridge
commit feeee33acd
4 changed files with 28 additions and 6 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2edab6b9c2e395fb9162342c10fbecd929006c842ea8abfca802fd5550717da8
size 28907386

3
fastparquet-0.3.2.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b09526e6bc773980215a1581a7c2b97a71e47b78ef196baf1fa748d24d33c2a4
size 28913056

View File

@ -1,3 +1,24 @@
-------------------------------------------------------------------
Sat Aug 3 15:10:41 UTC 2019 - Arun Persaud <arun@gmx.de>
- update to version 0.3.2:
* Only calculate dataset stats once (#453)
* Fixes #436 (#452)
* Fix a crash if trying to read a file whose created_by value is not
set
* COMPAT: Fix for pandas DeprecationWarning (#446)
* Apply timezone to index (#439)
* Handle NaN partition values (#438)
* Pandas meta (#431)
* Only strip _metadata from end of file path (#430)
* Simple nesting fix (#428)
* Disallow bad tz on save, warn on load (#427)
-------------------------------------------------------------------
Tue Jul 30 14:23:21 UTC 2019 - Todd R <toddrme2178@gmail.com>
- Fix spurious test failure
-------------------------------------------------------------------
Mon May 20 15:12:11 CEST 2019 - Matej Cepl <mcepl@suse.com>

View File

@ -20,7 +20,7 @@
# Test files not included
%bcond_without test
Name: python-fastparquet
Version: 0.3.1
Version: 0.3.2
Release: 0
Summary: Python support for Parquet file format
License: Apache-2.0
@ -87,8 +87,9 @@ pushd tester
%{python_expand export PYTHONPATH=%{buildroot}%{$python_sitearch}
export PYTHONDONTWRITEBYTECODE=1
rm -rf build _build*
# Test fails in i586
pytest-%{$python_bin_suffix} . -k 'not test_time_millis'
# Test test_time_millis fails in i586
# test_datetime_roundtrip fails due to a warning being accidentally caught by the test
pytest-%{$python_bin_suffix} . -k 'not test_time_millis and not test_datetime_roundtrip'
}
popd
%endif