From unknown Sat Jun 21 10:17:05 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#68613 <68613@debbugs.gnu.org> To: bug#68613 <68613@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add python-scikit-opt. Reply-To: bug#68613 <68613@debbugs.gnu.org> Date: Sat, 21 Jun 2025 17:17:05 +0000 retitle 68613 [PATCH] gnu: Add python-scikit-opt. reassign 68613 guix-patches submitter 68613 TimotheeMathieu severity 68613 normal tag 68613 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sat Jan 20 12:27:00 2024 Received: (at submit) by debbugs.gnu.org; 20 Jan 2024 17:27:00 +0000 Received: from localhost ([127.0.0.1]:35577 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rRF7T-0007A8-QO for submit@debbugs.gnu.org; Sat, 20 Jan 2024 12:27:00 -0500 Received: from lists.gnu.org ([2001:470:142::17]:52994) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rR9hh-0001qL-9m for submit@debbugs.gnu.org; Sat, 20 Jan 2024 06:40:02 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rR9hZ-0000By-7W for guix-patches@gnu.org; Sat, 20 Jan 2024 06:39:53 -0500 Received: from msg-1.mailo.com ([213.182.54.11] helo=mailo.com) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rR9hX-00043I-BB for guix-patches@gnu.org; Sat, 20 Jan 2024 06:39:52 -0500 Received: by b221-3.in.mailobj.net [192.168.90.23] with ESMTP via ip-20.mailobj.net [213.182.54.20] Sat, 20 Jan 2024 12:39:36 +0100 (CET) X-EA-Auth: qE7G/5t62WIeain3AIbxYEPgyJsZaE1peujWgd8AwozZAcjupzRjmi7To9aScY+jKEh94asRPOa2Rq0LMWH/xLPHLmv7cZSu0FCDZnD+7dw= From: TimotheeMathieu To: guix-patches@gnu.org Subject: [PATCH] gnu: Add python-scikit-opt. Date: Sat, 20 Jan 2024 12:41:00 +0100 Message-ID: <7951a014460cd0928ef46de7336f8811009dc4bf.1705750860.git.timothee.mathieu@inria.fr> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 X-Debbugs-Cc: Lars-Dominik Braun , Marius Bakke , Munyoki Kilyungi , Sharlatan Hellseher , jgart Content-Transfer-Encoding: 8bit Received-SPF: softfail client-ip=213.182.54.11; envelope-from=timothee.mathieu@inria.fr; helo=mailo.com X-Spam_score_int: 0 X-Spam_score: 0.0 X-Spam_bar: / X-Spam_report: (0.0 / 5.0 requ) BAYES_00=-1.9, FORGED_SPF_HELO=1, KHOP_HELO_FCRDNS=0.259, SPF_HELO_PASS=-0.001, SPF_SOFTFAIL=0.665, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Sat, 20 Jan 2024 12:26:57 -0500 Cc: TimotheeMathieu 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: -1.0 (-) * gnu/packages/python-science.scm (python-scikit-opt): New variable. Change-Id: I47d6b35d9658a37a242b4db61d293fa7efd33802 --- gnu/packages/python-science.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 3c131fe730..b385f0b211 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -318,6 +318,27 @@ (define-public python-scikit-image "Scikit-image is a collection of algorithms for image processing.") (license license:bsd-3))) +(define-public python-scikit-opt + (package + (name "python-scikit-opt") + (version "0.6.6") + (source + (origin + (method url-fetch) + (uri (pypi-uri "scikit-opt" version)) + (sha256 + (base32 "0ycqizgsj7q57asc1bphzhf1fx9zqn0vx5rli7q541bas64hfqiy")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-numpy python-scipy)) + (home-page "https://github.com/guofei9987/scikit-opt") + (synopsis "Swarm Intelligence in Python") + (description + "Scikit-opt(or sko) is a Python module of Swarm Intelligence + Algorithm. Such as Genetic Algorithm, Particle Swarm Optimization, + Simulated Annealing, Ant Colony Algorithm, Immune Algorithm, + Artificial Fish Swarm Algorithm.") + (license license:expat))) + (define-public python-scikit-optimize (package (name "python-scikit-optimize") base-commit: 9c367ee1967b213b507a8bf041ea6c2623ceea96 -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Fri Jan 26 12:23:38 2024 Received: (at 68613) by debbugs.gnu.org; 26 Jan 2024 17:23:38 +0000 Received: from localhost ([127.0.0.1]:52631 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rTPvV-0004Zz-8n for submit@debbugs.gnu.org; Fri, 26 Jan 2024 12:23:38 -0500 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:64693) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rTOn4-0002L5-1H for 68613@debbugs.gnu.org; Fri, 26 Jan 2024 11:10:52 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inria.fr; s=dc; h=date:from:to:message-id:subject:mime-version; bh=3xOSYbXBGBGY39Uv+pEC/L79CtJ0AO5AIQlIDnujo5Q=; b=EXH5+spFeyIxi4xhCOV6IJQfiBjh16SIsuZrtbhX9st04ph1FAbNzE2x 49onQjHX0FNt9Dp2ahi8rvOfz8qzGug0NsoloI3kq+TclbQjC0QvxCnUZ m6UvPi0wSlIBnsZ1Mku5Zamqt9ICkhuZvGk8PHAsxwScPwyRSb4dgQxzo U=; Authentication-Results: mail2-relais-roc.national.inria.fr; dkim=none (message not signed) header.i=none; spf=Pass smtp.mailfrom=timothee.mathieu@inria.fr; spf=None smtp.helo=postmaster@zcs-store9.inria.fr Received-SPF: Pass (mail2-relais-roc.national.inria.fr: domain of timothee.mathieu@inria.fr designates 128.93.142.36 as permitted sender) identity=mailfrom; client-ip=128.93.142.36; receiver=mail2-relais-roc.national.inria.fr; envelope-from="timothee.mathieu@inria.fr"; x-sender="timothee.mathieu@inria.fr"; x-conformance=spf_only; x-record-type="v=spf1"; x-record-text="v=spf1 include:mailout.safebrands.com a:basic-mail.safebrands.com a:basic-mail01.safebrands.com a:basic-mail02.safebrands.com ip4:128.93.142.0/24 ip4:192.134.164.0/24 ip4:128.93.162.160 ip4:89.107.174.7 mx ~all" Received-SPF: None (mail2-relais-roc.national.inria.fr: no sender authenticity information available from domain of postmaster@zcs-store9.inria.fr) identity=helo; client-ip=128.93.142.36; receiver=mail2-relais-roc.national.inria.fr; envelope-from="timothee.mathieu@inria.fr"; x-sender="postmaster@zcs-store9.inria.fr"; x-conformance=spf_only X-IronPort-AV: E=Sophos;i="6.05,216,1701126000"; d="scan'208,217";a="148862260" X-MGA-submission: =?us-ascii?q?MDH/QF9akMQSnI1pq3ivYLmvs6aF+Coq5NzJUL?= =?us-ascii?q?S7jvG6jkLyN/AvbNelflS5ijnWOdB3Wyg7cPHj1ho+6iU1f6Mju/RDRZ?= =?us-ascii?q?mh5OSvbizUFvwvda9+gIS2QZwYYYAnydSngk0Cc5YumWDvZ7x2vgtlK2?= =?us-ascii?q?ehMo6dw0ELuxEh4uGdwPhAPQ=3D=3D?= Received: from zcs-store9.inria.fr ([128.93.142.36]) by mail2-relais-roc.national.inria.fr with ESMTP; 26 Jan 2024 17:10:36 +0100 Date: Fri, 26 Jan 2024 17:10:36 +0100 (CET) From: Timothee Mathieu To: 68613@debbugs.gnu.org Message-ID: <1934011500.13830125.1706285436481.JavaMail.zimbra@inria.fr> Subject: Why QA fails MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="=_d2e38d60-7865-4726-a079-49047f7868a5" X-Originating-IP: [193.49.212.73] X-Mailer: Zimbra 8.8.15_GA_4581 (ZimbraWebClient - FF121 (Linux)/8.8.15_GA_4581) Thread-Index: r5CLEXgEff+6WXe0IsGcZFF9uYomjA== Thread-Topic: Why QA fails X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 68613 X-Mailman-Approved-At: Fri, 26 Jan 2024 12:23:36 -0500 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 (---) --=_d2e38d60-7865-4726-a079-49047f7868a5 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit I am not sure why QA fails to read my patch. This is my second package and I already had troubles with the first one (cf [ https://issues.guix.gnu.org/67051 | https://issues.guix.gnu.org/67051 ] ), although this time I used git sendmail to be sure that everything was formatted correctly so I don't know what went wrong. --=_d2e38d60-7865-4726-a079-49047f7868a5 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit
I am not sure why QA fails to read my patch. This is my second package and I already had troubles with the first one (cf https://issues.guix.gnu.org/67051), although this time I used git sendmail to be sure that everything was formatted correctly so I don't know what went wrong.


--=_d2e38d60-7865-4726-a079-49047f7868a5-- From debbugs-submit-bounces@debbugs.gnu.org Fri Jan 26 17:16:08 2024 Received: (at 68613) by debbugs.gnu.org; 26 Jan 2024 22:16:08 +0000 Received: from localhost ([127.0.0.1]:52963 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rTUUa-0004KX-1L for submit@debbugs.gnu.org; Fri, 26 Jan 2024 17:16:08 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:53577) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rTUUX-0004Jz-Ld for 68613@debbugs.gnu.org; Fri, 26 Jan 2024 17:16:07 -0500 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 855E25C03E9; Fri, 26 Jan 2024 17:15:53 -0500 (EST) Received: from mailfrontend2 ([10.202.2.163]) by compute4.internal (MEProxy); Fri, 26 Jan 2024 17:15:53 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lassieur.org; h= cc:cc:content-transfer-encoding:content-type:content-type:date :date:from:from:in-reply-to:in-reply-to:message-id:mime-version :references:reply-to:subject:subject:to:to; s=fm2; t=1706307353; x=1706393753; bh=v4YO8Jw2Z+jPe2aT2epu1lYJrwZGh+fsK2TFBTDCk74=; b= kmkZxICAm7PpzzDkktqbF5en/6rcb2wtDc/W2dRcn+ul+qNK39dlXGf0rlDbnF0n L5VrC2zJ0ezTOlefLs/TnuM6qovy5V0mQt1cuG87YvQf7kKiTKVCmF2lf624DaY6 nordMY6wuKLnDdEXd2vjLyyMUCru6dmFrM2Fl+bwV5LkcLm7E0y50YCq7MVg7Wbu +QdEvlOs9UfE9A8lybRl/SPWsaTTJOZMGnTZ0e6Miy771XpdMZ5Ljfj+pGqZxyGP UzP4+uOkQJlHOEIg9ufVXzMyjZcq68QOQRD4ZNnKf9Ry/eUWxr9mNYUth2Su7FH9 d1YJcp4PLRiNEPFTsj2nCw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-transfer-encoding :content-type:content-type:date:date:feedback-id:feedback-id :from:from:in-reply-to:in-reply-to:message-id:mime-version :references:reply-to:subject:subject:to:to:x-me-proxy:x-me-proxy :x-me-sender:x-me-sender:x-sasl-enc; s=fm3; t=1706307353; x= 1706393753; bh=v4YO8Jw2Z+jPe2aT2epu1lYJrwZGh+fsK2TFBTDCk74=; b=g X6+7pHg8KzNmeC0ECPK6wH/dzk2afvCmmfKOoIF366o+YkXAXZckxLcK9hVSHRJM 8L5NqsA2aUfspByzexIJaisZ0fHKXkvh12lF4B5gjaoPtwc+fanplfbmZUNlJ1cH 5/cx7w/4VgiEFjCzl6FkM34hBWaAHuHUBNlDOEqVZv9vbrG+O/yArmaW/AtJsLBj AYQ7ABdEA/KhqOYapLwoYrQSc/RbA2eHvUcVvv9uToOAjaWSodTqA7Hd5NqH1BDL Z2RIAv/pXWNiGckEVdr5aMcClk91Fi0rX+nhrkFlUlcVtteLUgXpFLP7RJnXFYXx g2h/yIJkImYBL3VK6fTNQ== X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvkedrvdeljedgudehiecutefuodetggdotefrod ftvfcurfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfgh necuuegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmd enucfjughrpefhvfevufgjfhffkfgfgggtgfesthhqredttderjeenucfhrhhomhepvehl rohmvghnthcunfgrshhsihgvuhhruceotghlvghmvghntheslhgrshhsihgvuhhrrdhorh hgqeenucggtffrrghtthgvrhhnpeeiudeuheeviedtleelheeivedutdejgfevhfdvtedv udelhfdthedvvddtieehkeenucffohhmrghinhepghhnuhdrohhrghenucevlhhushhtvg hrufhiiigvpedtnecurfgrrhgrmhepmhgrihhlfhhrohhmpegtlhgvmhgvnhhtsehlrghs shhivghurhdrohhrgh X-ME-Proxy: Feedback-ID: i4c21472a:Fastmail Received: by mail.messagingengine.com (Postfix) with ESMTPA; Fri, 26 Jan 2024 17:15:51 -0500 (EST) From: =?utf-8?Q?Cl=C3=A9ment_Lassieur?= To: Timothee Mathieu Subject: Re: [bug#68613] Why QA fails In-Reply-To: <1934011500.13830125.1706285436481.JavaMail.zimbra@inria.fr> (Timothee Mathieu's message of "Fri, 26 Jan 2024 17:10:36 +0100 (CET)") References: <7951a014460cd0928ef46de7336f8811009dc4bf.1705750860.git.timothee.mathieu@inria.fr> <1934011500.13830125.1706285436481.JavaMail.zimbra@inria.fr> Date: Fri, 26 Jan 2024 23:15:46 +0100 Message-ID: <871qa3yc4t.fsf@lassieur.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 68613 Cc: 68613@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: -1.7 (-) On Fri, Jan 26 2024, Timothee Mathieu wrote: > I am not sure why QA fails to read my patch. This is my second package an= d I already had troubles with the first one (cf > https://issues.guix.gnu.org/67051), although this time I used git sendmai= l to be sure that everything was formatted correctly so I don't know > what went wrong. Don't worry, it's not working at all. I think they are changing the ownership of their infra or something like that. Cl=C3=A9ment From debbugs-submit-bounces@debbugs.gnu.org Sat Feb 10 16:52:04 2024 Received: (at 68613-done) by debbugs.gnu.org; 10 Feb 2024 21:52:04 +0000 Received: from localhost ([127.0.0.1]:44430 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rYvGV-0003MG-Tk for submit@debbugs.gnu.org; Sat, 10 Feb 2024 16:52:04 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:52152) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rYvGT-0003Lc-NB for 68613-done@debbugs.gnu.org; Sat, 10 Feb 2024 16:52:02 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rYvG5-00078v-76; Sat, 10 Feb 2024 16:51:37 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=lATOkmB16pSO6Obd8gQ2eJikAX0R/1IxXYJdZ/ob6Tc=; b=WEZVSx8Wq0WAWRYpVohT sCxys9X11ikYx0XenkG8814Ng5wP4e2ZOPrCP5kCaf9iyIPr+nXMqBWtuQC1ehN1Rs/wXJRdwKsAu 79DOCHq/DOYp34uIKpMP1QjJmVPxx9ZoK/wxkxfZNFXOy0DZu/7cIk3zIk1qYvxqa1RfmFz8XuMjw R9N0eFMx8K+R2hvd6roeW1kXEZRH8+c2uBGT0t/C1Y8vT1Eww94Em3G83UfYug6ygd+3MrYb6l09h QpRXvVqhreghpdTkDlG8QbtI6DJkEYwtk21xTCpOv9MuQt1vT1U0E696KGvrRiGRGiePa/Dr9fX5w 9j8ipttHDKdsSA==; From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: TimotheeMathieu Subject: Re: [bug#68613] [PATCH] gnu: Add python-scikit-opt. In-Reply-To: <7951a014460cd0928ef46de7336f8811009dc4bf.1705750860.git.timothee.mathieu@inria.fr> (TimotheeMathieu's message of "Sat, 20 Jan 2024 12:41:00 +0100") References: <7951a014460cd0928ef46de7336f8811009dc4bf.1705750860.git.timothee.mathieu@inria.fr> Date: Sat, 10 Feb 2024 22:51:33 +0100 Message-ID: <8734u0htsq.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 68613-done Cc: Sharlatan Hellseher , Munyoki Kilyungi , Lars-Dominik Braun , jgart , Marius Bakke , 68613-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 (---) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi, TimotheeMathieu skribis: > * gnu/packages/python-science.scm (python-scikit-opt): New variable. > > Change-Id: I47d6b35d9658a37a242b4db61d293fa7efd33802 In the meantime, qa.guix caught up and apparently all is fine. Applied with the changes below, as per: https://guix.gnu.org/manual/devel/en/html_node/Synopses-and-Descriptions.= html Thanks, Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index c02c2b3f9b..2cdada5ef3 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -352,12 +352,12 @@ (define-public python-scikit-opt (build-system pyproject-build-system) (propagated-inputs (list python-numpy python-scipy)) (home-page "https://github.com/guofei9987/scikit-opt") - (synopsis "Swarm Intelligence in Python") + (synopsis "Swarm intelligence algorithm in Python") (description - "Scikit-opt(or sko) is a Python module of Swarm Intelligence - Algorithm. Such as Genetic Algorithm, Particle Swarm Optimization, - Simulated Annealing, Ant Colony Algorithm, Immune Algorithm, - Artificial Fish Swarm Algorithm.") + "Scikit-opt (or sko) is a Python module implementing @dfn{swarm +intelligence} algorithms: genetic algorithm, particle swarm optimization, +simulated annealing, ant colony algorithm, immune algorithm, artificial fish +swarm algorithm.") (license license:expat))) (define-public python-scikit-optimize --=-=-=-- From unknown Sat Jun 21 10:17:05 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 10 Mar 2024 11:24:06 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator