summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-06-16 10:19:04 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-08 23:02:13 +0100
commit54155fde544f4e1bfa3e664455cc36a823915783 (patch)
tree21c837630cb819a65fc3485bd72c62418367beee
parente7fb6ed56f25c242812df20e046818a93abad2ab (diff)
gnu: python-dask: Update to 2026.3.0.
* gnu/packages/python-science.scm (python-dask): Update to 2026.3.0. [arguments] <test-flags>: Skip 4 tests from the same test group - "Test that cpu_count() respects the taskset command line tool"; the test was introduced after 2025.11.0 version. [propagated-inputs]: Remove python-importlib-metadata. [native-inputs]: Remove python-pytest-asyncio. [home-page]: Use official URL as seen on GitHub package. Change-Id: Ibc77dad531b2c71a37713b14a261696c86cfbd62
-rw-r--r--gnu/packages/python-science.scm18
1 files changed, 11 insertions, 7 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index ab62c70ba6f..3a3d8a01bf9 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -925,7 +925,7 @@ optimization problems in Python.")
925(define-public python-dask 925(define-public python-dask
926 (package 926 (package
927 (name "python-dask") 927 (name "python-dask")
928 (version "2025.11.0") 928 (version "2026.3.0")
929 (source 929 (source
930 (origin 930 (origin
931 (method git-fetch) 931 (method git-fetch)
@@ -934,11 +934,11 @@ optimization problems in Python.")
934 (commit version))) 934 (commit version)))
935 (file-name (git-file-name name version)) 935 (file-name (git-file-name name version))
936 (sha256 936 (sha256
937 (base32 "12m4p4zfm96fjsm45wppdrylsi71vjr0ywplz6q7fhw9vbhk0kki")))) 937 (base32 "10w6ipxhx9gg14489gka4r0isp55xz3szgrx9f59424j240a5w15"))))
938 (build-system pyproject-build-system) 938 (build-system pyproject-build-system)
939 (arguments 939 (arguments
940 (list 940 (list
941 ;; tests: 15277 passed, 751 skipped, 261 xfailed, 280 xpassed, 90 warnings 941 ;; tests: 15272 passed, 765 skipped, 313 xfailed, 280 xpassed, 7 warnings
942 #:test-flags 942 #:test-flags
943 #~(list "-m" "not gpu and not slow and not network" 943 #~(list "-m" "not gpu and not slow and not network"
944 "--pyargs" "dask" 944 "--pyargs" "dask"
@@ -950,7 +950,13 @@ optimization problems in Python.")
950 ;; AttributeError: 'Array' object has no attribute 950 ;; AttributeError: 'Array' object has no attribute
951 ;; 'expr' 951 ;; 'expr'
952 "test_blockwise" 952 "test_blockwise"
953 "test_is_dask_collection_doesnt_materialize") 953 "test_is_dask_collection_doesnt_materialize"
954 ;; FileNotFoundError: [Errno 2] No such file or
955 ;; directory: 'taskset'
956 "test_cpu_affinity_taskset[affinity0]"
957 "test_cpu_affinity_taskset[affinity1]"
958 "test_cpu_affinity_taskset[affinity2]"
959 "test_cpu_affinity_taskset[affinity3]")
954 " and not ")) 960 " and not "))
955 #:phases 961 #:phases
956 #~(modify-phases %standard-phases 962 #~(modify-phases %standard-phases
@@ -959,7 +965,6 @@ optimization problems in Python.")
959 (delete-file-recursively "dask")))))) 965 (delete-file-recursively "dask"))))))
960 (native-inputs 966 (native-inputs
961 (list python-pytest 967 (list python-pytest
962 python-pytest-asyncio
963 python-pytest-mock 968 python-pytest-mock
964 python-pytest-rerunfailures 969 python-pytest-rerunfailures
965 python-pytest-timeout 970 python-pytest-timeout
@@ -971,7 +976,6 @@ optimization problems in Python.")
971 (list python-click 976 (list python-click
972 python-cloudpickle 977 python-cloudpickle
973 python-fsspec 978 python-fsspec
974 python-importlib-metadata
975 python-packaging 979 python-packaging
976 python-partd 980 python-partd
977 python-pyyaml 981 python-pyyaml
@@ -981,7 +985,7 @@ optimization problems in Python.")
981 python-numpy 985 python-numpy
982 python-pandas 986 python-pandas
983 python-pyarrow)) 987 python-pyarrow))
984 (home-page "https://github.com/dask/dask/") 988 (home-page "https://www.dask.org/")
985 (synopsis "Parallel computing with task scheduling") 989 (synopsis "Parallel computing with task scheduling")
986 (description 990 (description
987 "Dask is a flexible parallel computing library for analytics. It 991 "Dask is a flexible parallel computing library for analytics. It