GNU bug report logs -
#68613
[PATCH] gnu: Add python-scikit-opt.
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 68613 in the body.
You can then email your comments to 68613 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
lars <at> 6xq.net, marius <at> gnu.org, me <at> bonfacemunyoki.com, sharlatanus <at> gmail.com, jgart <at> dismail.de, guix-patches <at> gnu.org
:
bug#68613
; Package
guix-patches
.
(Sat, 20 Jan 2024 17:27:03 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
TimotheeMathieu <timothee.mathieu <at> inria.fr>
:
New bug report received and forwarded. Copy sent to
lars <at> 6xq.net, marius <at> gnu.org, me <at> bonfacemunyoki.com, sharlatanus <at> gmail.com, jgart <at> dismail.de, guix-patches <at> gnu.org
.
(Sat, 20 Jan 2024 17:27:03 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* 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
Information forwarded
to
guix-patches <at> gnu.org
:
bug#68613
; Package
guix-patches
.
(Fri, 26 Jan 2024 17:24:03 GMT)
Full text and
rfc822 format available.
Message #8 received at 68613 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
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.
[Message part 2 (text/html, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#68613
; Package
guix-patches
.
(Fri, 26 Jan 2024 22:17:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 68613 <at> debbugs.gnu.org (full text, mbox):
On Fri, Jan 26 2024, Timothee Mathieu wrote:
> 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.
Don't worry, it's not working at all. I think they are changing the
ownership of their infra or something like that.
Clément
Reply sent
to
Ludovic Courtès <ludo <at> gnu.org>
:
You have taken responsibility.
(Sat, 10 Feb 2024 21:53:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
TimotheeMathieu <timothee.mathieu <at> inria.fr>
:
bug acknowledged by developer.
(Sat, 10 Feb 2024 21:53:01 GMT)
Full text and
rfc822 format available.
Message #16 received at 68613-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Hi,
TimotheeMathieu <timothee.mathieu <at> inria.fr> 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’.
[Message part 2 (text/x-patch, 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
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sun, 10 Mar 2024 11:24:06 GMT)
Full text and
rfc822 format available.
This bug report was last modified 1 year and 103 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.