guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 274ce5edd7ca2b196d4fbb90782cfdf03dffdeff
Author: Hugo Buddelmeijer <[email protected]>
AuthorDate: Mon Jul 13 21:54:13 2026 +0200
gnu: python-pandera: Reduce threads even more.
* gnu/packages/python-science.scm (python-pandera): Reduce threads.
[arguments]<#:test-flags>: Reduce numprocesses to 2.
Relates-to: guix/guix!9909
---
gnu/packages/python-science.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 166ff47b32..e824e1fae9 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -4732,7 +4732,7 @@ idea of the remaining amount of computation to be done.")
;; tests: 3810 passed, 22 skipped, 21 xfailed, 5923 warnings
#:test-flags
;; With higher threads count tests randomly fail during collection.
- #~(list "--numprocesses" (number->string (min 4 (parallel-job-count)))
+ #~(list "--numprocesses" (number->string (min 2 (parallel-job-count)))
;; TODO: Ignore tests for not packaged python-ibis-framework,
;; and python-pyspark.
"--ignore=tests/ibis"