guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

07/08: gnu: python-cmaes: Update to 0.9.1.


From: guix-commits
Subject: 07/08: gnu: python-cmaes: Update to 0.9.1.
Date: Sun, 14 May 2023 10:38:27 -0400 (EDT)

monego pushed a commit to branch master
in repository guix.

commit c5ebf6ff974057daa3e078f806df9a151440fecd
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Thu Apr 27 20:33:38 2023 -0300

    gnu: python-cmaes: Update to 0.9.1.
    
    * gnu/packages/machine-learning.scm (python-cmaes): Update to 0.9.1.
    [source, home-page]: Follow redirect.
    [build-system]: Switch to pyproject-build-system.
    [native-inputs]: Remove python-setuptools, python-wheel.
---
 gnu/packages/machine-learning.scm | 17 +++++++----------
 1 file changed, 7 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/machine-learning.scm 
b/gnu/packages/machine-learning.scm
index b8793fb31a..269bfd4459 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -1520,23 +1520,20 @@ and a few related numerical optimization tools.")
 (define-public python-cmaes
   (package
     (name "python-cmaes")
-    (version "0.8.2")
+    (version "0.9.1")
     (source
      (origin
        (method git-fetch) ;no tests in PyPI
        (uri (git-reference
-             (url "https://github.com/CyberAgent/cmaes";)
+             (url "https://github.com/CyberAgentAILab/cmaes";)
              (commit (string-append "v" version))))
        (sha256
-        (base32 "1jyckaifir528dz6m95nvky8hvqmz5gz6dlp65baahhbca0danzb"))
+        (base32 "1f3143w8ii6i93bdh65iazrq1lryccd805ndnqww5l8h7qnnzpkm"))
        (file-name (git-file-name name version))))
-    (build-system python-build-system)
-    (native-inputs
-     (list python-setuptools ;build fails without this
-           python-wheel))
-    (propagated-inputs
-     (list python-numpy))
-    (home-page "https://github.com/CyberAgent/cmaes";)
+    (build-system pyproject-build-system)
+    (native-inputs (list python-hypothesis))
+    (propagated-inputs (list python-numpy))
+    (home-page "https://github.com/CyberAgentAILab/cmaes";)
     (synopsis "CMA-ES implementation for Python")
     (description "This package provides provides an implementation of the
 Covariance Matrix Adaptation Evolution Strategy (CMA-ES) for Python.")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]