Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages /
python-pyarrow
Commits:
8799d355 by Jakub Klinkovský at 2025-10-27T20:54:05+01:00
upgpkg: 22.0.0-1
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,6 +1,6 @@
pkgbase = python-pyarrow
pkgdesc = Columnar in-memory analytics layer for big data — Python
module.
- pkgver = 21.0.0
+ pkgver = 22.0.0
pkgrel = 1
url = https://arrow.apache.org
arch = x86_64
@@ -26,15 +26,15 @@ pkgbase = python-pyarrow
optdepends = python-cffi: interact with C code
optdepends = python-pandas: Pandas integration
optdepends = python-fsspec: Filesystem Spec support
- source =
https://archive.apache.org/dist/arrow/arrow-21.0.0/apache-arrow-21.0.0.tar.gz
- source =
https://archive.apache.org/dist/arrow/arrow-21.0.0/apache-arrow-21.0.0.tar.gz.asc
+ source =
https://archive.apache.org/dist/arrow/arrow-22.0.0/apache-arrow-22.0.0.tar.gz
+ source =
https://archive.apache.org/dist/arrow/arrow-22.0.0/apache-arrow-22.0.0.tar.gz.asc
source =
git+https://github.com/apache/parquet-testing.git#commit=4cf674fc589309ba8651ad676f3fb557582d9cab
source =
git+https://github.com/apache/arrow-testing.git#commit=fbf6b703dc93d17d75fa3664c5aa2c7873ebaf06
validpgpkeys = 265F80AB84FE03127E14F01125BCCA5220D84079
validpgpkeys = 08D3564B7C6A9CAFBFF6A66791D18FCF079F8007
validpgpkeys = AF6AADA4C9835B75973FF5DA275C532289DD0F4A
validpgpkeys = A2AC7132B5DA7C273A7A147665F4A8CA9769ECD7
- sha512sums =
89da6de7eb2513c797d6671e1addf40b8b156215b481cf2511fa69faa16547c52d8220727626eeda499e4384d276e03880cd920aaab41c3d15106743d51a90a6
+ sha512sums =
8ec9ddaf7917c0e35c8bb32831fe6ea0a7b81de5723828a1289ba1b9e104b42af688d0f427a0ceff6f617d5f7ac67769431184b137e54f6987779e467c59d3ec
sha512sums = SKIP
sha512sums =
fa20be39a69081d8c59add20a26cac4f201decda216c0e358f3bb72134e0015098596467d80dda2ba27bbf9e1a0c9b4a21a16aaaa0b6064821d1f4aaa4b93b1b
sha512sums =
444838ecf5f0ec22fb748632e16b67f29d7730050bc91c54a97455150caa77abe1006d8aa11536c15cc6b939d009f978262213dc3ae14c96d1983934e262dc1b
=====================================
PKGBUILD
=====================================
@@ -7,7 +7,7 @@
_pkg=arrow
_pkgname=pyarrow
pkgname=python-$_pkgname
-pkgver=21.0.0
+pkgver=22.0.0
pkgrel=1
# parquet-testing and arrow-testing projects have no releases, commits may
need to be updated on pkgver bumps
_parquet_testing_commit=4cf674fc589309ba8651ad676f3fb557582d9cab
@@ -50,7 +50,7 @@ source=(
git+https://github.com/apache/parquet-testing.git#commit=$_parquet_testing_commit
git+https://github.com/apache/arrow-testing.git#commit=$_arrow_testing_commit
)
-sha512sums=('89da6de7eb2513c797d6671e1addf40b8b156215b481cf2511fa69faa16547c52d8220727626eeda499e4384d276e03880cd920aaab41c3d15106743d51a90a6'
+sha512sums=('8ec9ddaf7917c0e35c8bb32831fe6ea0a7b81de5723828a1289ba1b9e104b42af688d0f427a0ceff6f617d5f7ac67769431184b137e54f6987779e467c59d3ec'
'SKIP'
'fa20be39a69081d8c59add20a26cac4f201decda216c0e358f3bb72134e0015098596467d80dda2ba27bbf9e1a0c9b4a21a16aaaa0b6064821d1f4aaa4b93b1b'
'444838ecf5f0ec22fb748632e16b67f29d7730050bc91c54a97455150caa77abe1006d8aa11536c15cc6b939d009f978262213dc3ae14c96d1983934e262dc1b')
@@ -71,12 +71,18 @@ build() {
}
check() {
+ local pytest_options=(
+ -vv
+ --pyargs pyarrow
+ # ignore test that fails in version 22.0.0
+ -k 'not test_timezone_absent'
+ )
+
python -m venv --system-site-packages test-env
test-env/bin/python -m installer apache-$_pkg-$pkgver/python/dist/*.whl
PARQUET_TEST_DATA="$srcdir"/parquet-testing/data \
ARROW_TEST_DATA="$srcdir"/arrow-testing/data \
- test-env/bin/python -m pytest -vv --pyargs pyarrow -k 'not
test_s3_real_aws_region_selection'
- # ignore test that fails in version 21.0.0
+ test-env/bin/python -m pytest "${pytest_options[@]}"
}
package() {
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pyarrow/-/commit/8799d35545e7dad7e79550856906c4cd3f33af40
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/python-pyarrow/-/commit/8799d35545e7dad7e79550856906c4cd3f33af40
You're receiving this email because of your account on gitlab.archlinux.org.