summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorCayetano Santos <csantosb@inventati.org>2025-10-28 09:01:55 +0100
committerCayetano Santos <csantosb@inventati.org>2025-11-30 19:53:39 +0100
commit9bdf65dedc28a75d8de806bbfd43aa8cdc11237a (patch)
tree54e9e3720cc8a78165e0c8b86b3b5529ad6f4da0 /gnu/packages
parent733fc8ecebe7ddfa8ad65514fd3cac690d074324 (diff)
gnu: python-cmaes: Update to 0.12.0.
* gnu/packages/machine-learning.scm (python-cmaes): Update to 0.12.0. [native-inputs]: Remove python-wheel. [arguments]: Add #:test-flags. Change-Id: I729be7d54049dd65c4e55c6020e9de274a0299cb
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/machine-learning.scm10
1 files changed, 7 insertions, 3 deletions
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm
index 835c2d7cb84..912e14761b4 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -2565,7 +2565,7 @@ and a few related numerical optimization tools.")
(define-public python-cmaes
(package
(name "python-cmaes")
- (version "0.11.1")
+ (version "0.12.0")
(source
(origin
(method git-fetch) ;no tests in PyPI
@@ -2573,10 +2573,14 @@ and a few related numerical optimization tools.")
(url "https://github.com/CyberAgentAILab/cmaes")
(commit (string-append "v" version))))
(sha256
- (base32 "1xh7cwcz38g7qk9y4668bxv4qc33wwv6q0gkql6d0dzwv59s0q5v"))
+ (base32 "1sykjif7dkq3aa2c672sh567i1d69cswrmb7fmkqh912rmxcvz8j"))
(file-name (git-file-name name version))))
(build-system pyproject-build-system)
- (native-inputs (list python-pytest python-setuptools python-wheel))
+ (arguments
+ (list
+ #:test-flags ;see .github/workflows/tests.yml
+ #~(list "tests" "--ignore=" "tests/test_free_threaded.py")))
+ (native-inputs (list python-pytest python-setuptools))
(propagated-inputs (list python-numpy))
(home-page "https://github.com/CyberAgentAILab/cmaes")
(synopsis "CMA-ES implementation for Python")