Blame SPECS/python-pandas.spec

4898f3
# We need to break some cycles with optional dependencies for bootstrapping;
4898f3
# given that a conditional is needed, we take the opportunity to omit as many
4898f3
# optional dependencies as possible for bootstrapping.
4898f3
%bcond_without bootstrap
4898f3
4898f3
# When not bootstrapping, run tests?
4898f3
%bcond_without tests
4898f3
%{?with_bootstrap:%undefine with_tests}
4898f3
# When running tests, run ones that are marked as slow?
4898f3
%bcond_without slow_tests
4898f3
# When running tests, run ones that cannot be run in parallel?
4898f3
%bcond_without single_tests
4898f3
4898f3
Name:           python-pandas
4898f3
Version:        2.2.1
4898f3
Release:        7%{?dist}
4898f3
Summary:        Python library providing high-performance data analysis tools
4898f3
4898f3
# Drop support for i686 in preparation for `libarrow`
4898f3
# https://bugzilla.redhat.com/show_bug.cgi?id=2263999
4898f3
ExcludeArch:    %{ix86}
4898f3
4898f3
# The entire source is BSD-3-Clause and covered by LICENSE, except:
4898f3
#
4898f3
# - pandas/util/version/__init__.py is (Apache-2.0 OR BSD-2-Clause): see
4898f3
#   LICENSES/PACKAGING_LICENSE
4898f3
# - pandas/_libs/src/headers/portable.h is (BSD-3-Clause AND MIT), because it
4898f3
#   contains some trivial content under the overall BSD-3-Clause license but
4898f3
#   also some macros from MUSL libc under the MIT license: see
4898f3
#   LICENSES/MUSL_LICENSE
4898f3
# - pandas/_libs/src/parser/tokenizer.c is (BSD-3-Clause AND Python-2.0.1): see
4898f3
#   LICENSES/PSF_LICENSE
4898f3
# - pandas/io/sas/sas7bdat.py is (BSD-3-Clause and MIT), because it is mostly
4898f3
#   under the overall BSD-3-Clause license but is also based on
4898f3
#   https://bitbucket.org/jaredhobbs/sas7bdat: see LICENSES/SAS7BDAT_LICENSE
4898f3
# - pandas/core/accessor.py is (BSD-3-Clause AND Apache-2.0), because it is
4898f3
#   partially under the overall BSD-3-Clause license but is also based on
4898f3
#   xarray: see LICENSES/XARRAY_LICENSE
4898f3
# - pandas/_libs/src/klib/khash.h is MIT: see LICENSES/KLIB_LICENSE
4898f3
# - pandas/_libs/window/aggregations.pyx is (BSD-3-Clause AND BSD-2-Clause):
4898f3
#   see “Bottleneck license” in LICENSES/OTHER
4898f3
#
4898f3
# In the python3-pandas+test subpackage:
4898f3
#
4898f3
# - pandas/tests/io/data/spss/*.sav are MIT: see LICENSES/HAVEN_LICENSE and
4898f3
#   LICENSES/HAVEN_MIT
4898f3
# - pandas/tests/window/test_rolling.py is (BSD-3-Clause AND BSD-2-Clause)
4898f3
#   since test_rolling_std_neg_sqrt is from Bottleneck: see “Bottleneck license”
4898f3
#   in LICENSES/OTHER
4898f3
#
4898f3
# Additionally:
4898f3
#
4898f3
# - pandas/_libs/tslibs/parsing.pyx is BSD-3-Clause rather than
4898f3
#   (BSD-3-Clause AND (BSD-3-Clause OR Apache-2.0)), because it appears that at
4898f3
#   least some trivial content in the code copied from dateutil in the
4898f3
#   dateutil_parse() function (as of
4898f3
#   https://github.com/dateutil/dateutil/pull/732) is by dateutil contributors
4898f3
#   who have not agreed to re-license their previously submitted code: see
4898f3
#   LICENSES/DATEUTIL_LICENSE.
4898f3
# - LICENSES/OTHER suggests that some code may be derived from
4898f3
#   google-api-python-client under Apache-2.0, but a search for attribution
4898f3
#   comments did not turn up anything specific
4898f3
# - pandas/_libs/tslibs/src/datetime/np_datetime.{h,c} are still BSD-3-Clause,
4898f3
#   but see also LICENSES/NUMPY_LICENSE
4898f3
# - pandas/io/clipboard/ is still BSD-3-Clause, but see also “Pyperclip v1.3
4898f3
#   license” in LICENSES/OTHER
4898f3
# - pandas/_testing/__init__.py is still BSD-3-Clause, but see also
4898f3
#   LICENSES/SCIPY_LICENSE
4898f3
# - pandas/_libs/src/ujson/lib/ is still BSD-3-Clause, but under
4898f3
#   LICENSES/ULTRAJSON_LICENSE
4898f3
#
4898f3
# Additionally, the following are not packaged and so do not affect the overall
4898f3
# License field:
4898f3
#
4898f3
# - scripts/no_bool_in_generic.py is MIT: see LICENSES/PYUPGRADE_LICENSE
4898f3
License:        BSD-3-Clause AND (Apache-2.0 OR BSD-2-Clause) AND (BSD-3-Clause AND Apache-2.0) AND (BSD-3-Clause AND MIT) AND (BSD-3-Clause AND Python-2.0.1) AND MIT AND (BSD-3-Clause AND BSD-2-Clause)
4898f3
URL:            https://pandas.pydata.org/
4898f3
# The GitHub archive contains tests; the PyPI sdist does not.
4898f3
Source0:        https://github.com/pandas-dev/pandas/archive/v%{version}/pandas-%{version}.tar.gz
4898f3
# https://github.com/pandas-dev/pandas/pull/57389
4898f3
Patch:          0001-TST-Ensure-Matplotlib-is-always-cleaned-up.patch
4898f3
# https://github.com/pandas-dev/pandas/pull/57391
4898f3
Patch:          0002-Fix-evaluations-on-Python-3.12.patch
4898f3
# Fix big-endian issues:
4898f3
# https://github.com/pandas-dev/pandas/pull/57393
4898f3
Patch:          0003-TST-Fix-IntervalIndex-constructor-tests-on-big-endia.patch
4898f3
# https://github.com/pandas-dev/pandas/issues/57373
4898f3
# https://github.com/pandas-dev/pandas/pull/57394
4898f3
Patch:          0004-TST-Fix-test_str_encode-on-big-endian-machines.patch
4898f3
# https://github.com/pandas-dev/pandas/pull/57397
4898f3
Patch:          0005-TST-Add-missing-skips-for-unavailable-pyarrow.patch
4898f3
# https://github.com/pandas-dev/pandas/pull/57548
4898f3
Patch:          0006-Fix-accidental-loss-of-precision-for-to_datetime-str.patch
4898f3
# Python 3.13 support https://github.com/pandas-dev/pandas/pull/59065
4898f3
Patch:          0007-Fix-Python-3.13-test-failures.patch
4898f3
4898f3
%global _description %{expand:
4898f3
pandas is an open source, BSD-licensed library providing
4898f3
high-performance, easy-to-use data structures and data
4898f3
analysis tools for the Python programming language.}
4898f3
4898f3
%description %_description
4898f3
4898f3
4898f3
%package -n python3-pandas
4898f3
Summary:        %{summary}
4898f3
4898f3
# pandas/_libs/window/aggregations.pyx:
4898f3
#
4898f3
#   Moving maximum / minimum code taken from Bottleneck under the terms
4898f3
#   of its Simplified BSD license
4898f3
#   https://github.com/pydata/bottleneck
4898f3
#
4898f3
# These snippets are extracted from Bottleneck’s internals and cannot be
4898f3
# replaced by calling the public Bottleneck API, so there is no reasonable path
4898f3
# to unbundling.
4898f3
Provides:       bundled(python3dist(bottleneck))
4898f3
4898f3
# pandas/_libs/tslibs/parsing.pyx:
4898f3
#
4898f3
# Contains a routine, dateutil_parse(), from an unspecified version of dateutil
4898f3
#
4898f3
# Cannot be unbundled because the function is forked and compiled as Cython
4898f3
Provides:       bundled(python3dist(dateutil))
4898f3
4898f3
# pandas/_libs/src/klib/khash.h:
4898f3
#
4898f3
# From klib (https://github.com/attractivechaos/klib); it is not practical to
4898f3
# package all of klib separately because it is designed as a copylib, and many
4898f3
# of its components are not header-only.
4898f3
Provides:       bundled(klib-khash) = 0.2.6
4898f3
4898f3
# pandas/_libs/src/headers/portable.h:
4898f3
#
4898f3
# Contains several preprocessor macros from an unspecified version of MUSL libc
4898f3
#
4898f3
# Cannot be unbundled because the macros are not directly exposed in the libc
4898f3
Provides:       bundled(musl-libc)
4898f3
4898f3
# pandas/_libs/tslibs/src/datetime/np_datetime.{h,c}:
4898f3
#
4898f3
# Derived from Numpy 1.7
4898f3
#
4898f3
# Cannot be unbundled because the routines are forked.
4898f3
Provides:       bundled(python3dist(numpy)) = 1.7
4898f3
4898f3
# pandas/util/version/__init__.py:
4898f3
#
4898f3
# Vendored from https://github.com/pypa/packaging/blob/main/packaging/_structures.py
4898f3
# and https://github.com/pypa/packaging/blob/main/packaging/_structures.py
4898f3
# changeset ae891fd74d6dd4c6063bb04f2faeadaac6fc6313
4898f3
# 04/30/2021
4898f3
#
4898f3
# Cannot be (reasonably) unbundled because the vendored file is not part of
4898f3
# packaging’s public API.
4898f3
Provides:       bundled(python3dist(packaging)) = 20.10.dev0^20210430gitae891fd
4898f3
4898f3
# pandas/io/clipboard/:
4898f3
#
4898f3
# In https://github.com/pandas-dev/pandas/pull/28471, upstream considered and
4898f3
# rejected the idea of de-vendoring pyperclip. Furthermore,
4898f3
# https://github.com/pandas-dev/pandas/commits/main/pandas/io/clipboard and
4898f3
# https://github.com/pandas-dev/pandas/commits/main/pandas/io/clipboard/__init__.py
4898f3
# show that the vendored library has accrued Pandas-specific changes.
4898f3
#
4898f3
# Version number from:
4898f3
# https://github.com/pandas-dev/pandas/pull/28471/commits/33cd2d72e0c007c460e59105efda9211441b2ce4
4898f3
# “Updated internal pyperclip 1.5.27 -> 1.7.0”
4898f3
Provides:       bundled(python3dist(pyperclip)) = 1.7.0
4898f3
4898f3
# pandas/_libs/src/parser/tokenizer.c:
4898f3
#
4898f3
# Combines some elements from Python's built-in csv module and Warren
4898f3
# Weckesser's textreader project on GitHub.
4898f3
#
4898f3
# Elements from these are both forked and cannot be unbundled. The textreader
4898f3
# project is a Python extension but is not on PyPI, and is not the same as
4898f3
# python3dist(textreader).
4898f3
Provides:       bundled(python3-libs)
4898f3
Provides:       bundled(textreader)
4898f3
4898f3
# scripts/no_bool_in_generic.py:
4898f3
#
4898f3
# The function `visit` is adapted from a function by the same name in pyupgrade:
4898f3
# https://github.com/asottile/pyupgrade/blob/5495a248f2165941c5d3b82ac3226ba7ad1fa59d/pyupgrade/_data.py#L70-L113
4898f3
#
4898f3
# Not packaged (pre-commit hook) therefore not bundled
4898f3
# Provides:       bundled(python3dist(pyupgrade)) = 2.11.0^20210201git5495a24
4898f3
4898f3
# pandas/io/sas/sas7bdat.py
4898f3
#
4898f3
# Based on code written by Jared Hobbs:
4898f3
#   https://bitbucket.org/jaredhobbs/sas7bdat
4898f3
#
4898f3
# Cannot be unbundled because the code is modified, not directly copied
4898f3
Provides:       bundled(python3dist(sas7bdat))
4898f3
4898f3
# pandas/_testing/__init__.py: in _create_missing_idx():
4898f3
#
4898f3
#   below is cribbed from scipy.sparse
4898f3
#
4898f3
# Cannot be unbundled because only a few lines are copied, not a standalone
4898f3
# function that we can call
4898f3
Provides:       bundled(python3dist(scipy))
4898f3
4898f3
# pandas/_libs/src/ujson/lib/:
4898f3
#
4898f3
# This is a stripped-down copy of UltraJSON. It would be an obvious target for
4898f3
# unbundling, except:
4898f3
#
4898f3
# - Pandas uses the C library API, but UltraJSON upstream does not support
4898f3
#   building and installing it separately from the Python package.
4898f3
# - In https://github.com/pandas-dev/pandas/issues/24711 it is suggested that
4898f3
#   Pandas might rely on features of the particular vendored version of
4898f3
#   UltraJSON. It’s not immediately clear whether this is still true or not.
4898f3
Provides:       bundled(python3dist(ujson))
4898f3
4898f3
# pandas/core/accessor.py
4898f3
#
4898f3
#   Ported with modifications from xarray
4898f3
#   https://github.com/pydata/xarray/blob/master/xarray/core/extensions.py
4898f3
#   1. We don't need to catch and re-raise AttributeErrors as RuntimeErrors
4898f3
#   2. We use a UserWarning instead of a custom Warning
4898f3
#
4898f3
# Cannot be unbundled because the copied code is forked.
4898f3
Provides:       bundled(python3dist(xarray))
4898f3
4898f3
BuildRequires:  gcc
4898f3
BuildRequires:  gcc-c++
4898f3
4898f3
BuildRequires:  python3-devel
4898f3
4898f3
# Runtime dependencies
4898f3
BuildRequires:  python3dist(numpy) >= 1.26
4898f3
BuildRequires:  python3dist(python-dateutil) >= 2.8.2
4898f3
BuildRequires:  python3dist(pytz) >= 2020.1
4898f3
4898f3
%if %{with tests}
4898f3
# From the [test] extra
4898f3
BuildRequires:  python3dist(hypothesis)
4898f3
BuildRequires:  python3dist(pytest)
4898f3
BuildRequires:  python3dist(pytest-xdist)
4898f3
%endif
4898f3
4898f3
%if %{without bootstrap}
4898f3
4898f3
# doc/source/getting_started/install.rst “Recommended dependencies”
4898f3
# Since these provide large speedups, we make them hard dependencies except
4898f3
# during bootstrapping.
4898f3
BuildRequires:  python3dist(numexpr) >= 2.8.4
4898f3
Requires:       python3dist(numexpr) >= 2.8.4
4898f3
BuildRequires:  python3dist(bottleneck) >= 1.3.6
4898f3
Requires:       python3dist(bottleneck) >= 1.3.6
4898f3
4898f3
# doc/source/getting_started/install.rst “Optional dependencies”
4898f3
# We BR all weak dependencies to ensure they are installable.
4898f3
4898f3
# Timezones
4898f3
BuildRequires:  tzdata >= 2022g
4898f3
Recommends:     tzdata >= 2022g
4898f3
4898f3
# Visualization
4898f3
BuildRequires:  python3dist(matplotlib) >= 3.6.3
4898f3
Recommends:     python3dist(matplotlib) >= 3.6.3
4898f3
BuildRequires:  python3dist(jinja2) >= 3.1.2
4898f3
Recommends:     python3dist(jinja2) >= 3.1.2
4898f3
BuildRequires:  python3dist(tabulate) >= 0.9
4898f3
Recommends:     python3dist(tabulate) >= 0.9
4898f3
4898f3
# Computation
4898f3
BuildRequires:  python3dist(scipy) >= 1.10
4898f3
Recommends:     python3dist(scipy) >= 1.10
4898f3
# python-numba is not currently packaged:
4898f3
# BuildRequires:  python3dist(numba) >= 0.56.4
4898f3
# Recommends:     python3dist(numba) >= 0.56.4
4898f3
BuildRequires:  python3dist(xarray) >= 2022.12.0
4898f3
Recommends:     python3dist(xarray) >= 2022.12.0
4898f3
4898f3
# Excel files
4898f3
BuildRequires:  python3dist(xlrd) >= 2.0.1
4898f3
Recommends:     python3dist(xlrd) >= 2.0.1
4898f3
BuildRequires:  python3dist(xlsxwriter) >= 3.0.5
4898f3
Recommends:     python3dist(xlsxwriter) >= 3.0.5
4898f3
BuildRequires:  python3dist(openpyxl) >= 3.1
4898f3
Recommends:     python3dist(openpyxl) >= 3.1
4898f3
# python-calamine is not currently packaged:
4898f3
# BuildRequires:  python3dist(python-calamine) >= 0.1.7
4898f3
# Recommends:     python3dist(python-calamine) >= 0.1.7
4898f3
# python-pyxlsb is not currently packaged:
4898f3
# BuildRequires:  python3dist(pyxlsb) >= 1.0.10
4898f3
# Recommends:     python3dist(pyxlsb) >= 1.0.10
4898f3
# Not in doc/source/getting_started/install.rst, but in environment.yml and in
4898f3
# some doc-strings:
4898f3
BuildRequires:  python3dist(odfpy) >= 1.4.1
4898f3
Recommends:     python3dist(odfpy) >= 1.4.1
4898f3
4898f3
# HTML
4898f3
BuildRequires:  python3dist(beautifulsoup4) >= 4.11.2
4898f3
Recommends:     python3dist(beautifulsoup4) >= 4.11.2
4898f3
BuildRequires:  python3dist(html5lib) >= 1.1
4898f3
Recommends:     python3dist(html5lib) >= 1.1
4898f3
# lxml handled below:
4898f3
4898f3
# XML
4898f3
BuildRequires:  python3dist(lxml) >= 4.9.2
4898f3
Recommends:     python3dist(lxml) >= 4.9.2
4898f3
4898f3
# SQL databases
4898f3
BuildRequires:  python3dist(sqlalchemy) >= 2
4898f3
Recommends:     python3dist(sqlalchemy) >= 2
4898f3
BuildRequires:  python3dist(psycopg2) >= 2.9.6
4898f3
Recommends:     python3dist(psycopg2) >= 2.9.6
4898f3
BuildRequires:  python3dist(pymysql) >= 1.0.2
4898f3
Recommends:     python3dist(pymysql) >= 1.0.2
4898f3
4898f3
# Other data sources
4898f3
%if 0%{?__isa_bits} != 32
4898f3
# blosc2 does not support 32-bit architectures:
4898f3
BuildRequires:  python3dist(tables) >= 3.8
4898f3
Recommends:     python3dist(tables) >= 3.8
4898f3
%endif
4898f3
# Dependencies on blosc and zlib are indirect, via PyTables, so we do not
4898f3
# encode them here. Note also that the minimum blosc version in the
4898f3
# documentation seems to be that of the blosc C library, not of the blosc PyPI
4898f3
# package.
4898f3
# python-fastparquet is not currently packaged:
4898f3
# BuildRequires:  python3dist(fastparquet) >= 2022.12.0
4898f3
# Recommends:     python3dist(fastparquet) >= 2022.12.0
4898f3
# libarrow does not support 32-bit architectures:
4898f3
%if 0%{?__isa_bits} != 32
4898f3
BuildRequires:  python3dist(pyarrow) >= 10.0.1
4898f3
Recommends:     python3dist(pyarrow) >= 10.0.1
4898f3
%endif
4898f3
# python-pyreadstat is not currently packaged:
4898f3
# BuildRequires:  python3dist(pyreadstat) >= 1.2
4898f3
# Recommends:     python3dist(pyreadstat) >= 1.2
4898f3
4898f3
# Access data in the cloud
4898f3
BuildRequires:  python3dist(fsspec) >= 2022.11
4898f3
Recommends:     python3dist(fsspec) >= 2022.11
4898f3
BuildRequires:  python3dist(gcsfs) >= 2022.11
4898f3
Recommends:     python3dist(gcsfs) >= 2022.11
4898f3
# python-pandas-gbq is not currently packaged:
4898f3
# BuildRequires:  python3dist(pandas-gbq) >= 0.19
4898f3
# Recommends:     python3dist(pandas-gbq) >= 0.19
4898f3
# python-s3fs is not currently packaged:
4898f3
# BuildRequires:  python3dist(s3fs) >= 2022.11
4898f3
# Recommends:     python3dist(s3fs) >= 2022.11
4898f3
4898f3
# Clipboard
4898f3
BuildRequires:  python3dist(pyqt5)
4898f3
Recommends:     python3dist(pyqt5)
4898f3
BuildRequires:  python3dist(qtpy)
4898f3
Recommends:     python3dist(qtpy)
4898f3
BuildRequires:  xclip
4898f3
Recommends:     xclip
4898f3
BuildRequires:  xsel
4898f3
Recommends:     xsel
4898f3
4898f3
# Compression
4898f3
BuildRequires:  python3dist(zstandard) >= 0.19
4898f3
Recommends:     python3dist(zstandard) >= 0.19
4898f3
4898f3
# This is just an “ecosystem” package in the upstream documentation, but there
4898f3
# is an integration test for it. This package historically had a weak
4898f3
# dependency on it, but this was unnecessary.
4898f3
BuildRequires:  python3dist(pandas-datareader)
4898f3
4898f3
%endif
4898f3
4898f3
%description -n python3-pandas %_description
4898f3
4898f3
4898f3
%package -n python3-pandas+test
4898f3
Summary:        Tests and test extras for Pandas
4898f3
4898f3
# See comment above base package License tag for licensing breakdown.
4898f3
License:        BSD-3-Clause AND MIT
4898f3
4898f3
Requires:       python3-pandas%{?_isa} = %{version}-%{release}
4898f3
4898f3
%if %{without bootstrap}
4898f3
4898f3
# Additional BR’s and weak dependencies below are generally those that don’t
4898f3
# provide enough added functionality to be weak dependencies of the library
4898f3
# package, but for which there is some integration support and additional tests
4898f3
# that can be enabled.
4898f3
4898f3
# Additional dependencies from environment.yml: “testing”
4898f3
# Those not in the “test” extra are treated as weak dependencies for the tests.
4898f3
BuildRequires:  python3dist(boto3)
4898f3
Recommends:     python3dist(boto3)
4898f3
BuildRequires:  python3dist(botocore) >= 1.11
4898f3
Recommends:     python3dist(botocore) >= 1.11
4898f3
# Already covered by “test” extra
4898f3
# BuildRequires:  python3dist(hypothesis) >= 3.82
4898f3
# Recommends:     python3dist(hypothesis) >= 3.82
4898f3
# python-moto is not yet packaged
4898f3
# BuildRequires:  python3dist(moto)
4898f3
# Recommends:     python3dist(moto)
4898f3
BuildRequires:  python3dist(flask)
4898f3
Recommends:     python3dist(flask)
4898f3
# Already covered by “test” extra
4898f3
# BuildRequires:  python3dist(pytest) >= 5.0.1
4898f3
# Requires:       python3dist(pytest) >= 5.0.1
4898f3
# Already covered by “test” extra
4898f3
# BuildRequires:  python3dist(pytest-xdist) >= 1.21
4898f3
# Requires:       python3dist(pytest-xdist) >= 1.21
4898f3
BuildRequires:  python3dist(pytest-asyncio)
4898f3
Recommends:     python3dist(pytest-asyncio)
4898f3
# python-pytest-instafail is not yet packaged
4898f3
# BuildRequires:  python3dist(pytest-instafail)
4898f3
# Recommends:     python3dist(pytest-instafail)
4898f3
4898f3
# Additional dependencies from environment.yml:
4898f3
# “Dask and its dependencies (that dont install with dask)”
4898f3
# Asks for dask-core, but we just have dask
4898f3
BuildRequires:  python3dist(dask)
4898f3
Recommends:     python3dist(dask)
4898f3
BuildRequires:  python3dist(toolz) >= 0.7.3
4898f3
Recommends:     python3dist(toolz) >= 0.7.3
4898f3
BuildRequires:  python3dist(partd) >= 0.3.10
4898f3
Recommends:     python3dist(partd) >= 0.3.10
4898f3
BuildRequires:  python3dist(cloudpickle) >= 0.2.1
4898f3
Recommends:     python3dist(cloudpickle) >= 0.2.1
4898f3
4898f3
# Additional dependencies from environment.yml: “downstream tests”
4898f3
BuildRequires:  python3dist(seaborn)
4898f3
Recommends:     python3dist(seaborn)
4898f3
BuildRequires:  python3dist(statsmodels)
4898f3
Recommends:     python3dist(statsmodels)
4898f3
4898f3
# environment.yml: Needed for downstream xarray.CFTimeIndex test
4898f3
BuildRequires:  python3dist(cftime)
4898f3
Recommends:     python3dist(cftime)
4898f3
4898f3
# environment.yml: optional
4898f3
BuildRequires:  python3dist(ipython) >= 7.11.1
4898f3
Recommends:     python3dist(ipython) >= 7.11.1
4898f3
4898f3
# pandas/tests/io/data/spss/*.sav:
4898f3
#
4898f3
# From Haven
4898f3
Provides:       bundled(R-haven)
4898f3
4898f3
# pandas/tests/window/test_rolling.py: test_rolling_std_neg_sqrt()
4898f3
#
4898f3
#   unit test from Bottleneck
4898f3
#
4898f3
# There is no reasonable path to unbundling a single unit test.
4898f3
Provides:       bundled(python3dist(bottleneck))
4898f3
4898f3
%endif
4898f3
4898f3
4898f3
%description -n python3-pandas+test
4898f3
These are the tests for python3-pandas. This package:
4898f3
4898f3
• Provides the “pandas.tests” package
4898f3
• Makes sure the “test” extra dependencies are installed
4898f3
• Carries additonal weak dependencies for running the tests
4898f3
4898f3
4898f3
%prep
4898f3
%autosetup -n pandas-%{version} -p1
4898f3
4898f3
# Let versioneer know what version this is
4898f3
echo '__version__="%{version}"' > _version_meson.py
4898f3
4898f3
# Ensure Cython-generated sources are re-generated
4898f3
rm -vf $(grep -rl '/\* Generated by Cython')
4898f3
4898f3
# We just want to build with the numpy in Fedora:
4898f3
sed -r -i '/\boldest-supported-numpy\b/d' pyproject.toml
4898f3
4898f3
# We don't need the python tzdata package because we have the system tzdata package
4898f3
sed -i '/tzdata>=2022.7/d' pyproject.toml
4898f3
4898f3
# Unpin meson
4898f3
sed -i 's/meson-python==0.13.1/meson-python>=0.13.1/' pyproject.toml
4898f3
sed -i 's/meson==1.2.1/meson>=1.2.1/' pyproject.toml
4898f3
4898f3
# Unpin Cython
4898f3
sed -i 's/Cython==3.0.5/Cython>=3.0.5/' pyproject.toml
4898f3
4898f3
%generate_buildrequires
4898f3
# the build is expensive, so we don't use -w
4898f3
# we list the runtime and test BuildRequires manually
4898f3
%pyproject_buildrequires -R
4898f3
4898f3
4898f3
%build
4898f3
%pyproject_wheel
4898f3
4898f3
4898f3
%install
4898f3
%pyproject_install
4898f3
%pyproject_save_files pandas
4898f3
4898f3
4898f3
%check
4898f3
%if %{with tests}
4898f3
m="${m-}${m+ and }not network"
4898f3
m="${m-}${m+ and }not db"
4898f3
%if %{without slow_tests}
4898f3
m="${m-}${m+ and }not slow"
4898f3
%endif
4898f3
# Clipboard tests don’t run without a graphical session, and it’s not worth
4898f3
# using xvfb-run just for them.
4898f3
m="${m-}${m+ and }not clipboard"
4898f3
%if %{without single_tests}
4898f3
m="${m-}${m+ and }not single"
4898f3
%endif
4898f3
4898f3
# This test allocates a huge amount of memory (~12GB), which causes flaky OOM
4898f3
# failures on some builders. It’s not worth it.
4898f3
# https://github.com/pandas-dev/pandas/issues/45223#issuecomment-1250912663
4898f3
k="${k-}${k+ and }not test_bytes_exceed_2gb"
4898f3
4898f3
# This test (only) expects the current working directory to be the
4898f3
# site-packages directory containing the built pandas. This is not how we run
4898f3
# the tests, because we don’t want to clutter the buildroot with
4898f3
# testing-related hidden files and directories. We could run tests from
4898f3
# %%pyproject_build_lib if this were a problem for a lot of tests, but it’s
4898f3
# easier just to skip it.
4898f3
k="${k-}${k+ and }not test_html_template_extends_options"
4898f3
4898f3
# Those tests started failing as of 2024-04-12. Not sure why, though.
4898f3
# Dask wasn't updated at the time.
4898f3
# > return get(descriptor, obj, type(obj))
4898f3
# E   TypeError: descriptor '__call__' for 'type' objects doesn't apply to a 'property' object
4898f3
# and
4898f3
# [XPASS(strict)] pyarrow doesn't support this
4898f3
k="${k-}${k+ and }not test_dask"
4898f3
k="${k-}${k+ and }not test_construct_dask_float_array"
4898f3
k="${k-}${k+ and }not test_multi_thread_string_io_read_csv[pyarrow]"
4898f3
4898f3
# Two tests started failing with matplotlib >= 3.9.0
4898f3
# E   matplotlib._api.deprecation.MatplotlibDeprecationWarning:
4898f3
# The plot_date function was deprecated in Matplotlib 3.9
4898f3
# and will be removed in 3.11. Use plot instead.
4898f3
#
4898f3
# E   UserWarning: No artists with labels found to put in legend.
4898f3
# Note that artists whose label start with an underscore are ignored
4898f3
# when legend() is called with no argument.
4898f3
k="${k-}${k+ and }not test_mpl_nopandas"
4898f3
k="${k-}${k+ and }not test_plot_scatter_shape"
4898f3
4898f3
%ifarch %{ix86}
4898f3
# These failures are i686-specific; most are likely 32-bit issues. It’s not
4898f3
# really worth trying to fix them.
4898f3
4898f3
# E   AssertionError: DataFrame.iloc[:, 2] (column name="C") are different
4898f3
# E
4898f3
# E   DataFrame.iloc[:, 2] (column name="C") values are different (11.66363 %)
4898f3
# E   [index]: [0, 1, …
4898f3
# Fails for [left], [right], [outer], and [inner]
4898f3
k="${k-}${k+ and }not (TestMerge and test_int64_overflow_how_merge)"
4898f3
4898f3
# E       AssertionError: DataFrame.index are different
4898f3
# E
4898f3
# E       Attribute "dtype" are different
4898f3
# E       [left]:  int32
4898f3
# E       [right]: int64
4898f3
k="${k-}${k+ and }not (TestMerge and test_int64_overflow_sort_false_order)"
4898f3
4898f3
# E           AssertionError: Attributes of DataFrame.iloc[:, 1] (column name="b") are different
4898f3
# E
4898f3
# E           Attribute "dtype" are different
4898f3
# E           [left]:  int32
4898f3
# E           [right]: int64
4898f3
k="${k-}${k+ and }not test_frame_setitem_dask_array_into_new_col"
4898f3
4898f3
# E       IndexError: index 0 is out of bounds for axis 0 with size 0
4898f3
k="${k-}${k+ and }not (TestPivotTable and test_pivot_number_of_levels_larger_than_int32)"
4898f3
k="${k-}${k+ and }not (TestStackUnstackMultiLevel and test_unstack_number_of_levels_larger_than_int32)"
4898f3
4898f3
# [XPASS(strict)] Floating point error
4898f3
k="${k-}${k+ and }not (TestTimedeltas and test_to_timedelta_float)"
4898f3
%endif
4898f3
4898f3
%ifarch s390x
4898f3
# Note that pandas does not test big-endian support but will happily accept
4898f3
# patches to improve it:
4898f3
# https://github.com/pandas-dev/pandas/issues/4737#issuecomment-1090931741
4898f3
4898f3
# TODO: Why does this fail?
4898f3
#
4898f3
# >                   os.fsync(self._handle.fileno())
4898f3
# E                   OverflowError: Python int too large to convert to C int
4898f3
k="${k-}${k+ and }not test_flush"
4898f3
4898f3
# TODO: Why does this fail? The differences are large!
4898f3
k="${k-}${k+ and }not test_rolling_var_numerical_issues"
4898f3
4898f3
# These are a cluster of similar pyarrow/parquet tests with apparent endianness
4898f3
# issues. It is not immediately obvious where the bug is—in the library or in
4898f3
# the tests?
4898f3
k="${k-}${k+ and }not (TestBasic and test_dtype_backend[pyarrow])"
4898f3
k="${k-}${k+ and }not (TestBasic and test_multiindex_with_columns)"
4898f3
k="${k-}${k+ and }not (TestBasic and test_write_column_index_nonstring[pyarrow])"
4898f3
k="${k-}${k+ and }not (TestBasic and test_write_column_index_string)"
4898f3
k="${k-}${k+ and }not (TestBasic and test_write_column_multiindex[pyarrow])"
4898f3
k="${k-}${k+ and }not (TestBasic and test_write_column_multiindex_nonstring[pyarrow])"
4898f3
k="${k-}${k+ and }not (TestBasic and test_write_column_multiindex_string)"
4898f3
k="${k-}${k+ and }not (TestParquetPyArrow and test_basic)"
4898f3
k="${k-}${k+ and }not (TestParquetPyArrow and test_to_bytes_without_path_or_buf_provided)"
4898f3
k="${k-}${k+ and }not (TestParquetPyArrow and test_categorical)"
4898f3
k="${k-}${k+ and }not (TestParquetPyArrow and test_additional_extension_arrays)"
4898f3
k="${k-}${k+ and }not (TestParquetPyArrow and test_pyarrow_backed_string_array[python])"
4898f3
k="${k-}${k+ and }not (TestParquetPyArrow and test_pyarrow_backed_string_array[pyarrow])"
4898f3
k="${k-}${k+ and }not (TestParquetPyArrow and test_additional_extension_types)"
4898f3
k="${k-}${k+ and }not (TestParquetPyArrow and test_infer_string_large_string_type)"
4898f3
k="${k-}${k+ and }not (TestParquetPyArrow and test_read_dtype_backend_pyarrow_config)"
4898f3
k="${k-}${k+ and }not (TestParquetPyArrow and test_read_dtype_backend_pyarrow_config_index)"
4898f3
k="${k-}${k+ and }not (TestParquetPyArrow and test_roundtrip_decimal)"
4898f3
k="${k-}${k+ and }not test_to_read_gcs[parquet]"
4898f3
4898f3
# Similarly, there are a cluster of similar stata test failures for which the
4898f3
# root cause is not immediately obvious.
4898f3
k="${k-}${k+ and }not (TestStata and test_writer_117)"
4898f3
k="${k-}${k+ and }not (TestStata and test_convert_strl_name_swap)"
4898f3
k="${k-}${k+ and }not (TestStata and test_strl_latin1)"
4898f3
# Fails for [118], [119], and [None]
4898f3
k="${k-}${k+ and }not (TestStata and test_utf8_writer)"
4898f3
4898f3
# These crash, and are probably a blosc2 or PyTables issue.
4898f3
k="${k-}${k+ and }not test_complibs[blosc2"
4898f3
%endif
4898f3
4898f3
4898f3
%ifarch x86_64
4898f3
# These are brittle and fail with tiny floating-point differences on COPR
4898f3
# builders but not Koji builders, like:
4898f3
# >           raise_assert_detail(obj, msg, left, right, index_values=index_values)
4898f3
# E           AssertionError: numpy array are different
4898f3
# E
4898f3
# E           numpy array values are different (16.66667 %)
4898f3
# E           [left]:  [0.09999999999999999, 1.0, 10.0, 100.0, 1000.0, 10000.0]
4898f3
# E           [right]: [0.1, 1.0, 10.0, 100.0, 1000.0, 10000.0]
4898f3
k="${k-}${k+ and }not (TestSeriesPlots and test_bar_log)"
4898f3
k="${k-}${k+ and }not (TestDataFramePlotsSubplots and test_bar_log_no_subplots)"
4898f3
k="${k-}${k+ and }not (TestDataFramePlotsSubplots and test_bar_log_subplots)"
4898f3
%endif
4898f3
4898f3
# Ensure pytest doesn’t find the “un-built” library. We can get away with this
4898f3
# approach because the tests are also in the installed library. We can’t simply
4898f3
# “cd” to the buildroot’s python3_sitearch because testing leaves files in the
4898f3
# current working directory.
4898f3
mkdir -p _empty
4898f3
cd _empty
4898f3
4898f3
# See: test_fast.sh
4898f3
# Workaround for pytest-xdist flaky collection order
4898f3
# https://github.com/pytest-dev/pytest/issues/920
4898f3
# https://github.com/pytest-dev/pytest/issues/1075
4898f3
export PYTHONHASHSEED="$(
4898f3
  %{python3} -c 'import random; print(random.randint(1, 4294967295))'
