forked from pool/python-fastparquet
Accepting request 1032429 from devel:languages:python:numeric
OBS-URL: https://build.opensuse.org/request/show/1032429 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-fastparquet?expand=0&rev=23
This commit is contained in:
commit
83c6b584ec
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:591e20b128da87e369aa23178a29f2aaff4e4e69feab845be7ea456b3213fc96
|
||||
size 29212838
|
3
fastparquet-0.8.3.tar.gz
Normal file
3
fastparquet-0.8.3.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c2a8a392348291df8d9b26a17f2b0424fa7e675df3adef3b5af05357ca811951
|
||||
size 29210251
|
36550
fastparquet-pr813-updatefixes.patch
Normal file
36550
fastparquet-pr813-updatefixes.patch
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,19 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 28 15:47:41 UTC 2022 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
- Update to 0.8.3
|
||||
* improved key/value handling and rejection of bad types
|
||||
* fix regression in consolidate_cats (caught in dask tests)
|
||||
- Release 0.8.2
|
||||
* datetime indexes initialised to 0 to prevent overflow from
|
||||
randommemory
|
||||
* case from csv_to_parquet where stats exists but has not nulls
|
||||
entry
|
||||
* define len and bool for ParquetFile
|
||||
* maintain int types of optional data tha came from pandas
|
||||
* fix for delta encoding
|
||||
- Add fastparquet-pr813-updatefixes.patch gh#dask/fastparquet#813
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 26 11:02:27 UTC 2022 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
|
@ -16,22 +16,23 @@
|
||||
#
|
||||
|
||||
|
||||
%{?!python_module:%define python_module() python3-%{**}}
|
||||
%define skip_python2 1
|
||||
Name: python-fastparquet
|
||||
Version: 0.8.1
|
||||
Version: 0.8.3
|
||||
Release: 0
|
||||
Summary: Python support for Parquet file format
|
||||
License: Apache-2.0
|
||||
URL: https://github.com/dask/fastparquet/
|
||||
Source: https://github.com/dask/fastparquet/archive/%{version}.tar.gz#/fastparquet-%{version}.tar.gz
|
||||
# PATCH-FIX-UPSTREAM fastparquet-pr813-updatefixes.patch gh#dask/fastparquet#813
|
||||
Patch1: fastparquet-pr813-updatefixes.patch
|
||||
BuildRequires: %{python_module Cython}
|
||||
BuildRequires: %{python_module base >= 3.7}
|
||||
BuildRequires: %{python_module base >= 3.8}
|
||||
BuildRequires: %{python_module cramjam >= 2.3.0}
|
||||
# version requirement not declared for runtime, but necessary for tests.
|
||||
BuildRequires: %{python_module fsspec >= 2021.6.0}
|
||||
BuildRequires: %{python_module numpy-devel >= 1.18}
|
||||
BuildRequires: %{python_module pandas >= 1.1.0}
|
||||
BuildRequires: %{python_module numpy-devel >= 1.20.3}
|
||||
BuildRequires: %{python_module packaging}
|
||||
BuildRequires: %{python_module pandas >= 1.5.0}
|
||||
BuildRequires: %{python_module pytest-asyncio}
|
||||
BuildRequires: %{python_module pytest-xdist}
|
||||
BuildRequires: %{python_module pytest}
|
||||
@ -41,8 +42,9 @@ BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-cramjam >= 2.3.0
|
||||
Requires: python-fsspec
|
||||
Requires: python-numpy >= 1.18
|
||||
Requires: python-pandas >= 1.1.0
|
||||
Requires: python-numpy >= 1.20.3
|
||||
Requires: python-packaging
|
||||
Requires: python-pandas >= 1.5.0
|
||||
Recommends: python-python-lzo
|
||||
%python_subpackages
|
||||
|
||||
@ -51,7 +53,7 @@ This is a Python implementation of the parquet format
|
||||
for integrating it into python-based Big Data workflows.
|
||||
|
||||
%prep
|
||||
%setup -q -n fastparquet-%{version}
|
||||
%autosetup -p1 -n fastparquet-%{version}
|
||||
# remove pytest-runner from setup_requires
|
||||
sed -i "s/'pytest-runner',//" setup.py
|
||||
# this is not meant for setup.py
|
||||
|
Loading…
Reference in New Issue
Block a user