From a9547a6c09913eb78089eafc549e54620136f11d Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Mon, 17 Nov 2025 21:28:46 +0000 Subject: [PATCH] gnu: python-cobaya: Update to 3.6. * gnu/packages/astronomy.scm (python-cobaya): Update to 3.6. [native-inputs]: Add python-camb. Change-Id: I819faf9857e8a49a999562d98da267e55eb995c9 --- gnu/packages/astronomy.scm | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 925d9dc1a0a255c8718718c01c10c7115c88830c..81457a2fe9039328be729418d8262eb65841ab4b 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -3685,26 +3685,24 @@ monochromatic sequential colormaps like @code{blue}, @code{green}, and (define-public python-cobaya (package (name "python-cobaya") - (version "3.5.7") + (version "3.6") (source (origin - (method git-fetch) ;no tests in pypi release + (method git-fetch) (uri (git-reference (url "https://github.com/CobayaSampler/cobaya") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "17ccka051lknv05dlr1wfb2ha2qj27av2q2s6ir2vrcgx5c2szfp")))) + (base32 "1jws7kb3578mgbimxxanbhzkrxpmcby0jqxq9zlf04i5ilqn4s6m")))) (build-system pyproject-build-system) (arguments (list + ;; tests: 76 passed, 3 skipped, 93 xfailed, 2 warnings #:test-flags - ;; Test options were taken from GitHub action workflow. - #~(list "--no-flaky-report" - "--numprocesses" (number->string (parallel-job-count)) + #~(list "--numprocesses" (number->string (min 8 (parallel-job-count))) "--skip-not-installed" - "-k" "not test_planck_NPIPE_p_CamSpec_camb_install and not test_grid" - "tests") + "-k" "not test_planck_NPIPE_p_CamSpec_camb and not test_grid") #:phases #~(modify-phases %standard-phases (add-before 'check 'pre-check @@ -3712,7 +3710,9 @@ monochromatic sequential colormaps like @code{blue}, @code{green}, and (setenv "HOME" "/tmp") (setenv "COBAYA_PACKAGES_PATH" "/tmp")))))) (native-inputs - (list python-flaky + (list python-camb + ;; python-classy + python-flaky python-pytest python-pytest-xdist python-setuptools))