4898f3
)"
4898f3
4898f3
# Previously, we ran tests in parallel. Upstream seems to support this;
4898f3
# however, in practice, there were still some flaky test failures that seem to
4898f3
# be fixed by eschewing parallelism (-n 1).
4898f3
#
4898f3
# If we start running tests in parallel again in the future, note that on
4898f3
# 32-bit platforms (%%if 0%%{?__isa_bits} == 32) it may be necessary to limit
4898f3
# the number of concurrent tests to e.g. 8 in order to prevent memory
4898f3
# exhaustion.
4898f3
%pytest -v '%{buildroot}%{python3_sitearch}/pandas' \
4898f3
    -o cache_dir="$PWD/pytest-cache" \
4898f3
    --no-strict-data-files \
4898f3
    -m "${m-}" \
4898f3
    -k "${k-}" \
4898f3
    -n 1 \
4898f3
    -r sxX
4898f3
4898f3
%else
4898f3
# Some imports require optional dependencies, and must be excluded during
4898f3
# bootstrapping.
4898f3
%{pyproject_check_import \
4898f3
  %{?with_bootstrap:-e 'pandas.io.formats.style'} \
4898f3
  %{?with_bootstrap:-e 'pandas.io.formats.style_render'} \
4898f3
  %{?with_bootstrap:-e 'pandas.core.arrays.arrow.extension_types'} \
4898f3
  -e 'pandas.conftest' \
4898f3
  -e 'pandas.tests.*'}
