python3-pandas: update to 1.2.1.

This commit is contained in:
Andrew J. Hesford 2021-01-20 11:41:13 -05:00
parent fd0bb86d8f
commit ea9ef49c95

View file

@ -1,6 +1,6 @@
# Template file for 'python3-pandas'
pkgname=python3-pandas
version=1.2.0
version=1.2.1
revision=1
wrksrc="pandas-${version}"
build_style=python3-module
@ -14,7 +14,7 @@ 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=7e8423c76e404aac38a5664713091fced5a4e7cf850f212f5dd41a000b3ae215
checksum=c04224636fbcff8cb2df2d14ea48828224022f212f88c9542b68640747dfa1ef
pre_build() {
# setup.py allows a -j argument to parallelize builds
@ -23,8 +23,11 @@ pre_build() {
do_check() {
# The test_raw_roundtrip relies on a clipboard
python3 -m pytest build/lib*/pandas \
-r sxX --strict -k 'not test_raw_roundtrip'
# 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 \
--ignore pandas/tests/io/parser/test_network.py \
-m 'not single' -k 'not test_raw_roundtrip and not _s3'
}
post_install() {