Unverified Commit 300db904 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #252774 from r-ryantm/auto-update/python310Packages.cmaes

python310Packages.cmaes: 0.9.1 -> 0.10.0
parents 9ace7896 e8df7d32
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -10,15 +10,16 @@

buildPythonPackage rec {
  pname = "cmaes";
  version = "0.9.1";
  disabled = pythonOlder "3.7";
  version = "0.10.0";
  format = "pyproject";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "CyberAgentAILab";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-dd5vLT4Q0cI5ts0WgBpjPtOA81exGNjWSNHEiPggYbg=";
    hash = "sha256-1mXulG/yqNwKQKDFGBh8uxIYOPSsm8+PNp++CSswc50=";
  };

  nativeBuildInputs = [ setuptools ];
@@ -31,6 +32,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python library for CMA evolution strategy";
    homepage = "https://github.com/CyberAgentAILab/cmaes";
    changelog = "https://github.com/CyberAgentAILab/cmaes/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = [ maintainers.bcdarwin ];
  };