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.
This commit is contained in:
parent
52c9400724
commit
c5ebf6ff97
1 changed files with 7 additions and 10 deletions
|
@ -1520,23 +1520,20 @@ and a few related numerical optimization tools.")
|
||||||
(define-public python-cmaes
|
(define-public python-cmaes
|
||||||
(package
|
(package
|
||||||
(name "python-cmaes")
|
(name "python-cmaes")
|
||||||
(version "0.8.2")
|
(version "0.9.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch) ;no tests in PyPI
|
(method git-fetch) ;no tests in PyPI
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/CyberAgent/cmaes")
|
(url "https://github.com/CyberAgentAILab/cmaes")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1jyckaifir528dz6m95nvky8hvqmz5gz6dlp65baahhbca0danzb"))
|
(base32 "1f3143w8ii6i93bdh65iazrq1lryccd805ndnqww5l8h7qnnzpkm"))
|
||||||
(file-name (git-file-name name version))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(native-inputs
|
(native-inputs (list python-hypothesis))
|
||||||
(list python-setuptools ;build fails without this
|
(propagated-inputs (list python-numpy))
|
||||||
python-wheel))
|
(home-page "https://github.com/CyberAgentAILab/cmaes")
|
||||||
(propagated-inputs
|
|
||||||
(list python-numpy))
|
|
||||||
(home-page "https://github.com/CyberAgent/cmaes")
|
|
||||||
(synopsis "CMA-ES implementation for Python")
|
(synopsis "CMA-ES implementation for Python")
|
||||||
(description "This package provides provides an implementation of the
|
(description "This package provides provides an implementation of the
|
||||||
Covariance Matrix Adaptation Evolution Strategy (CMA-ES) for Python.")
|
Covariance Matrix Adaptation Evolution Strategy (CMA-ES) for Python.")
|
||||||
|
|
Reference in a new issue