From unknown Sun Jun 22 00:55:22 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#49303] [PATCH] gnu: Add python-cmaes. Resent-From: Vinicius Monego Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 30 Jun 2021 21:42:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 49303 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 49303@debbugs.gnu.org Cc: Vinicius Monego X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.162508927724736 (code B ref -1); Wed, 30 Jun 2021 21:42:01 +0000 Received: (at submit) by debbugs.gnu.org; 30 Jun 2021 21:41:17 +0000 Received: from localhost ([127.0.0.1]:59001 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lyhxN-0006Qt-IR for submit@debbugs.gnu.org; Wed, 30 Jun 2021 17:41:17 -0400 Received: from lists.gnu.org ([209.51.188.17]:58288) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lyhxL-0006Ql-Aq for submit@debbugs.gnu.org; Wed, 30 Jun 2021 17:41:15 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:55112) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lyhxL-0007tU-2a for guix-patches@gnu.org; Wed, 30 Jun 2021 17:41:15 -0400 Received: from mout02.posteo.de ([185.67.36.66]:41629) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lyhxI-000864-JK for guix-patches@gnu.org; Wed, 30 Jun 2021 17:41:14 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 479422400FD for ; Wed, 30 Jun 2021 23:41:08 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1625089268; bh=765th9ICGCapRIWjL/CgwWLx4GhrvCBset0ozKDShEo=; h=From:To:Cc:Subject:Date:From; b=B5pYNylZkDxFBG6ctZIbG2muBBGmb8eZV3qsPJwQj/JLzI0y3moamS5EbRKFydwsS 1kLU1CIwmNAXDP+44zqLOA2YUhpSMcYxa+u7Mq0KmqL3ZhKEVk+ytFg2Kosw8bl9by hNNUx8Rg13CTcnqznFKiFoArLNBnJkxkTm94E2b1bpNPXzqKdqpu5gQ/bX7t6reSOG ZzZS42l9AmqaP7uDhfiQrW4IoGwprkUg2HWCqWrwL03vebdiFUnLQNvcG2W0LgEWJf OwWTyQmMlLsW3bH1cichspkA4lNRLkLmWZgA3Gh8DNHTERL8xDECk/8iKSWTuO1N2m 9b/ZyPPhz4Bvw== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4GFZXf51Yvz9rxF; Wed, 30 Jun 2021 23:41:06 +0200 (CEST) From: Vinicius Monego Date: Wed, 30 Jun 2021 21:40:26 +0000 Message-Id: <20210630214026.924365-1-monego@posteo.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.67.36.66; envelope-from=monego@posteo.net; helo=mout02.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * gnu/packages/machine-learning.scm (python-cmaes): New variable. --- gnu/packages/machine-learning.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 837ebbba67..504cabc11d 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -1012,6 +1012,31 @@ good at identifying feature interactions that are normally overlooked by standard feature selection algorithms.") (license license:expat))) +(define-public python-cmaes + (package + (name "python-cmaes") + (version "0.8.2") + (source + (origin + (method git-fetch) ;no tests in PyPI + (uri (git-reference + (url "https://github.com/CyberAgent/cmaes") + (commit (string-append "v" version)))) + (sha256 + (base32 "1jyckaifir528dz6m95nvky8hvqmz5gz6dlp65baahhbca0danzb")) + (file-name (git-file-name name version)))) + (build-system python-build-system) + (native-inputs + `(("python-setuptools" ,python-setuptools) ;build fails without this + ("python-wheel" ,python-wheel))) + (propagated-inputs + `(("python-numpy" ,python-numpy))) + (home-page "https://github.com/CyberAgent/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.") + (license license:expat))) + (define-public python-autograd (let* ((commit "442205dfefe407beffb33550846434baa90c4de7") (revision "0") -- 2.32.0 From unknown Sun Jun 22 00:55:22 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Vinicius Monego Subject: bug#49303: closed (Re: bug#49303: [PATCH] gnu: Add python-cmaes.) Message-ID: References: <87lf6gvozt.fsf@gnu.org> <20210630214026.924365-1-monego@posteo.net> X-Gnu-PR-Message: they-closed 49303 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 49303@debbugs.gnu.org Date: Thu, 08 Jul 2021 14:51:01 +0000 Content-Type: multipart/mixed; boundary="----------=_1625755861-31402-1" This is a multi-part message in MIME format... ------------=_1625755861-31402-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #49303: [PATCH] gnu: Add python-cmaes. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 49303@debbugs.gnu.org. --=20 49303: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D49303 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1625755861-31402-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 49303-done) by debbugs.gnu.org; 8 Jul 2021 14:50:42 +0000 Received: from localhost ([127.0.0.1]:57244 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m1VMQ-0008A0-1O for submit@debbugs.gnu.org; Thu, 08 Jul 2021 10:50:42 -0400 Received: from eggs.gnu.org ([209.51.188.92]:47934) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m1VMN-00089k-Pe for 49303-done@debbugs.gnu.org; Thu, 08 Jul 2021 10:50:40 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:40184) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1m1VMH-0007U7-RL; Thu, 08 Jul 2021 10:50:33 -0400 Received: from [2a01:cb18:832e:5f00:3563:417e:2a38:86d8] (port=43512 helo=meije) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m1VMF-0004Ho-Ux; Thu, 08 Jul 2021 10:50:33 -0400 From: Mathieu Othacehe To: Vinicius Monego Subject: Re: bug#49303: [PATCH] gnu: Add python-cmaes. References: <20210630214026.924365-1-monego@posteo.net> Date: Thu, 08 Jul 2021 16:50:30 +0200 In-Reply-To: <20210630214026.924365-1-monego@posteo.net> (Vinicius Monego's message of "Wed, 30 Jun 2021 21:40:26 +0000") Message-ID: <87lf6gvozt.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 49303-done Cc: 49303-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hey, > * gnu/packages/machine-learning.scm (python-cmaes): New variable. Pushed as 57a747e15a9071e7e41bb1871a8f2d1938b03889. Thanks, Mathieu ------------=_1625755861-31402-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 30 Jun 2021 21:41:17 +0000 Received: from localhost ([127.0.0.1]:59001 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lyhxN-0006Qt-IR for submit@debbugs.gnu.org; Wed, 30 Jun 2021 17:41:17 -0400 Received: from lists.gnu.org ([209.51.188.17]:58288) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lyhxL-0006Ql-Aq for submit@debbugs.gnu.org; Wed, 30 Jun 2021 17:41:15 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:55112) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lyhxL-0007tU-2a for guix-patches@gnu.org; Wed, 30 Jun 2021 17:41:15 -0400 Received: from mout02.posteo.de ([185.67.36.66]:41629) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lyhxI-000864-JK for guix-patches@gnu.org; Wed, 30 Jun 2021 17:41:14 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 479422400FD for ; Wed, 30 Jun 2021 23:41:08 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1625089268; bh=765th9ICGCapRIWjL/CgwWLx4GhrvCBset0ozKDShEo=; h=From:To:Cc:Subject:Date:From; b=B5pYNylZkDxFBG6ctZIbG2muBBGmb8eZV3qsPJwQj/JLzI0y3moamS5EbRKFydwsS 1kLU1CIwmNAXDP+44zqLOA2YUhpSMcYxa+u7Mq0KmqL3ZhKEVk+ytFg2Kosw8bl9by hNNUx8Rg13CTcnqznFKiFoArLNBnJkxkTm94E2b1bpNPXzqKdqpu5gQ/bX7t6reSOG ZzZS42l9AmqaP7uDhfiQrW4IoGwprkUg2HWCqWrwL03vebdiFUnLQNvcG2W0LgEWJf OwWTyQmMlLsW3bH1cichspkA4lNRLkLmWZgA3Gh8DNHTERL8xDECk/8iKSWTuO1N2m 9b/ZyPPhz4Bvw== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4GFZXf51Yvz9rxF; Wed, 30 Jun 2021 23:41:06 +0200 (CEST) From: Vinicius Monego To: guix-patches@gnu.org Subject: [PATCH] gnu: Add python-cmaes. Date: Wed, 30 Jun 2021 21:40:26 +0000 Message-Id: <20210630214026.924365-1-monego@posteo.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=185.67.36.66; envelope-from=monego@posteo.net; helo=mout02.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit Cc: Vinicius Monego X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) * gnu/packages/machine-learning.scm (python-cmaes): New variable. --- gnu/packages/machine-learning.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 837ebbba67..504cabc11d 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -1012,6 +1012,31 @@ good at identifying feature interactions that are normally overlooked by standard feature selection algorithms.") (license license:expat))) +(define-public python-cmaes + (package + (name "python-cmaes") + (version "0.8.2") + (source + (origin + (method git-fetch) ;no tests in PyPI + (uri (git-reference + (url "https://github.com/CyberAgent/cmaes") + (commit (string-append "v" version)))) + (sha256 + (base32 "1jyckaifir528dz6m95nvky8hvqmz5gz6dlp65baahhbca0danzb")) + (file-name (git-file-name name version)))) + (build-system python-build-system) + (native-inputs + `(("python-setuptools" ,python-setuptools) ;build fails without this + ("python-wheel" ,python-wheel))) + (propagated-inputs + `(("python-numpy" ,python-numpy))) + (home-page "https://github.com/CyberAgent/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.") + (license license:expat))) + (define-public python-autograd (let* ((commit "442205dfefe407beffb33550846434baa90c4de7") (revision "0") -- 2.32.0 ------------=_1625755861-31402-1--