summaryrefslogtreecommitdiff
path: root/gnu/packages/python-science.scm
diff options
context:
space:
mode:
authorHugo Buddelmeijer <hugo@buddelmeijer.nl>2026-07-12 15:30:13 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-08 23:02:23 +0100
commit82c0091495ce6c20a46cdeae9494ff040823912f (patch)
tree7350d39562365ab4d2e25e72ec65bfbc3d6de9a3 /gnu/packages/python-science.scm
parent972ac1b20bd6a1a62a05ff9ce4b90ca2fc2091c3 (diff)
gnu: python-tdda: Update to 3.2.03.
* gnu/packages/python-science.scm (python-tdda): Update to 3.2.03. [arguments]<#:test-flags>: Update deselected tests; add comments. [native-inputs]: Add tzdata-for-tests. Relates-to: guix/guix!9885 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-science.scm')
-rw-r--r--gnu/packages/python-science.scm35
1 files changed, 16 insertions, 19 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 392044eadc1..815e942cabe 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -4116,7 +4116,7 @@ depends on @code{scipy.sparse} for some computations.")
4116(define-public python-tdda 4116(define-public python-tdda
4117 (package 4117 (package
4118 (name "python-tdda") 4118 (name "python-tdda")
4119 (version "3.0.02") 4119 (version "3.2.03")
4120 (source 4120 (source
4121 (origin 4121 (origin
4122 (method git-fetch) 4122 (method git-fetch)
@@ -4125,32 +4125,29 @@ depends on @code{scipy.sparse} for some computations.")
4125 (commit (string-append "v" version)))) 4125 (commit (string-append "v" version))))
4126 (file-name (git-file-name name version)) 4126 (file-name (git-file-name name version))
4127 (sha256 4127 (sha256
4128 (base32 "0agqy4v895qbrg149w2fkyh8kdfbk650iqp77aw8542ry1333lgs")))) 4128 (base32 "1rqh1pa17n5al0b3blqr4h9qn4x6wxnxw6ilc2lk72k027cxmv84"))))
4129 (build-system pyproject-build-system) 4129 (build-system pyproject-build-system)
4130 (arguments 4130 (arguments
4131 (list 4131 (list
4132 #:test-flags 4132 #:test-flags
4133 #~(list 4133 #~(list
4134 ;; Failures probably due to a dependency mismatch (e.g. pandas).
4135 ;; Not investigated further as this is a leaf package.
4136 ;; tdda is actively maintained, so will probably be fixed.
4134 (string-append "--deselect=tdda/test_tdda.py::" 4137 (string-append "--deselect=tdda/test_tdda.py::"
4135 "TestTDDAUtils::test_handle_tilde_strings") 4138 "TestCommonConstraints::"
4139 "testSimpleAllCorrectVerificationFromCSVFile")
4136 (string-append "--deselect=tdda/test_tdda.py::" 4140 (string-append "--deselect=tdda/test_tdda.py::"
4137 "TestPandasCommandLine::testDetectE118Cmd") 4141 "TestCommonConstraints::"
4142 "testSimpleAllNotCorrectVerificationFromCSVFile")
4143 ;; Not further investigated, results in: AssertionError:
4144 ;; '~homeless-shelter/foo.csv' != '/homeless-shelter/foo.csv'
4138 (string-append "--deselect=tdda/test_tdda.py::" 4145 (string-append "--deselect=tdda/test_tdda.py::"
4139 "TestPandasCommandLine::testDetectE118CmdInterleaved") 4146 "TestTDDAUtils::test_handle_tilde_strings"))))
4140 (string-append "--deselect=tdda/test_tdda.py::"
4141 "TestPandasCommandLine::testDetectE118ParquetCmd")
4142 (string-append "--deselect=tdda/test_tdda.py::"
4143 "TestPandasCommandLine::testDiscoverCmd")
4144 (string-append "--deselect=tdda/test_tdda.py::"
4145 "TestPandasCommandLine::testVerifyE118Cmd")
4146 (string-append "--deselect=tdda/test_tdda.py::"
4147 "TestPandasCommandLine::testVerifyE92Cmd")
4148 (string-append "--deselect=tdda/test_tdda.py::"
4149 "TestPandasCommandLine::testVerifyEpsilon")
4150 (string-append "--deselect=tdda/test_tdda.py::"
4151 "TestPandasCommandLine::testVerifyOptionFlags"))))
4152 (native-inputs 4147 (native-inputs
4153 (list python-pytest python-setuptools)) 4148 (list python-pytest
4149 python-setuptools
4150 tzdata-for-tests))
4154 (propagated-inputs 4151 (propagated-inputs
4155 (list python-chardet 4152 (list python-chardet
4156 python-numpy 4153 python-numpy
@@ -4170,7 +4167,7 @@ depends on @code{scipy.sparse} for some computations.")
4170for the overall process of data analysis, through tools that perform 4167for the overall process of data analysis, through tools that perform
4171reference testing, constraint discovery for data, automatic inference 4168reference testing, constraint discovery for data, automatic inference
4172of regular expressions from text data and automatic test generation.") 4169of regular expressions from text data and automatic test generation.")
4173 (license license:expat))) ; MIT License 4170 (license license:expat)))
4174 4171
4175(define-public python-traittypes 4172(define-public python-traittypes
4176 (package 4173 (package