4898f3
%endif
4898f3
4898f3
4898f3
%files -n python3-pandas -f %{pyproject_files}
4898f3
# While pyproject_files automatically handles the LICENSE file in the Python
4898f3
# package’s dist-info directory, we also want to package the entire LICENSES/
4898f3
# directory to include third-party license text.  We include a second copy of
4898f3
# the LICENSE file since it would be surprising to see a license directory for
4898f3
# the package without the overall license file in it.
4898f3
%license LICENSE LICENSES/
4898f3
%doc README.md
4898f3
%exclude %{python3_sitearch}/pandas/tests
4898f3
4898f3
4898f3
%files -n python3-pandas+test
4898f3
%{python3_sitearch}/pandas/tests
4898f3
%ghost %{python3_sitearch}/*.dist-info
4898f3
4898f3
4898f3
%changelog
4898f3
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.1-7
4898f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
4898f3
4898f3
* Wed Jun 26 2024 Orion Poplawski <orion@nwra.com> - 2.2.1-6
4898f3
- Add upstream patch to fix tests with Python 3.13
4898f3
4898f3
* Tue Jun 18 2024 Python Maint <python-maint@redhat.com> - 2.2.1-5
4898f3
- Rebuilt for Python 3.13
4898f3
4898f3
* Sat Jun 08 2024 Python Maint <python-maint@redhat.com> - 2.2.1-4
4898f3
- Bootstrap for Python 3.13
4898f3
4898f3
* Mon May 06 2024 Sandro <devel@penguinpee.nl> - 2.2.1-3
4898f3
- Stop building for i686
4898f3
4898f3
* Mon Mar 11 2024 Sandro <devel@penguinpee.nl> - 2.2.1-2
4898f3
- Drop dependency on dask for i686
4898f3
4898f3
* Fri Feb 23 2024 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 2.2.1-1
4898f3
- Update to 2.2.1
4898f3
4898f3
* Mon Feb 12 2024 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 2.2.0-1
4898f3
- Update to 2.2.0
4898f3
4898f3
* Fri Feb 9 2024 Miro Hrončok <mhroncok@redhat.com> - 2.1.4-1
4898f3
- Update to 2.1.4
4898f3
4898f3
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.3-10
4898f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
4898f3
4898f3
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.3-9
4898f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
4898f3
4898f3
* Thu Jul 20 2023 Python Maint <python-maint@redhat.com> - 1.5.3-8
4898f3
- Rebuilt for Python 3.12
4898f3
4898f3
* Wed Jul 19 2023 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1.5.3-7
4898f3
- Backport patch for Python 3.12 deprecation
4898f3
4898f3
* Wed Jun 14 2023 Python Maint <python-maint@redhat.com> - 1.5.3-6
4898f3
- Bootstrap for Python 3.12
4898f3
4898f3
* Mon May 29 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 1.5.3-5
4898f3
- Simplify running tests serially
4898f3
4898f3
* Tue May 16 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 1.5.3-4
4898f3
- Extend pyarrow 10/11 patch for pyarrow 12 (fix RHBZ#2207628)
4898f3
4898f3
* Wed Apr 19 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 1.5.3-3
4898f3
- Drop unnecessary weak dependency on python-pandas-datareader
4898f3
- Backport proper pyarrow 10 and 11 support
4898f3
4898f3
* Thu Apr 13 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 1.5.3-2
4898f3
- Fix RHBZ#2171682 by backporting upstream PR#52150
4898f3
4898f3
* Mon Feb 27 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 1.5.3-1
4898f3
- Update to 1.5.3 (close RHBZ#2162303)
4898f3
4898f3
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.2-2
4898f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
4898f3
4898f3
* Sun Dec 04 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 1.5.2-1
4898f3
- Update to 1.5.2
4898f3
- Re-enable python-gcsfs BR/weak-dep. on F38 and later
4898f3
- Work around a harmless test failure with libarrow/pyarrow 10
4898f3
- Allow a slightly older numpy version for F37
4898f3
- Skip a test that sometimes hangs on aarch64 and ppc64le
4898f3
- Additional test skips for F37
4898f3
- Drop some test skips that are no longer needed
4898f3
- Fix several flaky test failures by no longer running tests in parallel
4898f3
4898f3
* Wed Nov 23 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 1.5.1-2
4898f3
- Update license breakdown and convert to SPDX
4898f3
- Fully update optional dependencies and their versions
4898f3
- Do not BR/Recommend pyarrow on 32-bit arches, where it is unavailable
4898f3
- Drop accommodations for 32-bit ARM and Fedoras older than 36
4898f3
- Update test skips for i686
4898f3
4898f3
* Mon Nov 07 2022 Jonathan Wright <jonathan@almalinux.org> - 1.5.1-1
4898f3
- Update to 1.5.1 rhbz#2014890
4898f3
4898f3
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.5-4
4898f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
4898f3
4898f3
* Wed Jun 29 2022 Python Maint <python-maint@redhat.com> - 1.3.5-3
4898f3
- Rebuilt for Python 3.11
4898f3
4898f3
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 1.3.5-2
4898f3
- Bootstrap for Python 3.11
4898f3
4898f3
* Sat Apr 02 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 1.3.5-1
4898f3
- Update to 1.3.5
4898f3
- Drop compatibility with old RHEL releases that will not get this version anyway
4898f3
- Update weak dependencies from documentation
4898f3
- Also package README.md
4898f3
- Do not install C sources
4898f3
- Carefully handle virtual Provides and licenses for bundled/copied code
4898f3
- Use pyproject-rpm-macros
4898f3
- Run the tests (requires switching to GitHub source)
4898f3
- Minimize optional dependencies when bootstrapping
4898f3
4898f3
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.3-3
4898f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
4898f3
4898f3
* Thu Oct 07 2021 Sergio Pascual <sergiopr@fedoraproject.org> - 1.3.3-2
4898f3
- New release of pandas 1.3.3
4898f3
- Add missing sources
4898f3
4898f3
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0-2
4898f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
4898f3
4898f3
* Wed Jul 21 2021 Sergio Pascual <sergiopr@fedoraproject.org> - 1.3.0-1
4898f3
- New release of pandas 1.3.0
4898f3
4898f3
* Mon Jun 07 2021 Python Maint <python-maint@redhat.com> - 1.2.4-2
4898f3
- Rebuilt for Python 3.10
4898f3
4898f3
* Fri Jun 04 2021 Sergio Pascual <sergiopr@fedoraproject.org> - 1.2.4-1
4898f3
- New release of pandas 1.2.4
4898f3
4898f3
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 1.2.1-3
4898f3
- Rebuilt for Python 3.10
4898f3
4898f3
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1-2
4898f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
4898f3
4898f3
* Sun Jan 24 2021 Orion Poplawski <orion@nwra.com> - 1.2.1-1
4898f3
- Update to 1.2.1
4898f3
4898f3
* Wed Jan 13 2021 Sergio Pascual <sergiopr@fedoraproject.org> - 1.2.0-1
4898f3
- New release of pandas 1.2.0
4898f3
4898f3
* Fri Nov 27 2020 Sergio Pascual <sergiopr@fedoraproject.org> - 1.1.4-1
4898f3
- New release of pandas 1.1.4
4898f3
4898f3
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.5-2
4898f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
4898f3
4898f3
* Sun Jul 05 2020 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 1.0.5-1
4898f3
- Update to latest version
4898f3
4898f3
* Mon May 25 2020 Miro Hrončok <mhroncok@redhat.com> - 1.0.1-2
4898f3
- Rebuilt for Python 3.9
4898f3
4898f3
* Fri Feb 07 2020 Orion Poplawski <orion@nwra.com> - 1.0.1-1
4898f3
- Update to 1.0.1
4898f3
4898f3
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.25.3-2
4898f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
4898f3
4898f3
* Mon Nov 11 2019 Sergio Pascual <sergiopr@fedoraproject.org> - 0.25.3-1
4898f3
- New release of pandas 0.25.3 (python 3.8 support included)
4898f3
4898f3
* Fri Sep 13 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.25.1-2
4898f3
- Backport patch for Python 3.8 compatibility
4898f3
4898f3
* Sat Aug 24 2019 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.25.1-1
4898f3
- Update to latest version
4898f3
4898f3
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.24.1-5
4898f3
- Rebuilt for Python 3.8
4898f3
4898f3
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.24.1-4
4898f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
4898f3
4898f3
* Thu Jun 27 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.24.1-3
4898f3
- Fix doc build with numpydoc 0.9
4898f3
4898f3
* Tue Jun 18 2019 Miro Hrončok <mhroncok@redhat.com> - 0.24.1-2
4898f3
- Subpackage python2-pandas has been removed
4898f3
  See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
4898f3
4898f3
* Thu Mar 07 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 0.24.1-1
4898f3
- Update to 0.24.1
4898f3
4898f3
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.23.4-2
4898f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
4898f3
4898f3
* Tue Aug 21 2018 Sergio Pascual <sergiopr@fedoraproject.org> - 0.23.4-1
4898f3
- New release of pandas 0.23.4
4898f3
4898f3
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.23.0-3
4898f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
4898f3
4898f3
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.23.0-2
4898f3
- Rebuilt for Python 3.7
4898f3
4898f3
* Tue Jun 05 2018 Sergio Pascual <sergiopr@fedoraproject.org> - 0.23.0-1
4898f3
- New release of pandas 0.23.0
4898f3
4898f3
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.22.0-2
4898f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
4898f3
4898f3
* Wed Jan 17 2018 Sergio Pascual <sergiopr@fedoraproject.org> - 0.22.0-1
4898f3
- New release of pandas 0.22.0
4898f3
4898f3
* Tue Jan 16 2018 Troy Dawson <tdawson@redhat.com> - 0.20.3-2
4898f3
- Update conditionals
4898f3
4898f3
* Sun Sep 10 2017 Sergio Pascual <sergiopr@fedoraproject.org> - 0.20.3-1
4898f3
- New upstream version (0.20.3)
4898f3
4898f3
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.20.1-3
4898f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
4898f3
4898f3
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.20.1-2
4898f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
4898f3
4898f3
* Mon May 15 2017 Sergio Pascual <sergiopr@fedoraproject.org> - 0.20.1-1
4898f3
- New upstream version (0.20.1)
4898f3
4898f3
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.19.2-2
4898f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
4898f3
4898f3
* Fri Jan 27 2017 Sergio Pascual <sergiopr@fedoraproject.org> - 0.19.2-1
4898f3
- New upstream version (0.19.2)
4898f3
4898f3
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.19.1-2
4898f3
- Rebuild for Python 3.6
4898f3
4898f3
* Wed Nov 09 2016 Sergio Pascual <sergiopr@fedoraproject.org> - 0.19.1-1
4898f3
- New upstream version (0.19.1)
4898f3
4898f3
* Wed Oct 19 2016 Sergio Pascual <sergiopr@fedoraproject.org> - 0.19.0-1
4898f3
- New upstream version (0.19.0)
4898f3
- Brings pandas-datareader using recommends
4898f3
4898f3
* Sat Oct 15 2016 Peter Robinson <pbrobinson@fedoraproject.org> - 0.18.1-3
4898f3
- rebuilt for matplotlib-2.0.0
4898f3
4898f3
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.18.1-2
4898f3
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
4898f3
4898f3
* Wed Jul 13 2016 Sergio Pascual <sergiopr@fedoraproject.org> - 0.18.1-1
4898f3
- New upstream version (0.18.1)
4898f3
- Update pypi url
4898f3
4898f3
* Sat Apr 09 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.18.0-3
4898f3
- Fix broken deps
4898f3
4898f3
* Sat Apr 09 2016 Igor Gnatenko <ignatenko@redhat.com> - 0.18.0-2
4898f3
- Fix python_provide macros usage (FTBFS for some packages)
4898f3
4898f3
* Wed Mar 30 2016 Sergio Pascual <sergiopr@fedoraproject.org> - 0.18.0-1
4898f3
- New upstream version (0.18.0)
4898f3
4898f3
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.17.1-2
4898f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
4898f3
4898f3
* Sun Jan 03 2016 Sergio Pascual <sergiopr@fedoraproject.org> - 0.17.1-1
4898f3
- New upstream version (0.17.1)
4898f3
- Add new dependecy as weak dep (fixes bz #1288919)
4898f3
4898f3
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17.0-3
4898f3
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
4898f3
4898f3
* Wed Oct 28 2015 Orion Poplawski <orion@cora.nwra.com> - 0.17.0-2
4898f3
- Use common build directory, new python macros
4898f3
- Filter provides
4898f3
- Fix provides
4898f3
4898f3
* Mon Oct 12 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 0.17.0-1
4898f3
- New release of pandas 0.17.0
4898f3
4898f3
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.16.2-2
4898f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
4898f3
4898f3
* Mon Jun 15 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 0.16.2-1
4898f3
- New release of pandas 0.16.2
4898f3
4898f3
* Mon May 18 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 0.16.1-1
4898f3
- New release of pandas 0.16.1
4898f3
4898f3
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 0.16.0-2
4898f3
- Rebuilt for GCC 5 C++11 ABI change
4898f3
4898f3
* Tue Mar 24 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 0.16.0-1
4898f3
- New release of pandas 0.16.0
4898f3
- Use license macro
4898f3
- Don't use py3dir (new python guidelines)
4898f3
4898f3
* Tue Jan 20 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 0.15.2-3
4898f3
- Pandas actually supports dateutil 2
4898f3
4898f3
* Mon Jan 19 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 0.15.2-2
4898f3
- Update dependency on dateutil to dateutil15 (bz #1183368)
4898f3
4898f3
* Wed Dec 17 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.15.2-1
4898f3
- New release of pandas 0.15.2
4898f3
4898f3
* Thu Nov 20 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.15.1-1
4898f3
- New release of pandas 0.15.1
4898f3
4898f3
* Mon Oct 20 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.15.0-1
4898f3
- New release of pandas 0.15.0
4898f3
4898f3
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.14.1-2
4898f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
4898f3
4898f3
* Sun Jul 13 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.14.1-1
4898f3
- New release of pandas 0.14.1
4898f3
4898f3
* Mon Jun 16 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.14.0-1
4898f3
- New release of pandas 0.14.0
4898f3
4898f3
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12.0-6
4898f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
4898f3
4898f3
* Wed May 14 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 0.12.0-5
4898f3
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
4898f3
4898f3
* Tue Jan 28 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.12.0-4
4898f3
- Enable python3 build
4898f3
- Set CFLAGS before build
4898f3
4898f3
* Fri Dec 13 2013 Kushal Das <kushal@fedoraproject.org> 0.12.0-3
4898f3
- Fixed dependency name
4898f3
4898f3
* Fri Dec 06 2013 Pierre-Yves Chibon <pingou@pingoured>fr - 0.12.0-2
4898f3
- Change BR from python-setuptools-devel to python-setuptools
4898f3
  See https://fedoraproject.org/wiki/Changes/Remove_Python-setuptools-devel
4898f3
4898f3
* Fri Sep 20 2013 Kushal Das <kushal@fedoraproject.org> 0.12.0-1
4898f3
- New release of pandas 0.12.0
4898f3
4898f3
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.0-3
4898f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
4898f3
4898f3
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.0-2
4898f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
4898f3
4898f3
* Mon Dec 24 2012 Kushal Das <kushal@fedoraproject.org> 0.10.0-1
4898f3
- New release of pandas 0.10.0
4898f3
4898f3
* Thu Nov 08 2012 Kushal Das <kushal@fedoraproject.org> 0.10.0-1
4898f3
- New release of pandas 0.10.0
4898f3
4898f3
* Thu Nov 08 2012 Kushal Das <kushal@fedoraproject.org> 0.9-1
4898f3
- New release of pandas
4898f3
4898f3
* Fri Aug 03 2012 Kushal Das <kushal@fedoraproject.org> 0.8.1-2
4898f3
- Fixes from review request
4898f3
4898f3
* Tue Jul 10 2012 Kushal Das <kushal@fedoraproject.org> 0.8.1-1
4898f3
- Initial release in Fedora