# Template file for 'python3-pandas' pkgname=python3-pandas version=1.5.0 revision=2 wrksrc="pandas-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Cython python3-numpy" makedepends="python3-devel python3-numpy python3-dateutil python3-pytz" depends="python3-numpy python3-dateutil python3-pytz" checkdepends="python3-pytest-xdist python3-pytest-asyncio python3-hypothesis $depends" short_desc="Python3 data analysis library" maintainer="Andrew J. Hesford " license="BSD-3-Clause" homepage="https://pandas.pydata.org/" changelog="https://pandas.pydata.org/pandas-docs/stable/whatsnew/index.html" distfiles="https://github.com/pandas-dev/pandas/archive/v${version}.tar.gz" checksum=ab23595e2105e2595b14c37f5e88a24d065eb60432e9f45c78f8613ba956eacd # Builds seem to sometimes have missing symbol problems; # the intermittent nature suggests this might be a race disable_parallel_build=yes pre_build() { # Try to avoid i686 build failure case "$XBPS_TARGET_MACHINE" in i686*) CFLAGS="${CFLAGS// -g/ -g1}" CXXFLAGS="${CXXFLAGS// -g/ -g1}" ;; esac } do_check() { # The test_raw_roundtrip relies on a clipboard # S3 tests seem to require python3-pytest-xdist PYTHONPATH="$(cd build/lib* && pwd)" python3 -m pytest -n $XBPS_MAKEJOBS \ pandas --skip-slow --skip-network --skip-db -x -r EX \ --ignore pandas/tests/io/parser/test_network.py -m 'not single' \ -k 'not test_raw_roundtrip and not _s3 and not test_show_versions' } post_install() { vlicense LICENSE }