gnu: python-pyts: Update to 0.13.0.
* gnu/packages/python-science.scm (python-pyts): Update to 0.13.0. [build-system]: Use pyproject-build-system. [arguments]: Remove custom 'check phase; enable all tests. [propagated-inputs]: Remove python-matplotlib. Change-Id: Iafcc047d8bb14e1eef514fd92aa53f8fda38eab0master
parent
6a22f65d66
commit
afd0fe50b0
|
@ -830,34 +830,16 @@ Python module with the same interface, but (hopefully) faster.")
|
||||||
(define-public python-pyts
|
(define-public python-pyts
|
||||||
(package
|
(package
|
||||||
(name "python-pyts")
|
(name "python-pyts")
|
||||||
(version "0.12.0")
|
(version "0.13.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "pyts" version))
|
(uri (pypi-uri "pyts" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1cb5jwp8g52a3hxay6mxbfzk16ly6yj6rphq8cwbwk1k2jdf11dg"))))
|
"00pdzfkl0b4vhfdm8zas7b904jm2hhivdwv3wcmpik7l2p1yr85c"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
|
||||||
(list
|
|
||||||
#:phases
|
|
||||||
'(modify-phases %standard-phases
|
|
||||||
(replace 'check
|
|
||||||
(lambda* (#:key tests? #:allow-other-keys)
|
|
||||||
(when tests?
|
|
||||||
(invoke "pytest" "-v"
|
|
||||||
;; XXX: This test fails for unknown reasons
|
|
||||||
;; Expected:
|
|
||||||
;; (40, 9086)
|
|
||||||
;; Got:
|
|
||||||
;; (40, 9088)
|
|
||||||
"-k"
|
|
||||||
"not pyts.multivariate.transformation.weasel_muse.WEASELMUSE")))))))
|
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-joblib
|
(list python-joblib python-numba python-numpy
|
||||||
python-matplotlib
|
|
||||||
python-numba
|
|
||||||
python-numpy
|
|
||||||
python-scikit-learn
|
python-scikit-learn
|
||||||
python-scipy))
|
python-scipy))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
|
Reference in New Issue