From a919e9fd2ee3d15d2074954f61579604d3af3dc9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Thu, 23 Jun 2022 22:05:14 -0400 Subject: [PATCH] python3-pandas: update to 1.4.3. --- srcpkgs/python3-pandas/template | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/srcpkgs/python3-pandas/template b/srcpkgs/python3-pandas/template index b1f2f60e6da..572e9961dd4 100644 --- a/srcpkgs/python3-pandas/template +++ b/srcpkgs/python3-pandas/template @@ -1,20 +1,20 @@ # Template file for 'python3-pandas' pkgname=python3-pandas -version=1.4.2 +version=1.4.3 revision=1 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 python3-hypothesis $depends" +checkdepends="python3-pytest-xdist 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=e2d97255e7cd13b3d3931b49f7be50055e02ca6dff60a68e403b125f8f85c4d2 +checksum=8e9d21e75b7df9934f0f61801a11ff548459a8cb3fe7ada366f2a797e0d651aa pre_build() { # setup.py allows a -j argument to parallelize builds @@ -24,8 +24,8 @@ pre_build() { 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 pandas \ - --skip-slow --skip-network --skip-db -x -r EX \ + 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' }